@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

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

.pc {
  display: none;
}
@media (min-width: 992px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media (min-width: 992px) {
  .sp {
    display: none;
  }
}

/*1.0rem=10px*/
html {
  font-size: 62.5%;
}

body {
  background-color: #FFF8EC;
  color: #5A5A5A;
  font-weight: 500;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  overflow-x: hidden;
  line-height: 1.3;
  position: relative;
  z-index: -1;
}

img {
  width: 100%;
}

button {
  background-color: transparent;
  cursor: pointer;
}

em {
  font-style: normal;
}

input,
label,
a {
  cursor: pointer;
}

a {
  transition: all 0.2s linear 0s;
}
a:hover {
  opacity: 0.7;
}

/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

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

.pc {
  display: none;
}

@media (min-width: 992px) {
  .pc {
    display: block;
  }
}
.sp {
  display: block;
}

@media (min-width: 992px) {
  .sp {
    display: none;
  }
}
/*1.0rem=10px*/
html {
  font-size: 62.5%;
}

body {
  background-color: #ffffff;
  color: #5A5A5A;
  font-weight: 500;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  overflow-x: hidden;
  line-height: 1.3;
}

img {
  width: 100%;
}

button {
  background-color: transparent;
  cursor: pointer;
}

em {
  font-style: normal;
}

input,
label,
a {
  cursor: pointer;
}

a {
  transition: all 0.2s linear 0s;
}

a:hover {
  opacity: 0.7;
}

/***********************************************
header
************************************************/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  color: #000;
  background-color: rgba(255, 255, 255, 0.8);
}

.l-header__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

@media (min-width: 992px) {
  .l-header__items {
    height: auto;
    height: 80px;
    padding-left: 10px;
    max-width: 1200px;
    margin: 0 auto;
  }
}
/***********************************************
header              左               ロゴ*****/
.l-header__left {
  margin-left: 10px;
  margin-right: auto;
}

a.l-header__logo {
  transition: all 0.2s linear 0s;
  display: block;
  width: 150px;
  margin-left: 20px;
}

a.l-header__logo:hover {
  opacity: 0.7;
}

@media (min-width: 992px) {
  a.l-header__logo {
    width: 200px;
    margin-left: 30px;
  }
}
/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.l-header__nav-items li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  color: #ffffff;
}

.l-header__nav-items li.current a,
.l-header__nav-items li a:hover {
  opacity: 0.7;
}

.l-header__nav-items li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: -10px;
  left: 0;
  /*線の形状*/
  width: 100%;
  height: 1px;
  background: #ffffff;
  /*アニメーションの指定*/
  transition: all 0.6s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: left top;
  /*左上基点*/
}

/*現在地とhoverの設定*/
.l-header__nav-items li.current a::after,
.l-header__nav-items li a:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}

/***********************************************
header       右            *****/
.l-header__nav-items ul {
  display: none;
}

@media (min-width: 992px) {
  .l-header__nav-items ul {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .l-header__nav-items {
    display: flex;
  }
}
.l-header__insta-icon {
  display: block;
  width: 34px;
  padding: 0;
  margin: 23px 14px 0 0;
}

.l-header__insta-icon.--sp {
  margin-top: 0px;
  position: absolute;
  top: 17px;
  right: 70px;
}

@media (min-width: 992px) {
  .l-header__insta-icon.--sp {
    display: none;
  }
}
.l-header__nav-items ul > li {
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media (min-width: 992px) {
  .l-header__nav-items ul > li {
    padding: 10px 18px;
    font-size: 18px;
  }
}
.l-header__nav-items ul > li a {
  transition: all 0.2s linear 0s;
  color: #333;
}

.l-header__nav-items ul > li a:hover {
  opacity: 0.7;
}

/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.l-header__hamburger-menu li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  color: #000000;
}

.l-header__hamburger-menu li.current a,
.l-header__hamburger-menu li a:hover {
  opacity: 1 !important;
}

.l-header__hamburger-menu li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 4px;
  left: 35%;
  transform: translateX(-50%);
  /*線の形状*/
  width: 30%;
  height: 3px;
  background: #7C5E48;
  /*アニメーションの指定*/
  transition: all 0.6s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: left top;
  /*左上基点*/
}

/*現在地とhoverの設定*/
.l-header__hamburger-menu li.current a::after,
.l-header__hamburger-menu li a:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}

/***********************************************
ハンバーガーメニュー
************************************************/
.drawer-icon {
  width: 70px;
  height: 70px;
  position: fixed;
  top: -6px;
  right: 0;
  z-index: 1000;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  background: transparent;
  display: block;
  background-color: #7C5E48;
}

@media (min-width: 992px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-bars {
  display: inline-block;
  width: 54px;
  height: 32.75px;
  position: relative;
  vertical-align: bottom;
  width: 33px;
  height: 12.75px;
}

.drawer-bar {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  background: #ffffff;
  width: 100%;
  height: 2.25px;
  border-radius: 20px;
  transition: all 0.5s linear 0s;
}

.drawer-bar:nth-of-type(1) {
  top: 0;
}

.drawer-bar:nth-of-type(2) {
  top: 10.25px;
}

.drawer-bar:nth-of-type(3) {
  top: 20.5px;
}

.is-checked .drawer-bar:nth-of-type(1) {
  top: 10px;
  transform: rotate(-45deg);
  background: #ffffff;
}

.is-checked .drawer-bar:nth-of-type(2) {
  background: transparent;
}

.is-checked .drawer-bar:nth-of-type(3) {
  top: 10px;
  transform: rotate(45deg);
  background: #ffffff;
}

.drawer-content-cover {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transform: translateX(0);
  top: 0;
  left: 0;
  bottom: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  transition: all 0.5s linear 0s;
  background: #FCF0F0;
  z-index: 999;
  padding-top: 50px;
}

.drawer-content-cover.is-checked {
  visibility: visible;
  opacity: 1;
}

.drawer-content-cover p {
  color: #3C3C3C;
}

.l-header__hamburger-menu ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  z-index: 1;
}

@media (min-width: 992px) {
  .l-header__hamburger-menu ul {
    width: 300px;
    max-width: 100%;
  }
}
.l-header__hamburger-menu ul li a {
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  padding: 26px 17px;
  color: #333;
  transition: all 0.2s linear 0s;
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
}

.l-header__hamburger-menu ul li a:hover {
  opacity: 0.7;
}

.menu-dorawer-container li:last-child {
  border: solid 2px #fff;
  background-color: #fff;
  margin: 10px 0;
}

.menu-dorawer-container li:last-child a {
  font-weight: bold;
  color: #002a52;
}

.menu-dorawer-container li:nth-last-child(2) {
  border: solid 1px #fff;
  margin: 10px 0 30px 0;
}

.l-header__hamburger-menu ul li {
  font-size: 18px;
}

.l-header__foot-flex ul {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  font-weight: 600;
}

