@charset "UTF-8";
img {
  max-width: 100%;
  vertical-align: bottom;
  width: auto;
}

/*************************************
breakpoint
*************************************/
/*************************************
font-size
*************************************/
.l-container {
  box-sizing: border-box;
  position: relative;
  z-index: 9;
}
@media screen and (min-width: 768px) {
  .l-container {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    padding: 18.6666666667vw 0;
  }
}

.l-footerTop {
  background: linear-gradient(180deg, #b7c4d6 0%, #f4e9dd 100%);
}

.l-main {
  position: relative;
  display: block;
  color: #333333;
  word-wrap: break-word;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  line-break: strict;
  overflow-wrap: break-word;
}
@media screen and (min-width: 768px) {
  .l-main {
    font-size: 1.0769230769rem;
  }
}
@media screen and (max-width: 767px) {
  .l-main {
    font-size: 1rem;
  }
}
.l-main * {
  box-sizing: border-box;
}
.l-main picture {
  display: inline-block;
}

.a-scroll-up {
  opacity: 0;
  transform: translate(0, 20px);
  transition: opacity 1s, transform 1s;
}
.a-scroll-up.is_active {
  opacity: 1;
  transform: translate(0, 0);
}
.a-scroll-left_in {
  transition: width 1s;
  width: 0;
}
.a-scroll-left_in.is_active {
  width: auto;
}
.a-scroll-right_in.is_active {
  transform: translate(0, 0);
}
.a-scroll-blur {
  opacity: 0;
}
.a-scroll-blur.is_active {
  animation-name: aniBlur;
  opacity: 1;
  transition: 0.8s;
}

@keyframes aniBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
}
.ani-scroll-left_in {
  -webkit-transform: translateX(-200px);
  transform: translateX(-200px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
  opacity: 0;
}
.ani-scroll-left_in.is_active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.ani-scroll-right_in {
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.ani-scroll-right_in.is_active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.fade.is-anime {
  opacity: 1;
}

.fade {
  transition: all 1.2s 0s ease;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .fade {
    transition: all 1.2s 0s ease;
  }
}

.js-blur {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 1s linear;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.js-blur.is_active {
  -webkit-animation-name: blur;
  animation-name: blur;
  opacity: 1;
  transition: 0.5s;
}

@-webkit-keyframes blur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes blur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
.bg--ex {
  position: relative;
  z-index: 1;
}
.bg--ex:after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: #d2e1e4;
  content: "";
  transform: translateX(-100%);
}
.bg--ex.is-active:after {
  transition: all 1200ms cubic-bezier(0.54, 0.87, 0, 0.995);
  transition-timing-function: cubic-bezier(0.54, 0.87, 0, 0.995);
  transform: translateX(0) !important;
}

.js-bgExtend {
  overflow: hidden;
}

.mask__wrap {
  overflow: hidden;
}
.mask__wrap .js-bgExtendImg {
  position: relative;
  left: -100%;
  overflow: hidden;
}
.mask__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333333;
}
.mask__bg.bg--wh {
  background: #fff;
}

.a-fade {
  opacity: 0;
  transition: opacity 1.5s;
}
.a-fade.-delai01 {
  transition-delay: 0.2s;
}
.a-fade.-delai02 {
  transition-delay: 0.4s;
}
.a-fade.-delai03 {
  transition-delay: 0.6s;
}
.a-fade.is-active {
  opacity: 1;
}

.c-bullet {
  padding-left: 1em;
  position: relative;
}
.c-bullet__item {
  left: 0;
  position: absolute;
  top: 0;
}

.c-button {
  line-height: 1.2;
  text-align: center;
}
.c-button__link {
  align-items: center;
  display: flex;
  justify-content: center;
  line-height: 1.5;
  text-decoration: none;
}
.c-button__link--base {
  color: #fff !important;
  transition: opacity 0.5s;
}
@media screen and (min-width: 768px) {
  .c-button__link--base {
    height: 74px;
    max-width: 320px;
    font-size: 1.1538461538rem;
  }
}
@media screen and (max-width: 767px) {
  .c-button__link--base {
    margin-left: auto;
    margin-right: auto;
    font-size: 3.6666666667vw;
    height: 12.8vw;
    width: 89.0666666667vw;
  }
}
.c-button__link--base.is_hover {
  color: #fff !important;
}
.c-button__link--bdr {
  border: solid 1px #000000;
  transition: background-color 0.3s, color 0.3s;
  color: #000000 !important;
}
@media screen and (min-width: 768px) {
  .c-button__link--bdr {
    height: 70px;
    width: 270px;
  }
}
@media screen and (max-width: 767px) {
  .c-button__link--bdr {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    height: 14vw;
    width: 80vw;
  }
}
.c-button__link--bdr.is_hover {
  background-color: rgb(255, 255, 255);
  color: #000000 !important;
}
.c-button__link--tel {
  margin-left: auto;
  margin-right: auto;
  border: solid 1px #000000;
  transition: background-color 0.3s, color 0.3s;
  line-height: 1.3;
  color: #000000 !important;
}
@media screen and (min-width: 768px) {
  .c-button__link--tel {
    height: 70px;
    width: 270px;
  }
}
@media screen and (max-width: 767px) {
  .c-button__link--tel {
    height: 14vw;
    width: 80vw;
    font-size: 0.8461538462rem;
    line-height: 1.4;
  }
}
.c-button__link--tel.is_hover {
  background-color: rgb(255, 255, 255);
  color: #000000 !important;
  opacity: 1;
}

.c-flex:not(.-md) {
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-flex-mt {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .c-flex.-md {
    display: flex;
  }
}
.c-flex.-jc-c {
  justify-content: center;
}
.c-flex.-jc-sb {
  justify-content: space-between;
}
.c-flex.-ai-c {
  align-items: center;
}
.c-flex__item {
  flex: 1 0 0%;
}

.c-image {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}
.c-image.-col {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .c-image.-full-sm {
    margin-left: -4vw;
    margin-right: -4vw;
  }
}
.c-image.-full-images {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
}

.c-mlink {
  text-align: right;
  text-decoration: underline;
  font-family: Amiri, "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}
@media screen and (min-width: 768px) {
  .c-mlink {
    font-size: 1.2307692308rem;
  }
}
@media screen and (max-width: 767px) {
  .c-mlink {
    line-height: 1;
    font-size: 4.2666666667vw;
  }
}
.c-mlink > a {
  color: #111 !important;
}

.c-notes > * {
  padding-left: 1em;
  position: relative;
}
.c-notes__bullet {
  left: 0;
  position: absolute;
  top: 0;
}

.c-pr {
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .c-pr {
    position: absolute;
    top: 2.34375%;
    right: 2.34375%;
  }
}
@media screen and (max-width: 767px) {
  .c-pr {
    position: absolute;
    top: 2.6666666667vw;
    right: 4vw;
    margin-left: auto;
    text-align: right;
  }
}
.c-pr span {
  background-color: rgba(255, 255, 255, 0.5);
  color: #000000;
  line-height: 1;
  display: inline-block;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
@media screen and (min-width: 768px) {
  .c-pr span {
    padding: 0.3em 0.75em;
    padding: 2px 0.65em;
    font-size: 1.0769230769rem;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .c-pr span {
    padding: 0.8vw 1.6vw;
    font-size: 0.7692307692rem;
  }
}

.c-separator {
  border-top-color: #f5f5f5;
  margin: 0 auto;
  max-width: 1020px;
}

.c-text {
  font-size: 1.1538461538rem;
  text-align: justify;
}
.c-text--min {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.c-text--comment {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .c-text--comment {
    font-size: 1.1538461538rem;
    width: 800px;
    margin: 0 auto;
  }
}
.c-text__link {
  color: #377594 !important;
  text-decoration: underline !important;
  transition: opacity 0.3s;
}
.c-text__link.is_hover {
  opacity: 0.65;
}
.c-text.-small {
  font-size: 1rem;
}
.c-text.-alphabet {
  font-size: 1.3846153846rem;
}
.c-text.-alphabet.-medium {
  font-size: 2.3076923077rem;
}
@media screen and (min-width: 768px) {
  .c-text.-alphabet.-small {
    font-size: 1.3846153846rem;
  }
}
@media screen and (max-width: 767px) {
  .c-text.-alphabet.-small {
    font-size: 1.1538461538rem;
  }
}

.c-title {
  color: #222;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
}
.c-title__primary {
  text-align: center;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  display: block;
}
@media screen and (min-width: 768px) {
  .c-title__primary {
    font-size: 2.4615384615rem;
    margin-bottom: 50px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .c-title__primary {
    font-size: 5.6vw;
    line-height: 1.4;
    letter-spacing: 0.1px;
  }
}
.c-title__secondary {
  color: #ab8634;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-title__secondary {
    padding-bottom: 12px;
    font-size: 1.8461538462rem;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .c-title__secondary {
    font-size: 4.8vw;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 1.1px;
  }
}
.c-title--main {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .c-title--main {
    max-width: 575px;
    width: 44.921875%;
  }
}
@media screen and (max-width: 767px) {
  .c-title--main {
    width: 88vw;
  }
}
.c-title--sml {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-title--sml {
    margin-bottom: 18px;
    font-size: 2.4615384615rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title--sml {
    font-size: 4.8vw;
    margin-bottom: 2vw;
  }
}
.c-title__alphabet {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-title__alphabet {
    padding-bottom: 12px;
    font-size: 4.7692307692rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  .c-title__alphabet {
    font-size: 11.2vw;
    line-height: 1;
  }
}
.c-title__tertiary {
  font-size: 1.3846153846rem;
}
.c-title--alphabet {
  font-size: 2.3076923077rem;
}
.c-title--alphabet.-small {
  font-size: 2.1538461538rem;
}
.c-title__text {
  display: inline-block;
}
.c-title__sub {
  font-size: 1.3846153846rem;
}
.c-title__num {
  font-style: oblique;
  font-size: 2.9230769231rem;
}

.p-credit {
  color: #000000;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-credit {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.8461538462rem;
  }
}
@media screen and (min-width: 1281px) {
  .p-credit {
    padding: 118px 0 98px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .p-credit {
    padding: 80px 0.78125%;
  }
}
@media screen and (max-width: 767px) {
  .p-credit {
    /*color: #000000;*/
    padding: 10.6666666667vw 0 10.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-credit {
    width: 92vw;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9230769231rem;
  }
}
@media screen and (min-width: 768px) {
  .p-credit__wrap + .p-credit__wrap {
    margin-top: 56px;
  }
}
@media screen and (max-width: 767px) {
  .p-credit__wrap + .p-credit__wrap {
    margin-top: 9.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-credit .brand-wrap {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-credit .brand-wrap {
    margin-top: 9.3333333333vw;
  }
}
.p-credit__title {
  color: #000000;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px) {
  .p-credit__title {
    font-size: 1.2307692308rem;
  }
}
@media screen and (max-width: 767px) {
  .p-credit__title {
    font-size: 1rem;
  }
}
.p-credit__title > span {
  border-bottom: solid 2px #000000;
  display: inline-block;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.p-credit__des {
  margin-top: 20px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-credit__des {
    margin-top: 28px;
  }
}
@media screen and (min-width: 768px) {
  .p-credit__btn {
    min-width: 200px;
    width: 28.125%;
  }
}
@media screen and (min-width: 768px) {
  .p-credit__btn:not(:first-child) {
    margin-left: 4.1666666667%;
  }
}
@media screen and (max-width: 767px) {
  .p-credit__btn:not(:first-child) {
    margin-top: 20px;
  }
}
.p-credit__sns {
  display: inline-block;
  max-width: 42px;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-credit__sns {
    width: 5.6vw;
  }
}
@media screen and (min-width: 768px) {
  .p-credit__sns:not(:first-child) {
    margin-left: 6.25%;
  }
}
@media screen and (max-width: 767px) {
  .p-credit__sns:not(:first-child) {
    margin-left: 8vw;
  }
}
.p-credit__center {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-credit__center {
    margin-top: 32px;
  }
}
@media screen and (max-width: 767px) {
  .p-credit__center {
    margin-top: 9.3333333333vw;
  }
}
.p-credit__telLink {
  color: #000000 !important;
  text-decoration: underline !important;
}
.p-credit__note {
  display: inline-block;
}
.p-credit__note li {
  text-align: center;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .p-credit__note li:last-child {
    padding-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-credit__note li:last-child {
    padding-top: 1.3333333333vw;
  }
}
.p-credit .text-link ul {
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-credit .text-link ul {
    text-align: center;
    justify-content: center;
  }
  .p-credit .text-link ul:not(:first-of-type) {
    padding-top: 1.6vw;
  }
}
@media screen and (min-width: 768px) {
  .p-credit .text-link ul {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .p-credit .text-link ul li:not(:first-of-type) {
    padding-left: 1em;
  }
}
@media screen and (max-width: 767px) {
  .p-credit .text-link ul li:not(:first-of-type) {
    padding-left: 0vw;
  }
}
.p-credit .text-link ul span {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-credit .text-link ul span {
    display: block;
  }
}
.p-credit .text-link ul a {
  color: #000000;
  display: inline-block;
}
.p-credit .text-link--tel {
  position: relative;
}
.p-credit .text-link--tel:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  height: 1px;
  background-color: #000000;
}

.p-lead {
  font-family: "Shippori Mincho", serif;
  color: #333333;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-lead {
    text-align: center;
    font-size: 1.2307692308rem;
    line-height: 1.94;
    margin-right: auto;
    margin-left: auto;
    min-width: 1100px;
    font-feature-settings: "palt";
    -webkit-font-feature-settings: "palt";
  }
}
@media screen and (max-width: 767px) {
  .p-lead {
    color: #313744;
    font-size: 4.2666666667vw;
    line-height: 2;
    text-align: justify;
    letter-spacing: -0.12rem;
  }
}
.p-lead__container {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 1300px;
}
@media screen and (min-width: 1281px) {
  .p-lead__container {
    padding: 74px 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lead__container {
    padding: 7.03125vw 3.125vw;
  }
}
@media screen and (max-width: 767px) {
  .p-lead__container {
    padding: 10.6666666667vw 5.3333333333vw 12vw;
  }
}
.p-lead__container p {
  position: relative;
  color: #313744;
}
.p-lead__line {
  margin-right: auto;
  margin-left: auto;
  max-width: 1130px;
  border-bottom: 1px solid #e7d0b5;
}
@media screen and (min-width: 768px) {
  .p-lead__line {
    margin-bottom: 55px;
    width: 88.28125vw;
  }
}
@media screen and (max-width: 767px) {
  .p-lead__line {
    width: 89.3333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}

.p-movie {
  position: relative;
  z-index: 99;
}
.p-movie__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-movie__container {
    margin-top: 0px;
    margin-bottom: 60px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-movie__container {
    margin-top: 0vw;
  }
}
.p-movie__title {
  position: relative;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
@media screen and (min-width: 768px) {
  .p-movie__title {
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-movie__title {
    margin-bottom: 3.3333333333vw;
  }
}
.p-movie__title--text {
  color: #bba447;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-movie__title--text {
    font-size: 4.3076923077rem;
    margin-bottom: 18px;
    line-height: 1.2;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) {
  .p-movie__title--text {
    font-weight: 500;
    line-height: 1.3;
    font-size: 8.5333333333vw;
    margin-bottom: 3.3333333333vw;
  }
}
.p-movie__lead {
  font-family: "Shippori Mincho", serif;
  line-height: 1.9;
  color: #111;
}
@media screen and (min-width: 768px) {
  .p-movie__lead {
    padding: 0px 15px 0px;
    letter-spacing: -0.2px;
    font-size: 1.2307692308rem;
    margin-top: 14px;
    margin-bottom: 54px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-movie__lead {
    width: 92vw;
    margin-left: auto;
    margin-right: auto;
    font-size: 4.2666666667vw;
    text-align: center;
    margin-bottom: 8vw;
    letter-spacing: -0.8px;
    line-height: 1.8;
  }
}
.p-movie__video {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-movie__video {
    position: relative;
    max-width: 1260px;
    width: 100%;
    height: 586px;
  }
}
@media screen and (max-width: 767px) {
  .p-movie__video {
    padding-top: 86.6666666667vw;
    overflow: hidden;
  }
}
.p-movie__video > iframe {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-movie__video > iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-movie__video > iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
}

.p-mv {
  background-color: #e5bd91;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-mv {
    background-color: #e5bd91;
  }
}
.p-mv__container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv {
    margin-right: auto;
    margin-left: auto;
    min-width: 1100px;
  }
}
.p-mv__wrap {
  font-family: "Shippori Mincho", serif;
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 25;
}
@media screen and (min-width: 768px) {
  .p-mv__wrap {
    position: absolute;
    left: 5%;
    width: 36.71875%;
    top: 142px;
    top: 21.7%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .p-mv__wrap {
    left: 5.46875%;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__wrap {
    background-color: #dd9e58;
    text-align: center;
    padding-top: 5.8666666667vw;
    padding-bottom: 7.3333333333vw;
  }
}
.p-mv__wrap.is-active {
  opacity: 1;
}
.p-mv__catch {
  text-align: center;
  line-height: 1.5;
  color: #fff;
  position: relative;
  z-index: 5;
  font-family: "Shippori Mincho", serif;
}
@media screen and (min-width: 768px) {
  .p-mv__catch {
    font-size: 1.9230769231rem;
    text-shadow: 1px 1px 10px rgba(146, 108, 57, 0.6), -1px 1px 10px rgba(146, 108, 57, 0.6), 1px -1px 10px rgba(146, 108, 57, 0.6), -1px -1px 10px rgba(146, 108, 57, 0.6);
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .p-mv__catch {
    font-size: 1.953125vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__catch {
    line-height: 1.6;
    font-size: 3.7333333333vw;
  }
}
.p-mv__deco {
  opacity: 0;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-mv__deco {
    margin-top: 18px;
    width: 94.6666666667%;
    position: relative;
  }
}
.p-mv__deco.is_active {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-mv__deco {
    margin-top: 3.7333333333vw;
    width: 55.7333333333vw;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-mv__title {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 5;
  font-family: "Shippori Mincho", serif;
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    font-size: 2.9230769231rem;
    letter-spacing: -0.5px;
    line-height: 1.4;
    margin-top: 22px;
    text-shadow: 1px 1px 20px rgba(146, 108, 57, 0.6), -1px 1px 20px rgba(146, 108, 57, 0.6), 2px -2px 20px rgba(146, 108, 57, 0.6), -2px -2px 20px rgba(146, 108, 57, 0.6);
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .p-mv__title {
    font-size: 2.96875vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    margin-top: 3.7333333333vw;
    font-size: 5.8666666667vw;
    line-height: 1.4;
  }
}
.p-mv__image {
  position: relative;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.p-mv__image--list:not(:first-child) {
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 1s ease;
  left: 50%;
  transform: translateX(-50%);
}
.p-mv__image--list.is-active {
  opacity: 1;
}
.p-mv__image--list:nth-child(1) {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-mv__image--list:nth-child(1) {
    max-width: 625px;
    width: 48.828125%;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .p-mv__image--list:nth-child(1) {
    padding-top: 1.2%;
    padding-bottom: 1.2%;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__image--list:nth-child(1) {
    width: 70.9333333333vw;
    padding-top: 3.4666666667vw;
    padding-bottom: 3.4666666667vw;
  }
}
.p-mv__image--list:nth-child(2) {
  z-index: 5;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-mv__image--list:nth-child(2) {
    max-width: 653px;
    width: 51.015625%;
    padding-top: 3px;
    padding-bottom: 3px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .p-mv__image--list:nth-child(2) {
    padding-top: 0.2%;
    padding-bottom: 0.2%;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__image--list:nth-child(2) {
    width: 74.1333333333vw;
    padding-top: 2.4vw;
    padding-bottom: 1.6vw;
  }
}
.p-mv__image--list:nth-child(3) {
  z-index: 10;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-mv__image--list:nth-child(3) {
    max-width: 514px;
    width: 40.15625%;
    padding-top: 42px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .p-mv__image--list:nth-child(3) {
    padding-top: 3.3%;
    padding-bottom: 3.4%;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__image--list:nth-child(3) {
    width: 58.4vw;
    padding-top: 7.2vw;
    padding-bottom: 5.8666666667vw;
  }
}
.p-mv__image--list:nth-child(4) {
  z-index: 15;
}
@media screen and (min-width: 768px) {
  .p-mv__image--list:nth-child(4) {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__image--list:nth-child(4) {
    width: 100vw;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-mv .p-mv__catch {
    transition-delay: 3600ms;
  }
}
@media screen and (max-width: 767px) {
  .p-mv .p-mv__catch {
    transition-delay: 200ms;
  }
}

@media screen and (min-width: 768px) {
  .p-mv .p-mv__deco {
    transition-delay: 3800ms;
  }
}
@media screen and (max-width: 767px) {
  .p-mv .p-mv__deco {
    transition-delay: 600ms;
  }
}

@media screen and (min-width: 768px) {
  .p-mv .p-mv__title {
    transition-delay: 4000ms;
  }
}
@media screen and (max-width: 767px) {
  .p-mv .p-mv__title {
    transition-delay: 800ms;
  }
}

/*-----------------------------------------------------------------------------------------------------------------------------------
.contents01
-----------------------------------------------------------------------------------------------------------------------------------*/
.p-model {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1300px;
}
.p-model.model01::before {
  background: linear-gradient(0deg, #ebcaa4 0%, #f7efe6 100%);
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-model.model01::before {
    top: -50px;
    left: -41.5384615385%;
    width: 0%;
    height: 767px;
    transition: width 0.7s;
  }
}
@media screen and (max-width: 767px) {
  .p-model.model01::before {
    top: 13.3333333333vw;
    left: 0vw;
    width: 0%;
    height: 102.4vw;
    transition: width 0.7s;
  }
}
@media screen and (min-width: 768px) {
  .p-model.model01.is_active::before {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .p-model.model01.is_active::before {
    width: 44.2666666667vw;
  }
}
.p-model.model02::before {
  background: linear-gradient(180deg, #ebcaa4 0%, #f7efe6 100%);
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-model.model02::before {
    top: 392px;
    right: -41.5384615385%;
    width: 0%;
    height: 767px;
    transition: width 0.7s;
  }
}
@media screen and (max-width: 767px) {
  .p-model.model02::before {
    top: 82.9333333333vw;
    right: 0vw;
    width: 0%;
    height: 103.7333333333vw;
    transition: width 0.7s;
  }
}
@media screen and (min-width: 768px) {
  .p-model.model02.is_active::before {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .p-model.model02.is_active::before {
    width: 78vw;
  }
}
@media screen and (min-width: 768px) {
  .p-model.model03 .l-inner {
    padding-bottom: 75px;
  }
}
@media screen and (max-width: 767px) {
  .p-model.model03 .l-inner {
    padding-bottom: 0px;
  }
}
.p-model.model03::before {
  background: linear-gradient(0deg, #ebcaa4 0%, #f7efe6 100%);
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-model.model03::before {
    top: 0px;
    left: -45.3846153846%;
    width: 0%;
    height: 767px;
    transition: width 0.7s;
  }
}
@media screen and (max-width: 767px) {
  .p-model.model03::before {
    top: 28vw;
    left: 0vw;
    width: 0%;
    height: 102.4vw;
    transition: width 0.7s;
  }
}
@media screen and (min-width: 768px) {
  .p-model.model03.is_active::before {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .p-model.model03.is_active::before {
    width: 87.2vw;
  }
}
@media screen and (min-width: 768px) {
  .p-model.model03 .c-title__alphabet {
    width: 110%;
    margin-left: -7%;
    margin-right: -1%;
  }
}
.p-model__cont {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-model__cont {
    padding-top: 86px;
    min-width: 1080px;
    padding-left: 0.78125%;
    padding-right: 0.78125%;
  }
}
@media screen and (max-width: 767px) {
  .p-model__cont {
    padding-top: 18.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-model__cont + .p-model__cont {
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-model__cont + .p-model__cont {
    padding-top: 16vw;
  }
}
.p-model__sec {
  position: relative;
  z-index: 999;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-model__sec {
    width: min(100%, 1280px);
    justify-content: space-between;
    margin-bottom: 65px;
  }
}
@media screen and (max-width: 767px) {
  .p-model__sec {
    padding-top: 7.4666666667vw;
    margin-bottom: 8.5333333333vw;
  }
}
.p-model__img {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-model__img {
    max-width: 650px;
    width: 51.5873015873%;
  }
}
@media screen and (max-width: 767px) {
  .p-model__img {
    width: 100%;
    height: 100%;
    padding-bottom: 6.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-model__imgLeft {
    width: 90.1333333333vw;
    margin-left: auto;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-model__imgRight {
    width: 90.1333333333vw;
    margin-left: 0;
    margin-right: auto;
  }
}
.p-model__text {
  position: relative;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .p-model__text {
    max-width: 630px;
    width: 49.21875%;
    padding-top: 100px;
    padding-left: 7.8125%;
    padding-right: 7.8125%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .p-model__text {
    padding-top: 5%;
    padding-left: 4.6875%;
    padding-right: 4.6875%;
  }
}
@media screen and (max-width: 767px) {
  .p-model__text {
    margin-left: auto;
    margin-right: auto;
    width: 89.0666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-model__text.model-sec__text02 {
    padding-top: 110px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .p-model__text.model-sec__text02 {
    padding-top: 6%;
    padding-left: 4.6875%;
    padding-right: 4.6875%;
  }
}
@media screen and (max-width: 767px) {
  .p-model__text.model-sec__text02 {
    margin-left: auto;
    margin-right: auto;
    width: 89.0666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-model__text.model-sec__text03 {
    padding-top: 170px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .p-model__text.model-sec__text03 {
    padding-top: 10%;
    padding-left: 4.6875%;
    padding-right: 4.6875%;
  }
}
@media screen and (max-width: 767px) {
  .p-model__text.model-sec__text03 {
    margin-left: auto;
    margin-right: auto;
    width: 89.0666666667vw;
  }
}
.p-model__ccopy {
  color: #000;
  -webkit-font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-model__ccopy {
    font-size: 1.8461538462rem;
    line-height: 1.3;
    text-align: left;
    padding-top: 18px;
    padding-bottom: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-model__ccopy {
    text-align: left;
    line-height: 1.3;
    letter-spacing: 0.5px;
    font-size: 5.6vw;
    padding-bottom: 5.6vw;
  }
}
.p-model__desc {
  text-align: left;
  color: #111111;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-model__desc {
    font-size: 1.1538461538rem;
    line-height: 1.6;
    letter-spacing: 1.1px;
  }
}
@media screen and (max-width: 767px) {
  .p-model__desc {
    letter-spacing: 0.2px;
    line-height: 1.625;
    font-size: 3.7333333333vw;
  }
}
.p-model__credit {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-model__credit {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-model__credit {
    margin-top: 1.3333333333vw;
  }
}
.p-model__credit img {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-model__accordion {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-model__accordion {
    margin-top: 8vw;
  }
}
@media screen and (min-width: 768px) {
  .p-model__btn {
    min-width: 320px;
    font-size: 1.1538461538rem;
  }
}
@media screen and (min-width: 768px) {
  .p-model__btn:not(:first-child) {
    margin-left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-model__btn:not(:first-child) {
    margin-top: 4vw;
  }
}

.js-accordionBtn {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  color: #888888;
}
@media screen and (min-width: 768px) {
  .js-accordionBtn {
    font-size: 1.0769230769rem;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .js-accordionBtn {
    font-size: 3.3333333333vw;
  }
}
.js-accordionBtn__box {
  padding-right: 0px;
}
.js-accordionBtn::after {
  display: inline-block;
  box-sizing: border-box;
  margin-top: 0;
  margin-left: 6px;
  width: 0.5em;
  height: 0.5em;
  border: 0.1em solid #888888;
  border-bottom: 0;
  border-left: 0;
  content: "";
  vertical-align: middle;
  line-height: 1;
  transition: transform 0.3s ease-in-out, margin-top 0.3s ease-in-out;
  transform: translateY(-25%) rotate(135deg);
}
.js-accordionBtn.txtOn::after {
  margin-top: 2px;
  transform: rotate(-45deg);
}
.js-accordionTxt {
  display: none;
  color: #888888;
}
@media screen and (min-width: 768px) {
  .js-accordionTxt {
    margin-top: 1.171875%;
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  .js-accordionTxt {
    margin-top: 1.3333333333vw;
  }
}
.js-accordionTxt p {
  line-height: 1.625;
  color: #888888 !important;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .js-accordionTxt p {
    font-size: 1.0769230769rem;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .js-accordionTxt p {
    font-size: 3.3333333333vw;
  }
}

.p-porfile {
  position: relative;
  width: min(100%, 1280px);
  margin-left: auto;
  margin-right: auto;
}
.p-porfile__cont {
  position: relative;
  z-index: 999;
  margin-left: auto;
  margin-right: auto;
  background-color: #f9f7ef;
}
@media screen and (min-width: 768px) {
  .p-porfile__cont {
    max-width: 1080px;
    width: 100%;
    justify-content: space-between;
    border-radius: 0 80px 0 80px;
    padding: 105px 11.25%;
    padding-bottom: 106px;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-porfile__cont {
    width: 88vw;
    border-radius: 0 16vw 0 16vw;
    padding-top: 12vw;
    padding-bottom: 12vw;
    margin-bottom: 18.6666666667vw;
    padding-left: 6.6666666667vw;
    padding-right: 6.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-porfile__img {
    max-width: 282px;
    width: 35.6962025316%;
  }
}
@media screen and (max-width: 767px) {
  .p-porfile__img {
    width: 48vw;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-porfile__text {
    max-width: 510px;
    width: 64.5569620253%;
    padding-left: 5.2083333333%;
  }
}
.p-porfile__name {
  font-family: "Shippori Mincho", serif;
  line-height: 1.5;
  color: #000;
  border-bottom: 1px solid #ded6b8;
}
@media screen and (min-width: 768px) {
  .p-porfile__name {
    font-size: 2rem;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-porfile__name {
    width: 64vw;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 4.8vw;
    padding-bottom: 1.3333333333vw;
    margin-bottom: 2.4vw;
  }
}
.p-porfile__name span {
  font-size: 80%;
  vertical-align: middle;
}
.p-porfile__profile {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  line-height: 1.5;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-porfile__profile {
    font-size: 1.6923076923rem;
  }
}
@media screen and (max-width: 767px) {
  .p-porfile__profile {
    text-align: center;
    font-size: 5.3333333333vw;
    margin-bottom: 2vw;
  }
}
.p-porfile__desc {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #000;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-porfile__desc {
    font-size: 1.1538461538rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .p-porfile__desc {
    font-size: 3.7333333333vw;
    line-height: 1.5;
    letter-spacing: -0.6px;
  }
}

.p-popup {
  background-color: #fff;
  box-sizing: border-box;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 750px;
}
@media screen and (min-width: 768px) {
  .p-popup {
    padding: 102px 50px 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-popup {
    padding: 68px 6.6666666667vw 6.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-popup__image + .p-popup__text {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-popup__image + .p-popup__text {
    margin-top: 25px;
  }
}
.p-popup__text {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px) {
  .p-popup__text {
    font-size: 1.2307692308rem;
    line-height: 1.7;
  }
}
@media screen and (max-width: 767px) {
  .p-popup__text {
    font-size: 3.4666666667vw;
    line-height: 1.7;
  }
}
.p-popup__text + .p-popup__text {
  margin-top: 30px;
}
.p-popup__btn {
  color: #a68b57 !important;
  position: relative;
  color: #a68b57;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: flex;
  text-align: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-popup__btn {
    margin-top: 28px;
    line-height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-popup__btn {
    margin-top: 28px;
  }
}
.p-popup__btn a {
  color: #a68b57;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  transition: opacity 0.3s;
  border: 1px solid #a68b57;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: 0.2s ease-in-out;
  z-index: 0;
  color: #a68b57;
  border-radius: 20px;
  line-height: 40px;
  height: 40px;
  width: 100px;
}
@media screen and (min-width: 768px) {
  .p-popup__btn a {
    font-size: 1.2307692308rem;
  }
}
@media screen and (max-width: 767px) {
  .p-popup__btn a {
    font-size: 3.4666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-popup__btn a:not(:first-child) {
    margin-left: 8%;
  }
}
@media screen and (max-width: 767px) {
  .p-popup__btn a:not(:first-child) {
    margin-left: 13.3333333333vw;
  }
}
.p-popup__btn a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #a68b57;
  transition: 0.2s;
  left: 0;
  border-radius: 18px;
}
.p-popup__btn a:hover {
  color: #FFF;
}
.p-popup__btn a:hover:before {
  width: 100%;
  z-index: -1;
}
.p-popup__btn a::after {
  content: "";
  display: block;
  background: url("../images/click_btn_arrow.png") no-repeat center;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translate(0, -50%);
  width: 38px;
  height: 8px;
  transition: all 0.2s ease-in;
}
.p-popup__btn a:hover::after {
  right: -44px;
}
.p-popup .mfp-close {
  background: url(../images/popup_close.png) center no-repeat;
  background-size: 36px 36px;
  font-size: 0;
}
@media screen and (min-width: 768px) {
  .p-popup .mfp-close {
    right: 6.6666666667%;
    top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-popup .mfp-close {
    right: 6.6666666667vw;
    top: 16px;
  }
}

.p-slider {
  position: relative;
}
.p-slider .l-inner {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-slider .l-inner {
    max-width: 1105px;
    width: 1105px;
    padding-top: 55px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-slider .l-inner {
    width: 89.0666666667vw;
    padding-top: 12vw;
    padding-bottom: 6.6666666667vw;
  }
}
.p-slider__title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-slider__title {
    padding-bottom: 20px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-slider__title {
    padding-bottom: 2.6666666667vw;
  }
}
.p-slider__title--text {
  text-align: center;
  display: inline-block;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .p-slider__title--text {
    font-size: 2.4615384615rem;
    letter-spacing: 1.1px;
    line-height: 1.4;
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-slider__title--text {
    font-size: 7.7333333333vw;
    line-height: 1.4;
  }
}
.p-slider .p-sliderBox {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .p-slider .p-sliderBox {
    width: 86.328125%;
  }
}
@media screen and (max-width: 767px) {
  .p-slider .p-sliderBox {
    margin-left: auto;
    margin-right: auto;
    width: 77.6vw;
  }
}
.p-slider__item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-slider__item {
    max-width: 309px;
    width: 100%;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-slider__item {
    margin-left: auto;
    margin-right: auto;
    width: 77.6vw;
    padding-left: 3.3333333333vw;
    padding-right: 3.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-slider__img {
    max-width: 309px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-slider__img {
    margin-left: auto;
    margin-right: auto;
    width: 70.9333333333vw;
  }
}
.p-slider__btn {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.p-slider__btn--popup {
  position: relative;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-slider__btn--popup::after {
    display: block;
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    margin: auto;
    background: url(../images/icon_expand.png) no-repeat center center/48px;
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transition: 0.6s ease-in-out;
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .p-slider__btn--popup::after {
    display: block;
    position: absolute;
    bottom: 4.8vw;
    right: 6.1333333333vw;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    margin: auto;
    background: url(../images/icon_expand.png) no-repeat center center/10.6666666667vw;
    content: "";
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s;
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) {
  .p-slider__btn--popup:hover::after {
    transition: 0.4s ease-in-out;
    transform: scale(1);
    opacity: 1;
  }
}

.slider-blue .slick-prev {
  display: block;
  position: absolute;
  width: 38px;
  height: 74px;
  border: none;
  text-indent: -9999px;
  cursor: pointer;
  background: url("../images/slider_arrow_blue.png") no-repeat center;
  background-size: contain;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .slider-blue .slick-prev {
    top: 36.4%;
    left: -5.7692307692%;
  }
}
@media screen and (max-width: 767px) {
  .slider-blue .slick-prev {
    top: 33.6vw;
    left: -7.4666666667vw;
    width: 5.0666666667vw;
    height: 9.8666666667vw;
  }
}
.slider-blue .slick-next {
  display: block;
  position: absolute;
  width: 38px;
  height: 74px;
  border: none;
  text-indent: -9999px;
  cursor: pointer;
  background: url("../images/slider_arrow_blue.png") no-repeat center;
  background-size: contain;
  z-index: 10;
  transform: rotate(-180deg);
}
@media screen and (min-width: 768px) {
  .slider-blue .slick-next {
    top: 36.4%;
    right: -4.8076923077%;
  }
}
@media screen and (max-width: 767px) {
  .slider-blue .slick-next {
    top: 33.6vw;
    right: -7.4666666667vw;
    width: 5.0666666667vw;
    height: 9.8666666667vw;
  }
}
.slider-blue .slick-next:hover {
  opacity: 0.9;
}

.slider-orng .slick-prev {
  display: block;
  position: absolute;
  width: 38px;
  height: 74px;
  border: none;
  text-indent: -9999px;
  cursor: pointer;
  background: url("../images/slider_arrow_orng.png") no-repeat center;
  background-size: contain;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .slider-orng .slick-prev {
    top: 50%;
    transform: translateY(-50%);
    left: -5.7692307692%;
  }
}
@media screen and (max-width: 767px) {
  .slider-orng .slick-prev {
    top: 33.6vw;
    left: -7.4666666667vw;
    width: 5.0666666667vw;
    height: 9.8666666667vw;
  }
}
.slider-orng .slick-prev:hover {
  opacity: 0.9;
}
.slider-orng .slick-next {
  display: block;
  position: absolute;
  width: 38px;
  height: 74px;
  border: none;
  text-indent: -9999px;
  cursor: pointer;
  background: url("../images/slider_arrow_orng.png") no-repeat center;
  background-size: contain;
  z-index: 10;
  transform: rotate(-180deg);
}
@media screen and (min-width: 768px) {
  .slider-orng .slick-next {
    top: 39.4%;
    right: -4.8076923077%;
  }
}
@media screen and (max-width: 767px) {
  .slider-orng .slick-next {
    top: 33.6vw;
    right: -7.4666666667vw;
    width: 5.0666666667vw;
    height: 9.8666666667vw;
  }
}
.slider-orng .slick-next:hover {
  opacity: 0.9;
}

.p-shop {
  position: relative;
}
.p-shop__container {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-shop__container {
    padding-top: 80px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-shop__container {
    margin-left: auto;
    margin-right: auto;
    width: 89.3333333333vw;
    padding-bottom: 16vw;
    padding-top: 16vw;
  }
}
@media screen and (min-width: 768px) {
  .p-shop__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row-reverse;
  }
}
.p-shop__img {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-shop__img {
    max-width: 670px;
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-shop__img {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}
.p-shop__img--caption {
  color: #333;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px) {
  .p-shop__img--caption {
    font-size: 0.9230769231rem;
    line-height: 1.82;
    text-align: right;
    padding-top: 4px;
    font-feature-settings: "palt";
    -webkit-font-feature-settings: "palt";
  }
}
@media screen and (max-width: 767px) {
  .p-shop__img--caption {
    text-align: right;
    line-height: 1.7693;
    font-size: 2.9333333333vw;
    padding-top: 1.0666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-shop__text {
    position: relative;
    max-width: 640px;
    padding-right: 0;
    width: 50%;
    z-index: 99;
    padding-right: 6.25%;
    font-feature-settings: "palt";
    -webkit-font-feature-settings: "palt";
  }
}
@media screen and (min-width: 1281px) {
  .p-shop__text {
    max-width: 640px;
    padding-right: 0px;
    width: 50%;
    padding-right: 6.25%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .p-shop__text {
    padding-right: 0%;
    width: 50%;
    padding-right: 6.25%;
  }
}
@media screen and (max-width: 767px) {
  .p-shop__text {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-top: 7.3333333333vw;
  }
}
.p-shop__desc {
  color: #333;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px) {
  .p-shop__desc {
    font-size: 1.1538461538rem;
    line-height: 1.82;
    text-align: justify;
    padding-bottom: 26px;
    font-feature-settings: "palt";
    -webkit-font-feature-settings: "palt";
  }
}
@media screen and (max-width: 767px) {
  .p-shop__desc {
    text-align: justify;
    line-height: 1.7693;
    font-size: 3.4666666667vw;
    padding-bottom: 5.3333333333vw;
  }
}
.p-shop__info {
  border-left: solid 2px #c10a25;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-shop__info {
    padding-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-shop__info {
    padding-left: 2vw;
  }
}
.p-shop__info--desc {
  text-align: left;
  color: #333;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px) {
  .p-shop__info--desc {
    font-size: 1.1538461538rem;
    line-height: 1.82;
    text-align: justify;
  }
}
@media screen and (max-width: 767px) {
  .p-shop__info--desc {
    text-align: justify;
    line-height: 1.7693;
    font-size: 3.2vw;
  }
}

.u-order-1 {
  order: 1;
}

.u-order-2 {
  order: 2;
}

@media screen and (max-width: 767px) {
  .u-order-2--sp {
    order: 2;
  }
}

@media screen and (max-width: 767px) {
  .u-order-1--sp {
    order: 1;
  }
}

.u-mt-15 {
  margin-top: 15px;
}

.u-mt-30 {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .u-mt-md-10 {
    margin-top: 10px;
  }
}

@media screen and (min-width: 768px) {
  .u-mt-md-25 {
    margin-top: 25px;
  }
}

@media screen and (min-width: 768px) {
  .u-mt-md-30 {
    margin-top: 30px;
  }
}

@media screen and (min-width: 768px) {
  .u-mt-md-35 {
    margin-top: 35px;
  }
}

@media screen and (min-width: 768px) {
  .u-mt-md-40 {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) {
  .u-mt-md-50 {
    margin-top: 50px;
  }
}

@media screen and (min-width: 768px) {
  .u-mt-md-60 {
    margin-top: 60px;
  }
}

@media screen and (min-width: 768px) {
  .u-mt-md-70 {
    margin-top: 70px;
  }
}

@media screen and (min-width: 768px) {
  .u-mt-md-80 {
    margin-top: 80px;
  }
}

@media screen and (min-width: 768px) {
  .u-mt-md-90 {
    margin-top: 90px;
  }
}

@media screen and (min-width: 768px) {
  .u-mt-md-100 {
    margin-top: 100px;
  }
}

@media screen and (min-width: 768px) {
  .u-mt-md-120 {
    margin-top: 120px;
  }
}

@media screen and (min-width: 768px) {
  .u-mt-md-170 {
    margin-top: 170px;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-sm-10 {
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-sm-15 {
    margin-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-sm-20 {
    margin-top: 25px;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-sm-25 {
    margin-top: 25px;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-sm-30 {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-sm-50 {
    margin-top: 50px;
  }
}

.u-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .u-hidden-md {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-hidden-sm {
    display: none;
  }
}

.u-d-inline-block {
  display: inline-block;
}

.u-display-block {
  display: block;
}

.u-display-inline-block {
  display: inline-block;
}

@media screen and (min-width: 769px) {
  .l-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.align-center {
  align-items: center;
}

.u-align-center {
  align-items: center;
}

.u-flex-reverse {
  flex-direction: row-reverse;
}

@media screen and (min-width: 768px) {
  .flex,
  .flex-pc {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.u-color-777 {
  color: #777 !important;
}

.u-color-gd {
  color: #cfb54b !important;
}

.u-color-wt {
  color: #fff !important;
}

.u-color-rd {
  color: #c10a25 !important;
}

.u-color-blue {
  color: #506a90 !important;
}

.u-color-orng {
  color: #e59439 !important;
}

.u-border-bottom-bk {
  border-bottom: solid 1px #000;
}

.u-border-bottom-dgy {
  border-bottom: solid 1px #ccc;
}

.u-border-bottom-gd {
  border-bottom: solid 1px #b4956a;
}

.u-border-bottom-gy {
  border-bottom: solid 1px #ddd;
}

.u-border-bottom-lgy {
  border-bottom: solid 1px #f5f5f5;
}

.u-border-top-bk {
  border-top: solid 1px #000;
}

.u-border-top-dgy {
  border-top: solid 1px #ccc;
}

.u-border-top-gd {
  border-top: solid 1px #b4956a;
}

.u-border-top-gy {
  border-top: solid 1px #ddd;
}

.u-border-top-lgy {
  border-top: solid 1px #f5f5f5;
}

.u-bg-color-bk {
  background-color: black;
}

.u-bg-color-dgy {
  background-color: #ccc;
}

.u-bg-color-gd {
  background-color: #b4956a;
}

.u-bg-color-gy {
  background-color: #ddd;
}

.u-bg-color-lgy {
  background-color: #f5f5f5;
}

.u-bg-color-wh {
  background-color: white;
}

.u-bgclr-primary {
  background-color: #377594;
}

.u-bgclr-secondary {
  background-color: #111111;
}

.u-bgclr-tertiary {
  background-color: #bfd6ef;
}

.u-bgclr-quaternary {
  background-color: #dee8ee;
}

.u-bg-grd {
  position: relative;
}
.u-bg-grd::before {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .u-bg-grd::before {
    height: 1100px;
    background: linear-gradient(180deg, #f5f9fe, #fff);
  }
}
@media screen and (max-width: 767px) {
  .u-bg-grd::before {
    height: 93.3333333333vw;
    background: linear-gradient(180deg, #f5f9fe, #fff);
  }
}

.u-bgclr-blue {
  background-color: #506a90;
}
.u-bgclr-blue.is_hover {
  background-color: rgba(80, 106, 144, 0.9);
}

.u-bgclr-orng {
  background-color: #e59439;
}
.u-bgclr-orng.is_hover {
  background-color: rgba(229, 148, 57, 0.9);
}

.u-align-center {
  text-align: center !important;
}

.u-align-left {
  text-align: left !important;
}

@media screen and (min-width: 768px) {
  .u-align-md-center {
    text-align: center !important;
  }
}

@media screen and (min-width: 768px) {
  .u-align-md-left {
    text-align: left !important;
  }
}

@media screen and (max-width: 767px) {
  .u-align-sm-center {
    text-align: center !important;
  }
}

.u-color_third {
  color: #35597d;
}/*# sourceMappingURL=style-2.1.2.css.map */