@charset "UTF-8";
/*************************************
font-size
*************************************/
img {
  max-width: 100%;
}

main {
  display: block;
}

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

@media screen and (max-width: 767px) {
  .display-pc {
    display: none !important;
  }
}

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

.mb-0 {
  margin-bottom: 0 !important;
}

.l-main {
  font-size: 1.08rem;
  color: #111;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
  font-feature-settings: "palt";
  overflow: hidden;
  font-family: Times New Roman, Noto Sans CJK JP, Hiragino Kaku Gothic ProN, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, ＭＳ ゴシック, sans-serif;
}
.l-main p {
  line-break: strict;
}
.l-main sup {
  vertical-align: super;
  font-size: 80%;
}

.l-footer {
  position: relative;
  background-color: #fff;
  z-index: 9;
}

.l-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
}
/* スクロールアニメーション */
.a-fade {
  opacity: 0;
}
.a-fade.is_active {
  opacity: 1;
}
.a-fade.is_active.js-delay--500 {
  transition-delay: 0.5s;
}
.a-fade.is_active.js-delay--1000 {
  transition-delay: 1s;
}

.a-fadeLeft {
  opacity: 0;
  transform: translateX(-50%) !important;
}
@media screen and (min-width: 768px) {
  .a-fadeLeft.is_active {
    opacity: 1;
    -webkit-transition: all 1500ms cubic-bezier(0.54, 0.87, 0, 0.995);
    transition: all 1500ms cubic-bezier(0.54, 0.87, 0, 0.995);
    -webkit-transition-timing-function: cubic-bezier(0.54, 0.87, 0, 0.995);
    transition-timing-function: cubic-bezier(0.54, 0.87, 0, 0.995);
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
  }
}
@media screen and (max-width: 767px) {
  .a-fadeLeft.is_active {
    opacity: 1;
    -webkit-transition: all 2000ms cubic-bezier(0.54, 0.87, 0, 0.995);
    transition: all 2000ms cubic-bezier(0.54, 0.87, 0, 0.995);
    -webkit-transition-timing-function: cubic-bezier(0.54, 0.87, 0, 0.995);
    transition-timing-function: cubic-bezier(0.54, 0.87, 0, 0.995);
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
  }
}

.a-fadeRight {
  opacity: 0;
  transform: translateX(50%) !important;
}
@media screen and (min-width: 768px) {
  .a-fadeRight.is_active {
    opacity: 1;
    -webkit-transition: all 1500ms cubic-bezier(0.54, 0.87, 0, 0.995);
    transition: all 1500ms cubic-bezier(0.54, 0.87, 0, 0.995);
    -webkit-transition-timing-function: cubic-bezier(0.54, 0.87, 0, 0.995);
    transition-timing-function: cubic-bezier(0.54, 0.87, 0, 0.995);
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
  }
}
@media screen and (max-width: 767px) {
  .a-fadeRight.is_active {
    opacity: 1;
    -webkit-transition: all 2000ms cubic-bezier(0.54, 0.87, 0, 0.995);
    transition: all 2000ms cubic-bezier(0.54, 0.87, 0, 0.995);
    -webkit-transition-timing-function: cubic-bezier(0.54, 0.87, 0, 0.995);
    transition-timing-function: cubic-bezier(0.54, 0.87, 0, 0.995);
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
  }
}