.l-header__foot-flex ul li a {
  display: block;
  padding: 30px 8px;
  color: #cbcbcb;
  font-size: 11px;
}

/**************?
footer
/*************/
.l-footer {
  background-color: #B68740;
  padding-bottom: 100px;
  color: #fff;
  font-weight: 700;
  margin: -10px 0 0 0;
}

.l-footer h2 {
  font-size: 18px;
  padding: 30px 0 0;
  line-height: 1.5;
}

.l-footer a.l-footer__mail {
  font-size: 20px;
  margin: 10px 0;
  padding-left: 40px;
  display: inline-block;
  color: #fff;
  position: relative;
}

@media (min-width: 992px) {
  .l-footer a.l-footer__mail {
    font-size: 30px;
  }
}
.l-footer a.l-footer__mail::before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../img/icon-mail.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: -10px;
}

@media (min-width: 992px) {
  .l-footer a.l-footer__mail::before {
    top: 9px;
  }
}
.l-footer a.l-footer__mail:hover {
  opacity: 0.7;
}

@media (min-width: 992px) {
  .l-footer {
    display: block;
    width: 100%;
    color: #ffffff;
    z-index: 900;
    font-size: 16px;
  }
  .l-footer h2 {
    padding: 60px 0 0;
  }
  .l-footer .l-footer__mail {
    font-size: 30px;
  }
  .l-footer .l-footer__mail::before {
    top: 8px;
  }
}
.l-footer__nav-items {
  width: 75%;
}

.l-footer__nav-items ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px auto 0;
}

@media (min-width: 992px) {
  .l-footer__nav-items ul {
    margin: 0 auto 0px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.l-footer__nav-items ul > li {
  display: block;
}

@media (min-width: 992px) {
  .l-footer__nav-items ul > li {
    padding: 10px 40px;
  }
}
.l-footer__logo {
  width: 150px;
  transition: all 0.2s linear 0s;
  display: block;
}

.l-footer__logo:hover {
  opacity: 0.7;
}

@media (min-width: 992px) {
  .l-footer__logo {
    width: 200px;
  }
}
/***********************************************
    cv ボタン　最下部固定
    ************************************************/
.l-footer-cv {
  display: flex;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 800;
  font-size: 15px;
  font-weight: 700;
  background-color: #ffffff;
  height: 75px;
  width: 100%;
}

@media (min-width: 992px) {
  .l-footer-cv {
    display: none;
  }
}
a.l-footer-cv__btn {
  width: 50%;
  padding: 27px;
  text-align: center;
  border-right: solid 1px #fff;
  line-height: 1.5;
  color: #fff !important;
  display: block;
  width: 50%;
  height: 100%;
  background-color: #7C5E48;
  padding: 27px 0px;
  font-size: 14px;
  /**
      &::after {
          border-top: 1px solid #fff;
          border-right: 1px solid #fff;
          transform: rotate(45deg);
          width: 10px;
          height: 10px;
          position: absolute;
          top: 42%;
          right: 10px;
      }**/
}

@media (min-width: 992px) {
  a.l-footer-cv__btn {
    width: 320px;
    height: 75px;
    right: 0;
    background-color: #7C5E48;
    color: #333;
    font-size: 16px;
    padding: 25px;
  }
  a.l-footer-cv__btn::after {
    border-color: #7C5E48;
    right: 20px;
  }
  a.l-footer-cv__btn.--pc {
    padding: 25px;
    background-color: #7C5E48;
    color: #fff;
  }
  a.l-footer-cv__btn.--pc::after {
    border-color: #fff;
  }
}
@media (min-width: 992px) {
  .l-footer__text-small {
    font-size: 11px;
  }
}
.l-footer-cv__sp {
  display: inline;
}

@media (min-width: 992px) {
  .l-footer-cv__sp {
    display: none;
  }
}
.l-footer__wrapper {
  margin-top: 40px;
  color: #fff;
}

.l-footer__logo-nav-flex {
  display: none;
}

@media (min-width: 992px) {
  .l-footer__logo-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 0;
  }
}
.l-footer__nav {
  margin-top: 30px;
  padding: 15px 0;
}

.l-footer__nav ul {
  display: none;
}

@media (min-width: 992px) {
  .l-footer__nav ul {
    display: flex;
    justify-content: center;
  }
}
.l-footer__nav ul > li {
  font-weight: 700;
}

@media (min-width: 992px) {
  .l-footer__nav ul > li {
    padding: 30px 15px;
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .l-footer__nav ul > li {
    padding: 30px 30px;
    font-size: 22px;
  }
}
.l-footer__nav ul > li a {
  transition: all 0.2s linear 0s;
  /*********フッターナビゲーション文字の色********/
  color: #fff;
}

.l-footer__nav ul > li a:hover {
  opacity: 0.7;
}

.l-footer__info {
  margin: 16px 0 9px 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.65;
  letter-spacing: normal;
  text-align: left;
  color: #333;
}

.l-footer__contact-bg {
  padding: 30px 0 20px;
  margin: 30px 0 0 0;
  background-color: #fafafa;
}

@media (min-width: 992px) {
  .l-footer__contact-bg {
    padding: 80px 0;
    margin: 0;
  }
}
.c-inner__center {
  min-width: 330px;
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.3;
}

@media (min-width: 992px) {
  .c-inner__center {
    width: 80%;
  }
}
.c-inner__left {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 992px) {
  .c-inner__left {
    width: 80%;
  }
}
.c-inner__left.--2 {
  width: 95%;
}

@media (min-width: 992px) {
  .c-inner__left.--2 {
    width: 75%;
    padding: 50px 0;
  }
}
.c-inner__left.--3 {
  width: 90%;
}

@media (min-width: 992px) {
  .c-inner__left.--3 {
    width: 80%;
  }
}
.c-inner__flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.c-inner__flex.--sp_block {
  display: block;
}

@media (min-width: 992px) {
  .c-inner__flex.--sp_block {
    display: flex;
  }
}
.c-inner__flex.--c {
  justify-content: center;
  font-size: 14px;
}

.c-inner__wrap {
  overflow: hidden;
}

.c-inner__wrap.--1 {
  margin-top: 30px 0 0;
  padding-top: 20px;
}

@media (min-width: 992px) {
  .c-inner__wrap.--1 {
    margin-top: 30px 0 0;
    padding-top: 60px;
  }
}
.c-inner__wrap2 {
  overflow: hidden;
  background-color: #B68740;
}

.c-inner__wrap2.--2 {
  padding: 0 0 20px;
}

.c-inner__content01 {
  background: #EDEEF0;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  height: 300px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
}

@media (min-width: 992px) {
  .c-inner__content01 {
    height: 300px;
  }
}
.c-inner__content03 {
  background: #EDEEF0;
  border-bottom-left-radius: 1000px 200px;
  border-bottom-right-radius: 1000px 200px;
  height: 100px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  margin-top: -3px;
  padding-top: 2px;
}

@media (min-width: 992px) {
  .c-inner__content03 {
    height: 200px;
  }
}
.c-heading {
  text-align: center;
  margin: 65px 0 20px;
}

.c-heading__jp {
  font-size: 24px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.3em;
  text-align: center;
  color: #7C5E48;
  position: relative;
  z-index: 10;
  background-color: #EDEEF0;
  position: relative;
}

@media (min-width: 992px) {
  .c-heading__jp {
    font-size: 40px;
  }
}
.c-heading__jp::before {
  content: "";
  width: 134px;
  height: 40px;
  background-color: #EDEEF0;
  position: absolute;
  top: 50%;
  left: 49%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media (min-width: 992px) {
  .c-heading__jp::before {
    width: 250px;
    height: 50px;
    background-color: #EDEEF0;
    position: absolute;
    top: 50%;
    left: 49%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
}
.c-heading__jp::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #7C5E48;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -3;
}

.c-heading__jp.--contact {
  letter-spacing: 0em;
  color: #fff;
}

.c-heading__jp.--contact::before {
  background-image: none;
}

.c-heading__jp.--contact + .c-heading__en {
  letter-spacing: 0em;
  color: #fff;
  padding: 5px 0;
}

.c-heading__en {
  display: inline-block;
  margin-top: -10px;
  font-size: 18px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.1em;
  text-align: center;
  color: #B68740;
  padding-right: 5px;
}

@media (min-width: 992px) {
  .c-heading__en {
    font-size: 22px;
    padding-right: 0px;
  }
}
.c-icon {
  position: relative;
}

.c-icon::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

.c-icon::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

/***********************************************
左から右へグイっと登場
************************************************/
.c-icon__from-left {
  animation: fadeIn 1s cubic-bezier(0.9, 0, 0.2, 1) 0.5s 1 normal backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.c-icon__keyword {
  position: absolute;
  color: transparent;
}

/***********************************************
文字の両サイドに画像配置
************************************************/
.c-icon__both-side {
  position: relative;
}

.c-icon__both-side::before,
.c-icon__both-side::after {
  content: "";
  display: inline-block;
  width: 10%;
  aspect-ratio: 100/133;
  background-image: url();
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.c-icon__both-side::after {
  background-image: url();
}

/***********************************************
アンダーライン
************************************************/
.c-icon__marker {
  background: linear-gradient(transparent 60%, yellow 30%);
  display: inline-block;
}

.c-icon__under-line {
  border-bottom: 10px solid #000;
  display: inline-block;
  padding-bottom: 10px;
}

/***********************************************
　ハンバーガーメニュー　細いスクロールバー
************************************************/
.c-icon__scroll-bar {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  overflow-y: auto;
}

.c-icon__scroll-bar::-webkit-scrollbar {
  width: 5px;
  height: 2px;
  border-radius: 10px;
}

.c-icon__scroll-bar::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #D5D5D5;
}

.c-icon__scroll-bar::-webkit-scrollbar-thumb {
  background-color: #969696;
}

/***********************************************
　MV　SCROLL DOWN のモーション
************************************************/
.c-icon__scrolldown1 {
  position: absolute;
  left: 30px;
  bottom: -50px;
  height: 50px;
}

/*====== 9-1-1 縦線が動いてスクロールを促す =======*/
/*スクロールダウン全体の場所*/
.c-icon__scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 58px;
  bottom: 69px;
  /*全体の高さ*/
  height: 50px;
}

/*Scrollテキストの描写*/
.c-icon__scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -32px;
  bottom: 59px;
  /*テキストの形状*/
  color: #D5C1A1;
  width: 70px;
  font-size: 14px;
  font-weight: 400;
  transform: rotate(90deg);
}

/* 線の描写 */
.c-icon__scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 2px;
  height: 30px;
  background: #D5C1A1;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 10px;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 55px;
    opacity: 0;
  }
}
/***********************************************
read more　線の色が変わる
************************************************/
/*== 線の上を別の線が伸びる */
.c-button__more {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*リンクの形状*/
  color: #fff;
  padding: 10px 10px 10px 10px;
  display: inline-block;
  text-decoration: none;
  outline: none;
}

/*線の設定*/
.c-button__more::before,
.c-button__more::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  /*線の形状*/
  background: #333;
  width: 50%;
  height: 2px;
  /*アニメーションの指定*/
  transition: all 0.3s ease-in-out;
}

.c-button__more.--white::before,
.c-button__more.--white::after {
  /*線の形状*/
  background: #fff;
}

/*hover時に伸びる線の形状*/
.c-button__more::after {
  width: 0;
  background: #ffffff;
}

.c-button__more.--white::after {
  background: #333;
}

/*hover時に100%に伸びる*/
.c-button__more:hover::after {
  width: 50%;
}

/*矢印の設定*/
.c-button__more span {
  position: relative;
}

.c-button__more span::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 0.6em;
  right: -36px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}

.c-button__more.--white span::after {
  border-color: #fff;
}

/*hover時に矢印が移動*/
.c-button__more:hover span::after {
  right: -41px;
}

.--side {
  /*== 線の上を別の線が伸びる */
  /*線の設定*/
  /*hover時に伸びる線の形状*/
  /*hover時に100%に伸びる*/
  /*矢印の設定*/
  /*hover時に矢印が移動*/
}

.--side .c-button__more {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*リンクの形状*/
  color: #fff;
  padding: 10px 80px 10px 20px;
  display: inline-block;
  text-decoration: none;
  outline: none;
}

@media (min-width: 992px) {
  .--side .c-button__more {
    padding-right: 137px;
  }
}
.--side .c-button__more::before,
.--side .c-button__more::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 105px;
  background: #5d595a;
  width: 24%;
  height: 1px;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 992px) {
  .--side .c-button__more::before,
  .--side .c-button__more::after {
    bottom: 23px;
    left: 129px;
  }
}
.--side .c-button__more.--white::before,
.--side .c-button__more.--white::after {
  /*線の形状*/
  background: #fff;
}

.--side .c-button__more::after {
  width: 0;
  background: #ffffff;
}

.--side .c-button__more.--white::after {
  background: #000000;
}

.--side .c-button__more:hover::after {
  width: 24%;
}

.--side .c-button__more span {
  position: relative;
}

.--side .c-button__more span::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 0.6em;
  right: -36px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}

.--side .c-button__more.--white span::after {
  border-color: #fff;
}

.--side .c-button__more:hover span::after {
  right: -41px;
}

.p-top__title {
  margin: 0 auto;
  text-shadow: 0 0 11px #000;
  font-family: "Shippori Mincho B1", serif;
  font-size: 35px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  letter-spacing: -6px;
  text-align: center;
  color: #fff;
  position: relative;
}