.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);
  }
}
/* その場で */
.active .fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.a-slideIn--r {
  animation: slideInRight 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideInRight {
  0% {
    transform: translateX(360px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.a-slideIn--l {
  animation: slideInLeft 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-360px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.a-slideIn--t {
  animation: slideInTop 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@media screen and (max-width: 767px) {
  .a-slideIn--t {
    animation: slideInTop 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
  }
}

@keyframes slideInTop {
  0% {
    transform: translateY(360px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.a-slideIn--b {
  animation: slideInBottom 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@media screen and (max-width: 767px) {
  .a-slideIn--b {
    animation: slideInBottom 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
  }
}

@keyframes slideInBottom {
  0% {
    transform: translateY(-360px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.a-zoomUp--set01 {
  animation: zoomUpDelay 2s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
  animation-delay: 1s;
}

@keyframes zoomUpDelay {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
  }
  40%, 100% {
    opacity: 0;
  }
}
.a-fadeOut--set01 {
  animation: zoomUpDelay 3s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
  animation-delay: 2s;
}

@keyframes fadeOutDelay {
  0% {
    opacity: 1;
    /* transform: translateX(-50%); */
  }
  100% {
    opacity: 0;
    /* transform: translateX(-50%); */
  }
}
/* 浮遊 */
.a-floating-upDown {
  animation: floatingUD 10s infinite ease-in-out 0.8s alternate;
  transition: 1.5s ease-in-out;
}

@keyframes floatingUD {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.a-floating-rotate {
  animation: floatingRotate 10s infinite ease-in-out 0.8s alternate;
  transition: 1.5s ease-in-out;
}

@keyframes floatingRotate {
  0% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(5deg);
  }
}
.a-scroll-up {
  opacity: 0;
  transform: translate(0, 30px);
  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;
}

.js-delay--500 {
  transition-delay: 0.5s;
}

.js-delay--1000 {
  transition-delay: 1s;
}

.viwe-delay02 {
  transition-delay: 0.2s;
}

.viwe-delay04 {
  transition-delay: 0.4s;
}

.viwe-delay06 {
  transition-delay: 0.6s;
}

.viwe-delay08 {
  transition-delay: 0.6s;
}

@media screen and (min-width: 768px) {
  .viwe-delay1 {
    transition-delay: 1s;
  }
}

.viwe-delay12 {
  transition-delay: 1.2s;
}

@media screen and (max-width: 767px) {
  .p-item__ccopy .viwe-delay1 {
    transition-delay: 0s;
  }
}

.c-title {
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
}
.c-title--main {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-title--main {
    font-size: 30px;
    font-size: 2.8957528958vw;
  }
}
@media screen and (max-width: 767px) {
  .c-title--main {
    font-size: 1.6153846154rem;
  }
}
.c-title--primary {
  text-align: center;
  display: block;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-title--primary {
    font-size: 2.9230769231rem;
    margin-bottom: 18px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  .c-title--primary {
    line-height: 1.3;
    letter-spacing: -0.1em;
    font-size: 5.8666666667vw;
    margin-bottom: 3.3333333333vw;
  }
}
.c-title--primary span {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-title--primary span {
    font-size: 1.5384615385rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title--primary span {
    line-height: 1.5;
    font-size: 4vw;
  }
}
.c-title--secondary {
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  text-align: center;
  color: #b48a0c;
  letter-spacing: -0.1em;
}
@media screen and (min-width: 768px) {
  .c-title--secondary {
    font-size: 2.4615384615rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .c-title--secondary {
    text-align: center;
    line-height: 1.4;
    letter-spacing: -0.1em;
    font-size: 5.6vw;
  }
}
.c-title--secondary .title-mun {
  letter-spacing: 0.05em;
}
.c-title--third {
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  text-align: center;
  color: #b48a0c;
  letter-spacing: -0.1em;
}
@media screen and (min-width: 768px) {
  .c-title--third {
    font-size: 1.9615384615rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) {
  .c-title--third {
    text-align: center;
    line-height: 1.3;
    font-size: 5.0666666667vw;
  }
}

.c-btn {
  line-height: 1.2;
  text-align: center;
}
.c-btn__link {
  align-items: center;
  display: flex;
  justify-content: center;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .c-btn__link {
    height: 60px;
    max-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn__link {
    font-size: 0.9230769231rem;
    height: 12vw;
    max-width: 88.8vw;
  }
}
.c-btn__link--basic {
  background-color: #b48a0c;
  color: #fff !important;
  transition: opacity 0.3s;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px) {
  .c-btn__link--basic {
    font-size: 1.1538461538rem;
    height: 70px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn__link--basic {
    font-size: 3.7333333333vw;
    height: 14.6666666667vw;
  }
}
.c-btn__link--basic.is_hover {
  opacity: 0.8;
}
.c-btn__link--bdr {
  color: #111111 !important;
  border: solid 1px #111111;
  transition: background-color 0.3s, color 0.3s;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px) {
  .c-btn__link--bdr {
    height: 68px;
  }
}
.c-btn__link--bdr.is_hover {
  background-color: #b48a0c;
  color: #fff !important;
}
.c-btn__link--tel {
  color: #111111 !important;
  border: solid 1px #111111;
  transition: background-color 0.3s, color 0.3s;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (max-width: 767px) {
  .c-btn__link--tel {
    font-size: 0.8461538462rem;
  }
}
.c-btn__link--tel.is_hover {
  background-color: #b48a0c;
  color: #fff !important;
}

.c-pr {
  background-color: rgba(255, 255, 255, 0.7);
  color: #000000;
  line-height: 1;
  padding: 0.2em 0.4em;
  position: absolute;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .c-pr {
    font-size: 1.0769230769rem;
    right: 1.5625%;
    top: 2.4096385542%;
  }
}
@media screen and (max-width: 767px) {
  .c-pr {
    font-size: 0.7692307692rem;
    right: 4vw;
    top: 4vw;
  }
}

@media screen and (min-width: 768px) {
  .c-mlink {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .c-mlink {
    margin-top: 2.6666666667vw;
  }
}
.c-mlink img {
  width: 77px;
}

.c-flex-center {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .c-flex-center-md {
    display: flex;
    justify-content: center;
  }
}

.p-mv {
  background-color: #06050a;
  position: relative;
  z-index: 9;
}
.p-mv__container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv__group {
    width: min(100%, 1280px);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__group {
    height: auto;
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
}
.p-mv__wrap {
  color: #fff;
  line-height: 1.5;
  z-index: 15;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
@media screen and (min-width: 768px) {
  .p-mv__wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 50px;
    width: 58.4375%;
    padding-left: 0.78125%;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__wrap {
    position: relative;
    padding-top: 6.4vw;
    padding-bottom: 2.6666666667vw;
    margin-left: auto;
    margin-right: auto;
    width: 96vw;
  }
}
.p-mv__catch {
  opacity: 0;
  transition: opacity 1.5s ease;
  color: #e5cc9a;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-mv__catch {
    line-height: 1.3;
    letter-spacing: -2px;
    font-size: 32px;
    font-size: 2.4615384615rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .p-mv__catch {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__catch {
    line-height: 1.4;
    letter-spacing: -0.5px;
    font-size: 4.6666666667vw;
  }
}
.p-mv__title {
  opacity: 0;
  transition: opacity 1.5s ease;
  color: #fff;
  text-align: center;
  font-size: 38px;
  font-size: 2.9230769231rem;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .p-mv__title {
    font-size: 2.96875vw;
  }
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    transition-delay: 1s;
    line-height: 1.5;
    margin-top: 25px;
    letter-spacing: -6px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    transition-delay: 0.2s;
    line-height: 1.4;
    margin-top: 5.3333333333vw;
    letter-spacing: -2.5px;
    font-size: 5.8666666667vw;
  }
}

.p-slider {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-slider {
    max-width: 532px;
    width: 41.5625%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .p-slider {
    width: 41.640625%;
  }
}
@media screen and (max-width: 767px) {
  .p-slider {
    height: 149.8666666667vw;
  }
}
.p-slider > div {
  height: 100%;
}
.p-slider > div > div {
  height: 100%;
}

.p-sec01 {
  position: relative;
  background-color: #fff;
  z-index: 9;
}
.p-sec01__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-sec01__container {
    padding-bottom: 136px;
  }
}
@media screen and (max-width: 767px) {
  .p-sec01__container {
    padding-bottom: 16vw;
  }
}
.p-sec01__title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sec01__title {
    padding-top: 46px;
  }
}
@media screen and (max-width: 767px) {
  .p-sec01__title {
    padding-top: 6.1333333333vw;
  }
}
.p-sec01__title span {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-sec01__title span + span {
    padding-top: 3.7333333333vw;
  }
}
.p-sec01__img {
  z-index: 9;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sec01__text {
    padding: 46px 150px 0px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .p-sec01__text {
    padding: 46px 11.71875% 0px;
  }
}
@media screen and (max-width: 767px) {
  .p-sec01__text {
    padding: 6.1333333333vw 4.2666666667vw 0;
  }
}
.p-sec01__desc {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #111;
  letter-spacing: 0.018em;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-sec01__desc {
    font-size: 1.1538461538rem;
    line-height: 1.625;
  }
}
@media screen and (max-width: 767px) {
  .p-sec01__desc {
    letter-spacing: 0.1em;
    line-height: 1.7;
    font-size: 3.7333333333vw;
  }
}
.p-sec01__credit {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #444444;
  letter-spacing: 0.08em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-sec01__credit {
    font-size: 1.0769230769rem;
    line-height: 1.625;
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-sec01__credit {
    text-align: justify;
    line-height: 1.625;
    font-size: 3.3333333333vw;
    padding-top: 5.3333333333vw;
  }
}

.p-sec02 {
  position: relative;
  background-color: #fff;
  z-index: 9;
}
.p-sec02__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-sec02__container {
    padding-bottom: 136px;
  }
}
@media screen and (max-width: 767px) {
  .p-sec02__container {
    padding-bottom: 16vw;
  }
}
.p-sec02__title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sec02__flex {
    padding-top: 46px;
  }
}
@media screen and (max-width: 767px) {
  .p-sec02__flex {
    padding-top: 6.1333333333vw;
  }
}
.p-sec02__img {
  z-index: 9;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sec02__img {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-sec02__img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-sec02__text {
    padding-left: 65px;
    width: 52.734375%;
  }
}
@media screen and (max-width: 767px) {
  .p-sec02__text {
    padding: 6.1333333333vw 4.2666666667vw 0;
  }
}
.p-sec02__desc {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #111;
  text-align: justify;
  letter-spacing: 0.018em;
}
@media screen and (min-width: 768px) {
  .p-sec02__desc {
    font-size: 1.1538461538rem;
    line-height: 1.7;
  }
}
@media screen and (max-width: 767px) {
  .p-sec02__desc {
    letter-spacing: 0.1em;
    line-height: 1.625;
    font-size: 3.7333333333vw;
  }
}
.p-sec02__credit {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #444444;
  letter-spacing: 0.08em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-sec02__credit {
    font-size: 1.0769230769rem;
    line-height: 1.6;
    padding-top: 36px;
  }
}
@media screen and (max-width: 767px) {
  .p-sec02__credit {
    text-align: justify;
    line-height: 1.625;
    font-size: 3.3333333333vw;
    padding-top: 5.3333333333vw;
  }
}

.p-lead {
  background-color: #fff;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  line-height: 2;
  position: relative;
  z-index: 99;
  letter-spacing: -0.018em;
}
@media screen and (min-width: 768px) {
  .p-lead {
    font-size: 1.1538461538rem;
    text-align: center;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .p-lead {
    font-size: 3.4666666667vw;
    letter-spacing: -0.1em;
  }
}
.p-lead__container {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-lead__container {
    padding: 90px 20px 124px;
  }
}
@media screen and (max-width: 767px) {
  .p-lead__container {
    padding: 8.6666666667vw 4.2666666667vw 16vw;
  }
}
.p-lead__text {
  color: #111111;
}
@media screen and (min-width: 768px) {
  .p-lead__text {
    font-size: 1.1538461538rem;
    text-align: center;
    line-height: 2;
    padding-top: 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-lead__text {
    line-height: 1.625;
    font-size: 4.2666666667vw;
    padding-top: 4vw;
  }
}

/*-----------------------------------------------------------------------------------------------------------------------------------
.contents01
-----------------------------------------------------------------------------------------------------------------------------------*/
.p-model {
  position: relative;
  background-color: #fff;
  z-index: 9;
}
.p-model__cont {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-model__cont {
    padding-bottom: 100px;
  }
}
.p-model__cont.p-model--01 {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-model__cont.p-model--01 .p-model__text {
    padding-top: 210px;
    padding-bottom: 1262px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .p-model__cont.p-model--01 .p-model__text {
    padding-top: 16.1290322581%;
    padding-bottom: 62%;
  }
}
@media screen and (min-width: 768px) {
  .p-model__cont.p-model--02 {
    margin-top: -1032px;
    position: relative;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .p-model__cont.p-model--02 {
    margin-top: -46%;
  }
}
@media screen and (min-width: 768px) {
  .p-model__cont.p-model--02 .p-model__text {
    padding-top: 100%;
    padding-bottom: 32.45%;
  }
}
.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;
  }
}
@media screen and (max-width: 767px) {
  .p-model__sec {
    padding-bottom: 20vw;
  }
}
@media screen and (min-width: 768px) {
  .p-model__sec__reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .p-model__sec__reverse .p-model__text .p-model__text--box {
    padding-left: 3.0303030303%;
    padding-right: 9.0909090909%;
  }
}
.p-model__img {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-model__img {
    max-width: 620px;
    width: 48.4375%;
  }
}
@media screen and (max-width: 767px) {
  .p-model__img {
    width: 100%;
    height: 100%;
  }
}
.p-model__text {
  position: relative;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .p-model__text {
    max-width: 660px;
    width: 51.5625%;
  }
}
@media screen and (max-width: 767px) {
  .p-model__text {
    margin-left: auto;
    margin-right: auto;
    width: 89.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-model__text--box {
    padding-left: 9.0909090909%;
    padding-right: 3.0303030303%;
  }
}
.p-model__ccopy {
  color: #b48a0c;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  text-align: center;
  letter-spacing: -0.1em;
}
@media screen and (min-width: 768px) {
  .p-model__ccopy {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-model__ccopy {
    letter-spacing: -0.12em;
    padding-bottom: 2.9333333333vw;
    padding-top: 6.6666666667vw;
  }
}
.p-model__ccopy--sml {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-model__ccopy--sml {
    font-size: 2rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .p-model__ccopy--sml {
    text-align: center;
    line-height: 1.4;
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 768px) {
  .p-model__ccopy--big {
    font-size: 2.4615384615rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .p-model__ccopy--big {
    text-align: center;
    line-height: 1.4;
    font-size: 5.6vw;
  }
}
.p-model__desc {
  text-align: left;
  color: #111;
  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: 0.5px;
  }
}
@media screen and (max-width: 767px) {
  .p-model__desc {
    line-height: 1.7;
    letter-spacing: 0.5px;
    font-size: 3.7333333333vw;
  }
}
.p-model__note {
  text-align: left;
  color: #111;
  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__note {
    font-size: 1.1538461538rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
    padding-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-model__note {
    line-height: 1.7;
    letter-spacing: 0.5px;
    font-size: 3.4666666667vw;
    padding-top: 6.6666666667vw;
  }
}
.p-model__credit {
  color: #444444;
  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__credit {
    font-size: 1.1538461538rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-model__credit {
    line-height: 1.7;
    letter-spacing: 0.5px;
    font-size: 3.3333333333vw;
    margin-top: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .p-model__btn {
    margin-top: 14.453125%;
  }
}
@media screen and (max-width: 767px) {
  .p-model__btn {
    margin-top: 21.3333333333%;
  }
}

@media screen and (min-width: 768px) {
  .a-sticky--pc {
    position: sticky;
    top: 60px;
  }
}

.p-step {
  position: relative;
  background-color: #fff;
  z-index: 9;
}
.p-step__container {
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  width: min(100%, 1280px);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-step__container {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .p-step__container {
    padding-bottom: 22.6666666667vw;
  }
}
.p-step__title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-step__lead {
    padding-bottom: 70px;
    padding-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-step__lead {
    padding-bottom: 13.3333333333vw;
    padding-top: 4vw;
  }
}
.p-step__lead--text {
  color: #111111;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  letter-spacing: -0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-step__lead--text {
    font-size: 1.3846153846rem;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .p-step__lead--text {
    line-height: 1.625;
    font-size: 4.2666666667vw;
  }
}
.p-step__box {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-step__box {
    padding-bottom: 54px;
  }
}
@media screen and (max-width: 767px) {
  .p-step__box {
    padding-bottom: 13.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-step__list {
    padding-bottom: 66px;
  }
}
@media screen and (max-width: 767px) {
  .p-step__list {
    padding-bottom: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-step__img {
    max-width: 500px;
    width: 39.0625%;
    margin-left: 3.90625%;
    margin-right: 5.46875%;
  }
}
@media screen and (max-width: 767px) {
  .p-step__img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-step__text {
    max-width: 660px;
    width: 51.5625%;
    padding-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-step__text {
    margin-left: auto;
    margin-right: auto;
    width: 88.6666666667vw;
  }
}
.p-step__text--desc {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #111;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-step__text--desc {
    font-size: 1.1538461538rem;
    text-align: justify;
    line-height: 1.625;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-step__text--desc {
    text-align: justify;
    line-height: 1.625;
    font-size: 3.7333333333vw;
    padding-bottom: 4vw;
  }
}
.p-step__text--desc sup {
  vertical-align: super;
  font-size: 80%;
}
.p-step__text--note {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #111;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-step__text--note {
    font-size: 1.1538461538rem;
    text-align: justify;
    line-height: 1.625;
    padding-bottom: 46px;
  }
}
@media screen and (max-width: 767px) {
  .p-step__text--note {
    text-align: justify;
    line-height: 1.625;
    font-size: 3.7333333333vw;
    padding-bottom: 8vw;
  }
}
.p-step__text--credit {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #444444;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-step__text--credit {
    font-size: 1.1538461538rem;
    text-align: justify;
    line-height: 1.625;
  }
}
@media screen and (max-width: 767px) {
  .p-step__text--credit {
    text-align: justify;
    line-height: 1.625;
    font-size: 3.4666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-step__subTitle {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-step__subTitle {
    text-align: center;
    padding-bottom: 2.6666666667vw;
  }
}
.p-step__subTitle--num01 {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-step__subTitle--num01 {
    width: 110px;
    margin-right: -6px;
  }
}
@media screen and (max-width: 767px) {
  .p-step__subTitle--num01 {
    margin-left: auto;
    margin-right: auto;
    width: 26.1333333333vw;
    padding-left: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-step__comment {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .p-step__comment {
    margin-left: auto;
    margin-right: auto;
    width: 88.6666666667vw;
    padding-bottom: 16vw;
  }
}
.p-step__comment--text {
  color: #111111;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  letter-spacing: -0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-step__comment--text {
    font-size: 1.3846153846rem;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .p-step__comment--text {
    line-height: 1.625;
    font-size: 4.2666666667vw;
  }
}

.p-linkbtn {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-align: center;
  color: #111111 !important;
}
@media screen and (min-width: 768px) {
  .p-linkbtn {
    font-size: 1.0769230769rem;
  }
}
@media screen and (max-width: 767px) {
  .p-linkbtn {
    font-size: 3.2vw;
    font-size: 0.9230769231rem;
  }
}
.p-linkbtn__container {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 1260px;
}
@media screen and (min-width: 1280px) {
  .p-linkbtn__container {
    padding-left: 125px;
    padding-right: 125px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .p-linkbtn__container {
    padding-left: 11.3636363636%;
    padding-right: 11.3636363636%;
  }
}
@media screen and (max-width: 767px) {
  .p-linkbtn__container {
    padding-left: 3.2vw;
    padding-right: 3.2vw;
  }
}
@media screen and (min-width: 768px) {
  .p-linkbtn__btn {
    min-width: 300px;
    width: 24.1935483871%;
  }
}
@media screen and (min-width: 768px) {
  .p-linkbtn__btn:not(:first-child) {
    margin-left: 4.016064257%;
  }
}
@media screen and (max-width: 767px) {
  .p-linkbtn__btn:not(:first-child) {
    margin-top: 20px;
  }
}
.p-linkbtn .c-btn__link {
  max-width: 100%;
}

.p-credit {
  position: relative;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-align: center;
  color: #111 !important;
}
@media screen and (min-width: 768px) {
  .p-credit {
    font-size: 0.8461538462rem;
    max-width: 890px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 82px;
    padding-bottom: 74px;
  }
}
@media screen and (max-width: 767px) {
  .p-credit {
    font-size: 0.9230769231rem;
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    padding-bottom: 12.7272727273vw;
    padding-top: 10.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-credit__wrap + .p-credit__wrap {
    margin-top: 65px;
  }
}
@media screen and (max-width: 767px) {
  .p-credit__wrap + .p-credit__wrap {
    margin-top: 25px;
  }
}
.p-credit__title {
  color: #111;
}
@media screen and (min-width: 768px) {
  .p-credit__title {
    font-size: 1.2307692308rem;
  }
}
@media screen and (max-width: 767px) {
  .p-credit__title {
    font-size: 0.9230769231rem;
  }
}
.p-credit__title > span {
  border-bottom: solid 2px #111;
  display: inline-block;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.p-credit__des {
  margin-top: 27px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-credit__des {
    margin-top: 20px;
  }
}
.p-credit__des--link {
  text-decoration: underline !important;
  color: #111 !important;
}
@media screen and (min-width: 768px) {
  .p-credit__btn {
    min-width: 200px;
    width: 30.3370786517%;
  }
}
@media screen and (min-width: 768px) {
  .p-credit__btn:not(:first-child) {
    margin-left: 4.4943820225%;
  }
}
@media screen and (max-width: 767px) {
  .p-credit__btn:not(:first-child) {
    margin-top: 18px;
  }
}
.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: 5.3333333333vw;
  }
}
.p-credit__sns.is_hover {
  opacity: 0.65;
}
@media screen and (min-width: 768px) {
  .p-credit__note {
    margin-top: 20px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .p-credit__note {
    margin-top: 5.3333333333vw;
    line-height: 1.8;
  }
}
.p-credit .text-link ul {
  color: #111;
}
@media screen and (min-width: 768px) {
  .p-credit .text-link ul {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .p-credit .text-link ul {
    display: flex;
    justify-content: center;
    padding-top: 5px;
  }
  .p-credit .text-link ul:not(:first-of-type) {
    padding-top: 0.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-credit .text-link ul {
    padding-top: 5px;
    justify-content: center;
  }
}
.p-credit .text-link ul span {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-credit .text-link ul span {
    margin-right: 6px;
  }
}
@media screen and (max-width: 767px) {
  .p-credit .text-link ul span {
    display: block;
    margin-right: 6px;
  }
}
.p-credit .text-link ul a {
  color: #111 !important;
  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: #111;
}

.credit__container {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .credit__container {
    padding-left: 11.3636363636%;
    padding-right: 11.3636363636%;
  }
}
@media screen and (max-width: 767px) {
  .credit__container {
    padding-left: 3.2vw;
    padding-right: 3.2vw;
  }
}

.bg-fix::before {
  content: "";
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .bg-fix::before {
    width: 100%;
    height: 100vh;
    min-height: 400px;
    max-height: 900px;
    display: block;
    background-image: url(../images/item_pc_bg.jpg);
  }
}
@media screen and (max-width: 767px) {
  .bg-fix::before {
    background-image: url(../images/item_sp_bg.jpg);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    display: block;
    width: 100vw;
    height: 66.6666666667vw;
    background-size: cover;
    background-position: center;
  }
}

.p-item {
  position: relative;
}
.p-item__container {
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
}
.p-item__title {
  text-align: center;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-item__title {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-item__title {
    padding-bottom: 6.1333333333vw;
  }
}
.p-item__credit {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-item__credit {
    padding-top: 36px;
  }
}
@media screen and (max-width: 767px) {
  .p-item__credit {
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
    padding-top: 5.3333333333vw;
  }
}
.p-item__credit--text {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 1280px;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #444;
  letter-spacing: 0.1em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-item__credit--text {
    padding-left: 100px;
    padding-right: 100px;
    font-size: 1.0769230769rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .p-item__credit--text {
    line-height: 1.625;
    font-size: 3.3333333333vw;
  }
}
.p-item .p-techno {
  position: relative;
}
.p-item .p-techno__cont {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-item .p-techno__cont {
    padding-left: 25px;
    padding-right: 25px;
    max-width: 1280px;
    padding-bottom: 100px;
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-item .p-techno__cont {
    padding-top: 13.3333333333vw;
    padding-bottom: 13.3333333333vw;
    padding-left: 3.3333333333vw;
    padding-right: 3.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-item .p-techno__box {
    border: 1px solid #b48a0c;
    padding-top: 54px;
    padding-bottom: 60px;
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .p-item .p-techno__box {
    padding-left: 7.8125%;
    padding-right: 7.8125%;
  }
}
@media screen and (max-width: 767px) {
  .p-item .p-techno__box {
    padding-left: 2.1333333333vw;
    padding-right: 2.1333333333vw;
    padding-top: 12vw;
    padding-bottom: 6.6666666667vw;
    border: 0.2666666667vw solid #b48a0c;
  }
}
.p-item .p-techno__title {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-item .p-techno__title {
    max-width: 770px;
    width: 100%;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-item .p-techno__title {
    width: 67.7333333333vw;
    padding-bottom: 8vw;
  }
}
.p-item .p-techno__main {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-item .p-techno__list--title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-item .p-techno__list--title {
    padding-bottom: 1.3333333333vw;
  }
}
.p-item .p-techno__list--num01 {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-item .p-techno__list--num01 {
    width: 64px;
    margin-right: -2px;
  }
}
@media screen and (max-width: 767px) {
  .p-item .p-techno__list--num01 {
    margin-left: auto;
    margin-right: auto;
    width: 14vw;
  }
}
.p-item .p-techno__list--num02 {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-item .p-techno__list--num02 {
    width: 65px;
    margin-right: -4px;
  }
}
@media screen and (max-width: 767px) {
  .p-item .p-techno__list--num02 {
    margin-left: auto;
    margin-right: auto;
    width: 14vw;
  }
}
.p-item .p-techno__list--num03 {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-item .p-techno__list--num03 {
    width: 65px;
    margin-right: -4px;
  }
}
@media screen and (max-width: 767px) {
  .p-item .p-techno__list--num03 {
    margin-left: auto;
    margin-right: auto;
    width: 14vw;
  }
}
.p-item .p-techno__list--desc {
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  color: #111;
  letter-spacing: -0.1em;
  letter-spacing: -0.018em;
}
@media screen and (min-width: 768px) {
  .p-item .p-techno__list--desc {
    font-size: 1.3076923077rem;
    text-align: center;
    line-height: 1.625;
  }
}
@media screen and (max-width: 767px) {
  .p-item .p-techno__list--desc {
    line-height: 1.625;
    font-size: 4vw;
  }
}
.p-item .p-techno__list--desc sup {
  vertical-align: super;
  font-size: 80%;
}
@media screen and (min-width: 768px) {
  .p-item .p-techno__note {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-item .p-techno__note {
    padding-left: 2.1333333333vw;
    padding-right: 2.1333333333vw;
    padding-top: 13.3333333333vw;
  }
}
.p-item .p-techno__note--text {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #111;
  letter-spacing: 0.1em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-item .p-techno__note--text {
    font-size: 1.0769230769rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .p-item .p-techno__note--text {
    line-height: 1.625;
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 768px) {
  .p-item .p-techno .p-techno__list + .p-techno__list {
    padding-top: 72px;
  }
}
@media screen and (max-width: 767px) {
  .p-item .p-techno .p-techno__list + .p-techno__list {
    padding-top: 8.2666666667vw;
  }
}
.p-item .p-comment {
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 9;
}
.p-item .p-comment__cont {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-item .p-comment__cont {
    max-width: 1280px;
    padding-bottom: 120px;
    padding-top: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-item .p-comment__cont {
    padding-top: 13.3333333333vw;
    padding-bottom: 24vw;
  }
}
@media screen and (min-width: 768px) {
  .p-item .p-comment__box {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .p-item .p-comment__box {
    padding-left: 7.8125%;
    padding-right: 7.8125%;
  }
}
@media screen and (max-width: 767px) {
  .p-item .p-comment__box {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-item .p-comment__list {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-item .p-comment__list {
    padding-bottom: 8.2666666667vw;
  }
}
.p-item .p-comment__title {
  text-align: center;
}
.p-item .p-comment__title--sml {
  display: block;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  text-align: center;
  color: #b48a0c;
  letter-spacing: -0.12em;
}
@media screen and (min-width: 768px) {
  .p-item .p-comment__title--sml {
    font-size: 2rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) {
  .p-item .p-comment__title--sml {
    text-align: center;
    line-height: 1.3;
    font-size: 4vw;
  }
}
.p-item .p-comment__text {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #111;
  letter-spacing: 0.1em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-item .p-comment__text {
    font-size: 1.1538461538rem;
    line-height: 1.6;
    padding-top: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-item .p-comment__text {
    line-height: 1.625;
    font-size: 3.2vw;
    padding-top: 3.2vw;
  }
}

.u-bg-black {
  background-color: #000;
}

.u-bg-white {
  background-color: #fff !important;
}

.u-bgclr-primary {
  background-color: #fff;
  z-index: 9;
  position: relative;
}

.u-bgclr-secondary {
  background-color: #eee4c3;
  z-index: 9;
  position: relative;
}

.u-bgclr-third {
  background-color: #989ca2;
  z-index: 9;
  position: relative;
}

@media screen and (min-width: 768px) {
  .u-parallax__inner {
    padding-top: 71%;
  }
}
@media screen and (max-width: 767px) {
  .u-parallax__inner {
    padding-top: 66.6666666667vw;
  }
}

.border-btm {
  border-bottom: 1px solid #c5a983;
}

.bg-tran {
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 9;
  position: relative;
}

.u-bg-img {
  top: 0;
  left: 0;
  position: absolute;
  content: "";
  display: inline-block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #edeef4;
}

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

.u-text-black {
  color: #111111 !important;
}

.u-clr-primary {
  color: #111;
}

.u-clr-secondary {
  color: #a68b57;
}

.u-clr-third {
  color: #957f52;
}

.u-text-gry {
  color: #8a877f !important;
}

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

.u-ml-auto {
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .u-ml-sm-auto {
    margin-left: auto;
  }
}

.u-text-right {
  text-align: right;
}

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

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

.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;
}

.l-flex--start {
  -ms-flex-item-align: start;
  align-self: flex-start;
}/*# sourceMappingURL=style.css.map */