@media (min-width: 800px) {
  .p-top__title {
    letter-spacing: -8px;
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .p-top__title {
    font-size: 62.5px;
    letter-spacing: -8px;
  }
}
.p-top__title::before {
  content: "";
  background-image: url(../img/title-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 992px) {
  .p-top__title::before {
    width: 346px;
    height: 346px;
  }
}
.text-style-1,
.text-style-2 {
  font-size: 46px;
}

@media (min-width: 800px) {
  .text-style-1,
  .text-style-2 {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .text-style-1,
  .text-style-2 {
    font-size: 87.5px;
  }
}
.Create-the-One-of-Glitter-life {
  font-family: "Meow Script", system-ui;
  font-size: 26px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.05px;
  text-align: center;
  color: #fff;
}

@media (min-width: 992px) {
  .Create-the-One-of-Glitter-life {
    font-size: 35px;
  }
}
/***********************************************
代表メッセージ
************************************************/
.p-top__about {
  position: relative;
  display: block;
  height: 100%;
}

.p-top__about-bg {
  padding: 10px 0 30px;
}

@media (min-width: 992px) {
  .p-top__about-bg {
    padding: 40px 0 100px;
  }
}
.p-top__about-texts {
  display: block;
  width: 100%;
  padding: 80px 0 20px;
}

@media (min-width: 992px) {
  .p-top__about-texts {
    margin-left: 50px;
    width: 50%;
    padding: 0px 0;
  }
}
.p-top__about-texts h3 {
  flex-grow: 0;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: -1px;
  text-align: left;
  color: #333;
  margin-top: -20px;
}

@media (min-width: 992px) {
  .p-top__about-texts h3 {
    font-size: 30px;
    margin-top: 0;
    padding: 30px 0 0;
  }
}
.p-top__about-texts p {
  flex-grow: 0;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: -1px;
  text-align: left;
  color: #333;
  font-size: 15px;
  margin: 10px 0 20px;
  font-weight: 500;
}

@media (min-width: 992px) {
  .p-top__about-texts p {
    font-size: 18px;
    height: 261px;
    margin-top: 20px;
    margin-bottom: 50px;
  }
}
.p-top__about-flex {
  display: block;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .p-top__about-flex {
    margin-top: 40px;
    display: flex;
  }
}
.p-top__about-img {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 992px) {
  .p-top__about-img {
    flex: 1;
    margin-left: calc(50% - 50vw);
  }
}
.p-top__about-img::before {
  z-index: -1;
  position: absolute;
  bottom: -15%;
  left: -6%;
  content: "";
  width: 100%;
  max-width: 922px;
  height: 232px;
  background-color: #dfdfdf;
}

@media (min-width: 992px) {
  .p-top__about-img::before {
    width: 922px;
    position: absolute;
    bottom: -18%;
    left: 25%;
  }
}
/***********************************************
NEWS
************************************************/
.p-top__news-section {
  padding: 0px 0 50px;
}

@media (min-width: 992px) {
  .p-top__news-section {
    padding: 30px 0 50px;
  }
}
.p-top__news-flex-pc {
  display: block;
}

@media (min-width: 992px) {
  .p-top__news-flex-pc {
    display: flex;
  }
}
.p-top__news-title-orange {
  width: 100%;
  flex-shrink: 0;
  background-color: #f06600;
  position: relative;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
}

@media (min-width: 992px) {
  .p-top__news-title-orange {
    width: 242px;
    height: auto;
    min-height: 209px;
    padding: 0;
  }
}
.p-top__news-title-orange .c-heading {
  margin: 0;
}

.p-top__news-title-orange .c-heading__jp {
  font-size: 35px;
}

.p-top__news-title-orange .c-heading__jp::before {
  background-image: url(../img/news-bg.png);
  top: 70%;
}

.p-top__news-black-bg {
  background-color: #000;
  width: 100%;
  margin-top: 5px;
  margin-left: 0px;
  padding: 40px 4%;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .p-top__news-black-bg {
    margin-top: 0;
    margin-left: 10px;
  }
}
.p-top__news-item {
  display: block;
  padding: 10px 0 10px;
}

.p-top__news-item .p-top__news-date,
.p-top__news-item .p-top__news-text {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}

@media (min-width: 992px) {
  .p-top__news-item {
    display: flex;
    align-items: center;
  }
}
.p-top__news-date {
  margin-right: 20px;
}

/***********************************************
p-top__service-section
************************************************/
.p-top__contents-cards {
  display: block;
  margin: 0 auto;
  width: 330px;
}

@media (min-width: 992px) {
  .p-top__contents-cards {
    width: auto;
    display: flex;
    justify-content: space-between;
  }
}
.p-top__card {
  width: 330px;
  height: 405px;
  background-image: url(../img/card1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  position: relative;
  flex-shrink: 0;
}

.p-top__card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 64px;
  width: 64px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background-color: #f06600;
}

.p-top__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 330px;
  height: 405px;
  clip-path: polygon(0 78%, 100% 67%, 100% 100%, 0% 100%);
  background-color: rgba(0, 0, 0, 0.4);
}

.p-top__card.--service {
  margin-top: 50px;
}

@media (min-width: 992px) {
  .p-top__card.--service {
    margin-top: 160px;
  }
}
.p-top__card.--company {
  margin: 80px 0;
  background-image: url(../img/card2.jpg);
}

.p-top__card.--recruit {
  margin: 0 0 90px;
  background-image: url(../img/card3.jpg);
}

@media (min-width: 992px) {
  .p-top__card.--recruit {
    margin: 0 0 160px;
  }
}
.p-top__card-title {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  z-index: 50;
  text-align: center;
}

.p-top__card-title h2 {
  font-size: 32px;
}

.p-top__card-title span {
  display: inline-block;
  font-size: 18px;
  padding: 5px 0 0;
}

.p-top__blog-card {
  width: 100%;
}

@media (min-width: 992px) {
  .p-top__blog-card {
    width: 32%;
    font-size: 14px;
    line-height: 1.4;
  }
}
.p-top__blog-cat {
  display: inline-block;
  text-align: center;
  min-width: 108px;
  margin-left: 10px;
  padding: 6px 10px;
  background-color: #f06600;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

@media (min-width: 992px) {
  .p-top__blog-cat {
    padding: 3px 10px;
  }
}
.p-top__blog-date {
  font-size: 14px;
  display: inline-block;
  font-weight: 700;
}

.p-top__news-upper-info {
  margin: 7px 0;
  flex-grow: 1;
  padding: 5px 0;
}

@media (min-width: 992px) {
  .p-top__news-upper-info {
    padding: 0;
  }
}
.p-top__blog-title {
  flex-grow: 1;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 30px;
}

.p-top__blog-cards {
  display: block;
}

@media (min-width: 992px) {
  .p-top__blog-cards {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
  }
}
.p-top__blog-featured-img {
  aspect-ratio: 100/54;
}

.p-top__blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.p-top__btn-blog-more {
  display: inline-block;
  padding: 15px 40px;
  background-color: #000;
  margin: 20px 0 15px;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 25px;
  letter-spacing: 0.48px;
  text-align: left;
  color: #fff;
}

@media (min-width: 992px) {
  .p-top__btn-blog-more {
    margin: 50px 0 50px;
  }
}
.p-top__access-address {
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.48px;
  text-align: center;
  color: #282828;
  margin: 10px 0 20px;
}

@media (min-width: 992px) {
  .p-top__access-address {
    margin: 30px 0 20px;
    font-size: 16px;
  }
}
.p-top__contact-bg {
  background-image: url(../img/contact-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  padding: 1px 0px 35px;
}

@media (min-width: 992px) {
  .p-top__contact-bg {
    padding: 1px 0px 65px;
  }
}
.p-top__contact-boxes {
  display: block;
  margin: 0px auto;
}

@media (min-width: 992px) {
  .p-top__contact-boxes {
    margin: 0;
    display: flex;
    justify-content: space-around;
  }
}
.p-top__contact-box {
  width: 330px;
  height: 160px;
  padding: 0 0 16px;
  background-color: rgba(255, 255, 255, 0.8);
  margin: 30px auto;
}

@media (min-width: 992px) {
  .p-top__contact-box {
    width: 38vw;
    max-width: 485px;
    margin: 0;
  }
}
.p-top__contact-orange {
  height: 53px;
  padding: 10px 0px;
  background-color: #f06600;
  font-size: 22px;
  font-weight: 700;
}

@media (min-width: 992px) {
  .p-top__contact-orange {
    width: 100%;
    max-width: 485px;
    margin: 0;
    font-size: 25px;
  }
}
.p-top__contact-content {
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.05px;
  text-align: center;
  color: #282828;
  position: relative;
  display: inline-block;
  padding: 0 0 0 40px;
}

.p-top__contact-content::before {
  content: "";
  background-image: url(../img/icon-tel.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  position: absolute;
  transform: translateY(-50%);
}

.p-top__contact-content.--tel {
  font-size: 36px;
  margin: 10px 0 0;
}

@media (min-width: 992px) {
  .p-top__contact-content.--tel {
    font-size: 38px;
  }
}
.p-top__contact-content.--tel::before {
  content: "";
  background-image: url(../img/icon-tel.png);
  top: 57%;
  left: 0;
  width: 30px;
  height: 28px;
}

@media (min-width: 992px) {
  .p-top__contact-content.--tel::before {
    width: 47px;
    height: 42px;
    top: 50%;
    left: -16px;
  }
}
.p-top__contact-content.--web {
  font-size: 22px;
  margin: 10px 0 0;
}

@media (min-width: 992px) {
  .p-top__contact-content.--web {
    font-size: 27px;
    margin: 20px 0 0;
  }
}
.p-top__contact-content.--web::before {
  content: "";
  background-image: url(../img/icon-pc.png);
  width: 50px;
  height: 36px;
  top: 50%;
  left: -16px;
  font-size: 29px;
}

@media (min-width: 992px) {
  .p-top__contact-content.--web::before {
    width: 50px;
    height: 36px;
  }
}
.p-top__contact-caption {
  font-size: 16px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.48px;
  text-align: center;
  color: #282828;
  display: inline-block;
}

/***************
*トップページ「　　」セクション
****************/
.p-top__mv {
  padding: 66px 20px 50px;
  padding: 50px 0 0px;
}

.bg {
  background-image: url(../img/bg.png), linear-gradient(180deg, #FFF3DF 0%, #FDF4E5 40%, #FFF8EC 80%);
  background-size: contain, cover;
  background-repeat: no-repeat;
  background-position: top;
}

@media (min-width: 992px) {
  .bg {
    z-index: -1;
    position: relative;
  }
  .p-top__mv {
    padding: 50px 0 0px;
  }
}
.p-top__mv h2 {
  font-size: 16px;
  display: block;
  padding: 10px 0 20px;
  color: #7C5E48;
  text-align: center;
  font-weight: 700;
}

@media (min-width: 992px) {
  .p-top__mv h2 {
    padding: 10px 0;
    font-size: 27px;
  }
}
.p-s1__sub-title {
  width: 200px;
  margin: 0 auto;
  position: relative;
}

.p-s1__title {
  width: 100%;
  margin: 0px auto 15px;
  position: relative;
  font-size: 30px;
}

@media (min-width: 576px) {
  .p-s1__title {
    width: 90%;
  }
}
@media (min-width: 768px) {
  .p-s1__title {
    width: 700px;
    margin: 0px auto 35px;
  }
}
@media (min-width: 992px) {
  .p-s1__title {
    width: 942px;
    margin: 10px auto 0;
  }
}
@media (min-width: 992px) {
  .p-s1__sub-title {
    width: 500px;
  }
}
.p-s1__photo-section {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

@media (min-width: 992px) {
  .p-s1__photo-section {
    margin: 42px 0 0;
  }
}
.p-s1__cross {
  width: 100px;
  height: 136px;
  position: relative;
}

.p-s1__cross::before,
.p-s1__cross::after {
  content: "";
  width: 2px;
  height: 50px;
  background-color: #7C5E48;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  transform: rotate(45deg);
}

.p-s1__cross::after {
  transform: rotate(-45deg);
}

@media (min-width: 992px) {
  .p-s1__cross {
    width: 100%;
    margin: 20px 0 70px;
    height: 70px;
  }
  .p-s1__cross::before,
  .p-s1__cross::after {
    content: "";
    width: 4px;
    height: 100px;
  }
}
.p-s1__names {
  display: flex;
  align-items: center;
  padding: 2% 0 0 0;
}

@media (min-width: 992px) {
  .p-s1__names {
    padding: 50px 20px;
  }
}
.p-s1__name {
  font-size: 18px;
  color: #432E1D;
  text-align: center;
  font-weight: 700;
}

.p-s1__name span {
  font-size: 12px;
  color: #808080;
  display: block;
  padding: 12px 0 6px 0;
  font-weight: 700;
}

@media (min-width: 992px) {
  .p-s1__name {
    font-size: 33px;
  }
  .p-s1__name span {
    font-size: 21px;
    padding: 0 0 6px 0;
  }
}
.p-s1__photo {
  position: relative;
  z-index: 10;
}

@media (min-width: 992px) {
  .p-s1__photo {
    max-width: 380px;
  }
}
/***************
*トップページ「日時」セクション
****************/
.p-s2__more-text {
  font-size: 14px;
  padding: 0px 7px 5px;
  border-bottom: 1px solid hsl(338, 71%, 66%);
  display: inline-block;
  color: hsl(338, 71%, 66%);
  margin: 10px 0 2px;
}

.p-s2__date-section {
  padding: 0px 0 45px;
}
@media (min-width: 992px) {
  .p-s2__date-section {
    padding: 0px 0 20px;
  }
}

.p-s2__date {
  position: relative;
  margin: 0px auto;
  line-height: 1.5;
  width: 700px;
  padding-top: 20px;
  line-height: 1.8;
  width: 250px;
  padding-left: 46px;
}

@media (min-width: 400px) {
  .p-s2__date {
    width: 80%;
    padding-top: 30px;
    padding-left: 60px;
    padding-bottom: 20px;
    font-size: 13px;
  }
  .p-s2__more-text {
    font-size: 22px;
    margin: 0 0 10px;
  }
}
@media (min-width: 576px) {
  .p-s2__date {
    padding-left: 90px;
  }
}
@media (min-width: 768px) {
  .p-s2__date {
    width: 520px;
    padding-top: 30px;
    padding-left: 70px;
    padding-bottom: 20px;
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  .p-s2__date {
    padding-top: 20px;
    padding-bottom: 0;
    font-size: 14px;
    padding-left: 180px;
    width: 800px;
    margin: 10px auto;
  }
}
.p-s2__date::before {
  content: "";
  width: 327px;
  height: 100px;
  background-image: url(../img/date1.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 20px;
  left: -37px;
  /*
          @include f.mq('sp') {
              width: 550px;
  height: 74px;
  left:-60px;
          }*/
}

@media (min-width: 400px) {
  .p-s2__date::before {
    width: 130%;
    left: -15%;
  }
}
@media (min-width: 768px) {
  .p-s2__date::before {
    width: 750px;
    height: 94px;
    left: -120px;
  }
}
@media (min-width: 992px) {
  .p-s2__date::before {
    width: 1100px;
    height: 100px;
    top: 0;
    left: 0px;
  }
}
.p-s2__date::after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../img/icon-memo.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 46px;
  left: -20px;
}

@media (min-width: 992px) {
  .p-s2__date::after {
    width: 70px;
    height: 80px;
    top: 0px;
    left: auto;
    right: -80px;
  }
}
.p-s2__apply-btn {
  width: 300px;
  height: 50px;
  padding-right: 20px;
  background-color: #B68740;
  margin: 40px auto 0px;
  font-size: 18px;
  padding: 14px 0 0 0;
  color: #fff;
  display: block;
  position: relative;
  z-index: 5;
}

.p-s2__apply-btn::after {
  content: "▶";
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.p-s2__apply-btn:hover {
  opacity: 1;
  transform: scale(1.03);
}

@media (min-width: 992px) {
  .p-s2__apply-btn {
    width: 500px;
    height: 70px;
    font-size: 24px;
    padding: 20px 0 0 0;
    margin: 70px auto 30px;
  }
}
.positionrelative {
  width: 300px;
  height: 50px;
  position: relative;
}

@media (min-width: 992px) {
  .positionrelative {
    width: 500px;
    height: 70px;
  }
}
.positionrelative.--padding {
  height: auto;
  margin: 30px auto 0px;
}

.btn-back {
  width: 300px;
  height: 50px;
  background-color: #9EA3AE;
  position: absolute;
  top: 5px;
  left: 20px;
  z-index: 1;
  opacity: 0.5;
}

@media (min-width: 992px) {
  .p-s2__texts {
    width: 70%;
    margin: 0 auto;
  }
}
.p-s2__date-info {
  width: 100%;
  margin: 10px auto 0;
}

@media (min-width: 992px) {
  .p-s2__date-info {
    width: 800px;
    margin: 55px auto 0;
  }
}
/***************
*トップページ「　　」セクション
****************/
.p-s3__pd-sp {
  margin-top: 0;
}

@media (min-width: 992px) {
  .p-s3__pd-sp {
    margin-top: 65px;
  }
}
.p-s3__yosiki-photo {
  width: 220px;
  height: 260px;
  margin: 30px auto;
  z-index: 5;
  position: relative;
}

.p-s3__yosiki-photo::before {
  z-index: -1;
  content: "";
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background-color: #FADFE9;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.p-s3__yosiki-photo.--2::before {
  z-index: -1;
  content: "";
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background-color: rgba(193, 191, 204, 0.8);
  position: absolute;
  top: auto;
  left: auto;
  bottom: -28%;
  right: -38%;
  transform: translate(-50%, -50%);
}

@media (min-width: 992px) {
  .p-s3__yosiki-photo {
    margin: 10px 45px 0 0;
    width: 220px;
    flex-shrink: 0;
  }
}
.p-s3__guest-section {
  background-color: #EDEEF0;
  padding: 1px 0;
  margin: -214px 0 0;
  line-height: 1.5;
}

.p-s3__text {
  font-size: 14px;
  line-height: 1.75;
  padding: 20px 0;
  width: 100%;
}

@media (min-width: 992px) {
  .p-s3__text {
    width: 92%;
    font-size: 15px;
  }
}
.p-s3__flex {
  display: block;
}

@media (min-width: 992px) {
  .p-s3__flex {
    display: flex;
    justify-content: center;
    margin: 80px auto 0;
  }
  .p-s3__flex.--2 {
    margin: 0 auto;
  }
}
.p-s3__name-yo {
  width: 130px;
}

@media (min-width: 992px) {
  .p-s3__name-yo {
    width: 180px;
    margin: 30px 0 0;
  }
}
.p-s3__name-ta-sp {
  display: block;
  border-bottom: 2px solid #5A5A5A;
  display: inline-block;
  font-weight: 700;
  font-size: 19px;
  margin-top: 20px;
  padding: 0 20px 10px 0;
  position: relative;
}

.p-s3__name-ta-sp::before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../img/pen.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 11px;
  right: -30px;
}

@media (min-width: 992px) {
  .p-s3__name-ta-sp {
    font-size: 26px;
  }
  .p-s3__name-ta-sp::before {
    content: "";
    width: 36px;
    height: 38px;
    background-image: url(../img/pen.png);
    background-size: contain;
    position: absolute;
    top: 15px;
    right: -35px;
  }
}
.p-s3__small {
  font-size: 10px;
}

@media (min-width: 992px) {
  .p-s3__small {
    font-size: 15px;
  }
}
.p-s3__name-ta-pc {
  display: none;
}

@media (min-width: 992px) {
  .p-s3__name-ta-pc {
    display: block;
    width: 500px;
  }
}
.p-s3__seciton-pd {
  margin: 70px 0 0px;
}

@media (min-width: 992px) {
  .p-s3__seciton-pd {
    margin: 21px 0 16px;
  }
}
.p-s3__seciton-pd-event {
  margin: 60px 0 20px;
}

@media (min-width: 992px) {
  .p-s3__seciton-pd-event {
    margin: 21px 0 70px;
  }
}
/***************
*トップページ「　　」セクション
****************/
.p-s4__event-section {
  background-color: #EDEEF0;
  padding: 1px 0 0px;
}

.p-s4__event-section table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

.p-s4__event-section th,
.p-s4__event-section td {
  background-color: #fff;
  padding: 20px 0;
  font-size: 16px;
  width: 100%;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .p-s4__event-section th,
  .p-s4__event-section td {
    font-size: 18px;
  }
}
.p-s4__event-section th {
  color: #7C5E48;
  font-weight: 700;
  text-align: center;
  padding: 10px 0;
  display: block;
  vertical-align: middle;
}

.p-s4__event-section th span {
  display: inline-block;
  width: 100%;
  padding: 10px 5px;
  background-color: #E5E5E5;
  letter-spacing: 0.1em;
}

@media (min-width: 992px) {
  .p-s4__event-section th {
    display: table-cell;
    vertical-align: middle;
    width: 30%;
  }
}
.p-s4__event-section td {
  display: block;
  margin: 0 0 10px;
  font-size: 13px;
  padding: 5px 20px 20px;
}

@media (min-width: 992px) {
  .p-s4__event-section td {
    display: table-cell;
    width: 70%;
    padding: 0;
    padding: 30px 40px;
    margin: 0;
  }
}
.p-s4__event-section tbody tr:nth-child(even) td,
.p-s4__event-section tbody tr:nth-child(even) th {
  background-color: #F7F7F9;
}

@media (min-width: 992px) {
  .p-s4__event-section table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
  }
}
a.p-s4__url {
  color: #B68740;
  display: block;
  margin: 10px 0;
  word-break: break-all;
}

.p-s4__url::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 11px;
  margin: 0 5px 0 0;
  clip-path: polygon(0 0, 0% 100%, 100% 48%);
  background: #B68740;
  position: relative;
}

/***************
*トップページ「　　」セクション
****************/
.rules-outer {
  border: 2px solid #A77958;
  padding: 5px;
  position: relative;
  z-index: 10;
}

.rules-inner {
  border: 1px solid #A77958;
  padding: 1.5em;
  position: relative;
}

.rules-outer::before,
.rules-outer::after,
.rules-inner::before,
.rules-inner::after {
  background: #fff8ed;
  border: 2px solid #A77958;
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 40px;
  position: absolute;
  width: 40px;
  z-index: -1;
}

.rules-outer::before {
  top: -20px;
  left: -20px;
  clip: rect(18px, auto, auto, 18px);
}

.rules-outer::after {
  top: -20px;
  right: -20px;
  clip: rect(18px, 22px, auto, auto);
}

.rules-inner::before {
  bottom: -25px;
  left: -25px;
  clip: rect(auto, auto, 23px, 17px);
}

.rules-inner::after {
  bottom: -25px;
  right: -25px;
  clip: rect(auto, 23px, 23px, auto);
}

.--nowrap {
  flex-wrap: nowrap;
  justify-content: center !important;
}

.c-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.lp2-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .lp2-flex {
    flex-wrap: nowrap;
    margin-top: 30px;
  }
}

.lp2-gift {
  text-align: left;
  color: #432E1D;
  font-size: 16px;
}
.lp2-gift h3 {
  font-size: 20px;
  text-align: center;
  line-height: 1.75;
  text-shadow: 4px 4px 4px #fff, -4px -4px 4px #fff, -4px 4px 4px #fff, 4px -4px 4px #fff, 4px 0 4px #fff, -4px 0 4px #fff, 0 4px 4px #fff, 0 -4px 4px #fff;
  font-weight: 700;
}
@media (min-width: 992px) {
  .lp2-gift h3 {
    margin: 30px;
    font-size: 30px;
  }
}
.lp2-gift .flex {
  display: block;
}
@media (min-width: 992px) {
  .lp2-gift .flex {
    display: flex;
  }
}
@media (min-width: 992px) {
  .lp2-gift {
    width: 80%;
    margin: 0px 30px 0;
  }
}

.gift-title {
  width: 100%;
  max-width: 500px;
  margin: -20px auto 0;
  padding-right: 40px;
}
@media (min-width: 992px) {
  .gift-title {
    margin: -40px auto 0;
  }
}

.gift-img {
  flex: 1;
  margin: 20px auto 0px;
  aspect-ratio: 100/73.6;
  padding: 10px 50px 0px;
  max-width: 300px;
}
.gift-img img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 992px) {
  .gift-img {
    padding: 20px 8px 30px 22px;
    margin: 0;
  }
}

.gift-text {
  flex: 2;
  padding: 20px;
}
.gift-text strong {
  padding: 10px 0 15px;
  font-size: 110%;
  font-weight: 700;
  display: inline-block;
  padding: 0px 0 10px;
}
.gift-text p {
  color: #432E1D;
  line-height: 1.5;
  font-size: 14px;
}
@media (min-width: 992px) {
  .gift-text {
    padding: 20px;
  }
  .gift-text strong {
    font-size: 120%;
    padding: 10px 0;
  }
  .gift-text p {
    font-size: 20px;
    line-height: 1.75;
  }
}

.link {
  color: #432E1D;
  display: block;
  position: relative;
  margin-bottom: 20px;
  padding: 10px 10px 10px 35px;
  background-color: #FDF4E5;
  word-break: break-all;
  margin-top: 10px;
}
.link::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/icon-link.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 10px;
}
.link.--2 {
  background-color: #F0E3D2;
}

.instractor-photo {
  width: 200px;
}

.flex-instractor {
  display: flex;
  margin: -200px 50px 0;
  justify-content: flex-start;
  z-index: 500;
  position: relative;
  align-items: center;
  background-color: #7c5e48;
}

.p-s1__title {
  text-align: center;
  font-size: 18px;
}
.p-s1__title em {
  font-size: max(4vw, 30px);
  display: block;
}
@media (min-width: 992px) {
  .p-s1__title {
    font-size: 20px;
  }
}

.instractor-name {
  font-size: 20px;
  padding: 20px;
  color: #fff3ea;
}
.instractor-name small {
  display: block;
  font-size: 80%;
}
.instractor-name em {
  font-size: 150%;
}
@media (min-width: 992px) {
  .instractor-name {
    font-size: 30px;
  }
}

.cross {
  position: relative;
  width: 100px;
}
.cross::before, .cross::after {
  content: "";
  /* 疑似要素に必須 */
  width: 100%;
  /* 幅いっぱいを指定 */
  height: 5px;
  /* 適度な太さを指定 */
  display: inline-block;
  /* 高さを持たせるためにinline-blockを指定 */
  background: #FFF8EC;
  /* 線の色を指定 */
  border-radius: 2px;
  /* 線の端を丸くしたいなら指定する */
  position: absolute;
  /* 相対位置に指定 */
  top: 50%;
  /* 表示位置を上から0pxに指定 */
  left: 0;
  rotate: 45deg;
  /* 45度回転 */
}
.cross::after {
  rotate: -45deg;
  /* 45度回転 */
}

.--1 {
  background-color: #FFF8EC;
}

.seminar-info {
  color: #7c5e48;
  padding: 0px 0;
  vertical-align: top;
}
.seminar-info th {
  width: 150px;
  font-weight: 700;
  padding: 10px 0px 5px;
  margin: 20px auto 0;
}
@media (min-width: 992px) {
  .seminar-info th {
    width: 20%;
    padding: 15px 30px 0px 0px;
    margin: 15px 0 0;
  }
      .seminar-info {
        padding: 0px 0 20px;
        margin: 0 auto;
        max-width: 800px;
    }
}
.seminar-info th,
.seminar-info td {
  font-size: 16px;
  display: block;
  line-height: 1.5;
  color: #7A5E48;
}
@media (min-width: 992px) {
  .seminar-info th,
  .seminar-info td {
    display: inline-block;
    vertical-align: top;
    font-size: 20px;
    margin: 30px 0 0 0;
  }
}
.seminar-info td.--second {
  margin-top: 7px;
}
.seminar-info .top {
  padding: 0px 20px;
  vertical-align: top;
}
.seminar-info strong {
  letter-spacing: 0.08em;
  font-size: 150%;
}
.seminar-info strong em {
  font-size: 180%;
  font-family: "Oswald", sans-serif;
  padding: 0 3px;
}
.seminar-info em {
  font-size: 160%;
  font-family: "Oswald", sans-serif;
  padding: 0 3px;
}
@media (min-width: 992px) {

  .seminar-info td {
    width: 630px;
  }
}

.--second {
  padding: 10px 0 0 0;
  margin-top: 0;
}

.bottom-bar {
  border-bottom: 1px solid #CAB4A3;
}
.bottom-bar .date {
  font-weight: 700;
}

.p-s1__photo::after {
  background-color: #fff;
}

.flame-outer {
  display: inline-block;
  padding: 5px;
  background: linear-gradient(135deg, transparent 15px, #A88953 0) top left, linear-gradient(-135deg, transparent 15px, #A88953 0) top right, linear-gradient(-45deg, transparent 15px, #A88953 0) bottom right, linear-gradient(45deg, transparent 15px, #A88953 0) bottom left;
  background-size: 51% 51%;
  background-repeat: no-repeat;
}

.flame {
  display: inline-block;
  background: linear-gradient(135deg, transparent 15px, #fff 0) top left, linear-gradient(-135deg, transparent 15px, #fff 0) top right, linear-gradient(-45deg, transparent 15px, #fff 0) bottom right, linear-gradient(45deg, transparent 15px, #fff 0) bottom left;
  background-size: 51% 51%;
  background-repeat: no-repeat;
}

.flex1 {
  flex: 1;
}

th.--second-pc {
  display: none;
}
@media (min-width: 992px) {
  th.--second-pc {
    display: inline-block;
  }
}

.--padding-y {
  margin: 10px 0 5px;
}

.p-s1__name small {
  font-size: 8px;
}

/***********************************************
ボタンがキラッと光る
************************************************/
/* ------------------------------------
ボタンの基本スタイル
------------------------------------*/
/* ボタン自体のスタイル */
.shine-button,
.shine-button2 {
  /* ボタンを光らせるために必要 */
  position: relative;
  /* ボタンの位置を基準にするため relative指定 */
  overflow: hidden;
  /* ボタンの外の領域は非表示 */
}

/* ------------------------------------
  ボタンの外側にボックス作成
  （疑似要素「before」を使う）
  ------------------------------------*/
.shine-button::before,
.shine-button2::before {
  content: "";
  /* 文字は表示しないので中身無しを指定 */
  position: absolute;
  /* ボタンの位置を基準に絶対値指定する */
  display: block;
  /* 形式はblock */
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  /* 背景色は透明から白になるグラデーション */
  width: 50px;
  /* 横幅 */
  height: 50px;
  /* 縦幅 */
  top: -60px;
  /* ボタン左上を基準に上へ60pxの位置 */
  left: -60px;
  /* ボタン左上を基準に左へ60pxの位置 */
  /* アニメーションの動作指定 */
  animation-name: shine-run;
  /* アニメーション名の指定 */
  animation-delay: 0s;
  /* アニメーションの開始時間指定 */
  animation-duration: 3s;
  /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in;
  /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
  /* アニメーションの無限繰り返しの指定 */
}

.shine-button2::before {
  background: linear-gradient(to right, rgba(255, 223, 64, 0), #fffdf3);
  z-index: 999;
}

/* ------------------------------------
  アニメーションのタイミングとボックスの
  拡大率、角度、透過率の指定
  ------------------------------------*/
@keyframes shine-run {
  0% {
    transform: scale(0) rotate(50deg);
    /* アニメ開始時は大きさ0、50度の傾き */
    opacity: 0;
    /* アニメ開始時は全透過 */
  }
  40% {
    transform: scale(1) rotate(50deg);
    /* 40%まで進む間に大きさを等倍に。傾きは50度のまま*/
    opacity: 1;
    /* 透過しない（しっかり表示される）ように1を設定 */
  }
  100% {
    transform: scale(250) rotate(50deg);
    /* 最後は元の大きさの250倍になるようにする。傾きは50度のまま*/
    opacity: 0;
    /* 全透過になるようにして、徐々に消えるような変化を付ける */
  }
}
.nishimura {
  width: 80%;
  padding-left: 30px;
}
@media (min-width: 992px) {
  .nishimura {
    width: 600px;
    padding-right: 100px;
    margin: 0 auto;
  }
}

.center {
  text-align: center;
}
@media (min-width: 992px) {
  .center {
    text-align: left;
  }
}
.center.--pd {
  padding: 10px 0 0;
}
.center.--btmpd {
  padding: 10px 0 15px;
}
@media (min-width: 992px) {
  .center.--btmpd {
    padding: 21px 0 0;
  }
}

.p-s2__apply-btn {
  /* width: 300px; */
  height: 71px;
  padding-right: 20px;
  background-color: #B68740;
  margin: 50px auto 20px;
  font-size: 18px;
  padding: 23px 0 0 0;
  color: #fff;
  display: block;
  position: relative;
  z-index: 5;
}
@media (min-width: 992px) {
  .p-s2__apply-btn {
    margin: 60px auto 0px;
  }
}

.btn-bg {
  position: relative;
}
.btn-bg::before {
  content: "";
  width: 92%;
  height: 68px;
  background-color: #c5c5c5;
  position: absolute;
  top: 10px;
  left: 17px;
  z-index: 1;
}
@media (min-width: 992px) {
  .btn-bg::before {
    width: 98%;
  }
}

.p-s2__texts {
  max-width: 500px;
}
@media (min-width: 992px) {
  .p-s2__texts {
    max-width: none;
  }
}
