@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  text-align: justify;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a:link {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:action {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

img {
  display: block;
  -webkit-backface-visibility: hidden;
  /*クロームの画像ぼけ防止*/
}

/* iOSのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/*
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Noto Serif JP', serif;
font-family: 'Oswald', sans-serif;
font-family: 'Sorts Mill Goudy', serif;
*/
/*ローディング*/
#loading {
  width: 100%;
  height: 100vh;
  padding: 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  -webkit-animation-name: loading;
          animation-name: loading;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media screen and (max-width: 1000px) {
  #loading {
    display: none;
  }
}
#loading p {
  width: 600px;
}
@media screen and (max-width: 1000px) {
  #loading p {
    width: 100%;
  }
}

@-webkit-keyframes loading {
  0% {
    opacity: 0;
    background-color: rgb(255, 255, 255);
    z-index: 5;
  }
  25% {
    opacity: 1;
    background-color: rgb(255, 255, 255);
    z-index: 5;
  }
  50% {
    opacity: 1;
    background-color: rgb(255, 255, 255);
    z-index: 5;
  }
  75% {
    opacity: 1;
    background-color: rgb(255, 255, 255);
    z-index: 5;
  }
  100% {
    opacity: 0;
    background-color: rgba(255, 255, 255, 0);
    z-index: -2;
  }
}

@keyframes loading {
  0% {
    opacity: 0;
    background-color: rgb(255, 255, 255);
    z-index: 5;
  }
  25% {
    opacity: 1;
    background-color: rgb(255, 255, 255);
    z-index: 5;
  }
  50% {
    opacity: 1;
    background-color: rgb(255, 255, 255);
    z-index: 5;
  }
  75% {
    opacity: 1;
    background-color: rgb(255, 255, 255);
    z-index: 5;
  }
  100% {
    opacity: 0;
    background-color: rgba(255, 255, 255, 0);
    z-index: -2;
  }
}
#container {
  opacity: 0;
}
@media screen and (max-width: 1000px) {
  #container {
    opacity: 1;
  }
}

#container.start {
  -webkit-animation-name: start;
          animation-name: start;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

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

@keyframes start {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*ヘッダー*/
header {
  width: 100%;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  -webkit-transition: 1s;
  transition: 1s;
  z-index: 3;
}
@media screen and (max-width: 1000px) {
  header {
    padding: 20px 10px;
  }
}
header #logo {
  width: 235px;
}
@media screen and (max-width: 1000px) {
  header #logo {
    width: 150px;
    margin: 0 auto;
  }
}
header #logo img {
  margin: 0 0 0 22px;
}
header nav {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  header nav {
    display: none;
  }
}
header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header nav ul li {
  padding: 0 25px;
}
header nav ul li a {
  color: #454a49;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header nav ul li a:hover {
  opacity: 0.5;
}
header #document {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header #document a {
  width: 175px;
  padding: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  display: block;
  border-radius: 10px;
  background-color: #74b5ac;
  -webkit-box-shadow: 3px 3px 5px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 5px 2px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1000px) {
  header #document a {
    display: none;
  }
}
header #document:hover {
  opacity: 0.5;
}
header #open {
  width: 45px;
  cursor: pointer;
}
header #open span {
  height: 3px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #454a49;
}
header #open span:nth-child(1) {
  width: 100%;
  margin: 0 0 10px 0;
}
header #open span:nth-child(2) {
  width: 50%;
  margin: 0 0 10px 50%;
}
header #open span:nth-child(3) {
  width: 25%;
  margin: 0 0 10px 75%;
}
header #open p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header #open p small {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  line-height: 1;
}
header #open:hover span:nth-child(1) {
  width: 25%;
  margin: 0 75% 10px 0;
}
header #open:hover span:nth-child(2) {
  width: 50%;
  margin: 0 50% 10px 0;
}
header #open:hover span:nth-child(3) {
  width: 100%;
  margin: 0 0 10px 0;
}

header.sticky {
  background-color: #fff;
}

/*ドロワーメニュー*/
#drawer {
  width: 100%;
  height: 100vh;
  position: fixed;
  display: none;
  z-index: 4;
}
#drawer #menu {
  width: 390px;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  position: fixed;
  right: 0;
  z-index: 4;
}
@media screen and (max-width: 1000px) {
  #drawer #menu {
    width: 80%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
#drawer #menu nav {
  padding: 20px 0 0 0;
  background-color: #bcad8a;
}
#drawer #menu nav #close {
  width: 45px;
  margin: 0 0 30px 40px;
  cursor: pointer;
}
#drawer #menu nav #close span {
  height: 3px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
}
#drawer #menu nav #close span:nth-child(1) {
  width: 100%;
  margin: 0 0 10px 0;
}
#drawer #menu nav #close span:nth-child(2) {
  width: 50%;
  margin: 0 50% 10px 0;
}
#drawer #menu nav #close span:nth-child(3) {
  width: 25%;
  margin: 0 75% 10px 0;
}
#drawer #menu nav #close p {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#drawer #menu nav #close p small {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  line-height: 1;
}
#drawer #menu nav #close:hover span:nth-child(1) {
  width: 25%;
  margin: 0 0 10px 75%;
}
#drawer #menu nav #close:hover span:nth-child(2) {
  width: 50%;
  margin: 0 0 10px 50%;
}
#drawer #menu nav #close:hover span:nth-child(3) {
  width: 100%;
  margin: 0 0 10px 0;
}
#drawer #menu ul li {
  padding: 0 0 25px 0;
}
@media screen and (max-width: 1000px) {
  #drawer #menu ul li {
    padding: 0 0 15px 0;
  }
}
#drawer #menu ul li a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  padding: 0 0 0 45px;
  background-image: url("../../images/icon_navbar.jpg");
  background-size: 30px 5px;
  background-position: left center;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#drawer #menu ul li a:hover {
  opacity: 0.5;
}
#drawer #menu #button {
  padding: 30px 0 0 0;
}
@media screen and (max-width: 1000px) {
  #drawer #menu #button {
    padding: 10px 0 0 0;
  }
}
#drawer #menu #button a {
  width: 250px;
  padding: 20px 0;
  margin: 0 auto 20px auto;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  #drawer #menu #button a {
    margin: 0 auto 10px auto;
  }
}
#drawer #menu #button a:hover {
  opacity: 0.5;
}
#drawer #menu #button a:first-child {
  background-color: #74b5ac;
}
#drawer #menu #button a:last-child {
  background-color: #eea097;
}
#drawer #drawer_bg {
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
}

#drawer.open {
  display: block;
  -webkit-animation-name: open;
          animation-name: open;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

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

@keyframes open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*トップへ戻る*/
#return {
  position: fixed;
  bottom: 20px;
  right: 10px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  #return {
    bottom: 40px;
  }
}

#return.active {
  opacity: 1;
  z-index: 2;
}

/*来社予約その1*/
#booking_1 {
  width: 320px;
  padding: 15px 25px;
  position: fixed;
  right: 0;
  bottom: 15%;
  background-color: #fff;
  -webkit-box-shadow: 3px 3px 10px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 10px 5px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  #booking_1 {
    display: none;
  }
}
#booking_1 p {
  position: absolute;
  right: 10px;
  top: -35px;
  cursor: pointer;
  -webkit-transition: 1s;
  transition: 1s;
}
#booking_1 p:hover {
  opacity: 0.5;
}
#booking_1 div {
  margin: 0 0 10px 0;
}
#booking_1 a {
  display: block;
  padding: 10px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background-color: #eea097;
  -webkit-transition: 1s;
  transition: 1s;
}
#booking_1 a:hover {
  opacity: 0.5;
}

#booking_1.hide {
  -webkit-animation-name: hide;
          animation-name: hide;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes hide {
  0% {
    opacity: 1;
    z-index: 2;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}

@keyframes hide {
  0% {
    opacity: 1;
    z-index: 2;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
/*来社予約その2*/
#booking_2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  #booking_2 {
    z-index: 2;
  }
}
#booking_2 a {
  width: 50%;
  padding: 15px 0;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
#booking_2 a:first-child {
  background-color: #74b5ac;
}
#booking_2 a:last-child {
  background-color: #eea097;
}

#booking_2.active {
  opacity: 0;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  #booking_2.active {
    opacity: 1;
    z-index: 2;
  }
}

/*ヒーローヘッダー*/
#hero {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url("../../images/hero_desktop.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
#hero #tagline {
  color: #fff;
  text-align: center;
}
#hero #tagline h1 {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 180px;
  line-height: 0.9;
  opacity: 0.7;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 1000px) {
  #hero #tagline h1 {
    font-size: 120px;
  }
}
@media screen and (max-width: 1000px) {
  #hero #tagline h1 {
    font-size: 75px;
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 1000px) {
  #hero #tagline span {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  #hero #tagline br {
    display: none;
  }
}
#hero #tagline p {
  font-weight: 500;
  font-size: 18px;
}
#hero #scrolldown {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 0;
}
#hero #scrolldown span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
}
#hero #scrolldown::after {
  content: "";
  position: absolute;
  top: 20px;
  width: 1px;
  height: 100px;
  background: #fff;
  -webkit-animation: move 1.5s ease-in-out infinite;
          animation: move 1.5s ease-in-out infinite;
  opacity: 0;
}
@-webkit-keyframes move {
  0% {
    height: 0;
    top: 20px;
    opacity: 0;
  }
  30% {
    height: 50px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 90px;
    opacity: 0;
  }
}
@keyframes move {
  0% {
    height: 0;
    top: 20px;
    opacity: 0;
  }
  30% {
    height: 50px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 90px;
    opacity: 0;
  }
}

/*イントロダクション*/
#intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 120px 0;
}
@media screen and (max-width: 1000px) {
  #intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 0 100px 0;
  }
}
#intro div {
  width: 50%;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #intro div {
    width: 100%;
  }
}
#intro div.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#intro div:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #73716d;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #intro div:last-child {
    padding: 50px 20px 0 20px;
  }
}
#intro div:last-child h2 {
  width: 60%;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 1000px) {
  #intro div:last-child h2 {
    width: 100%;
    font-size: 24px;
    margin: 0 0 15px 0;
  }
}
#intro div:last-child p {
  width: 60%;
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  #intro div:last-child p {
    width: 100%;
    font-size: 16px;
  }
}
#intro div:last-child.started {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*共通見出し*/
.headline {
  margin: 0 0 80px 0;
  color: #73716d;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  .headline {
    margin: 0 0 40px 0;
  }
}
.headline h2 {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 80px;
  text-align: center;
  line-height: 1;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 1000px) {
  .headline h2 {
    font-size: 50px;
  }
}
.headline p {
  font-size: 18px !important;
  font-weight: 500 !important;
  text-align: center !important;
  line-height: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
}
@media screen and (max-width: 1000px) {
  .headline p {
    line-height: 1.5;
  }
}

.headline.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.headline.started p {
  -webkit-transition: 1s !important;
  transition: 1s !important;
  opacity: 1 !important;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}

/*サービス*/
#content_1 {
  margin: 0 0 100px 0;
  color: #73716d;
}
#content_1 h3 {
  font-size: 28px;
  font-weight: 500 !important;
  text-align: center;
  margin: 0 0 30px 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #content_1 h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
  }
}
@media screen and (max-width: 1000px) {
  #content_1 h3 span {
    display: block;
  }
}
#content_1 h3.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#content_1 p {
  font-size: 18px;
  text-align: center;
  line-height: 2;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #content_1 p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  #content_1 p span {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  #content_1 p br {
    display: none;
  }
}
#content_1 p.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*マイスター*/
#content_2 {
  margin: 0 0 120px 0;
}
@media screen and (max-width: 1000px) {
  #content_2 {
    margin: 0 0 100px 0;
  }
}
@media screen and (max-width: 1000px) {
  #content_2 section:nth-child(odd) h2 {
    text-align: right;
    padding: 0 20px 0 0;
  }
}
@media screen and (max-width: 1000px) {
  #content_2 section:nth-child(even) h2 {
    text-align: left;
    padding: 0 0 0 20px;
  }
}
@media screen and (max-width: 1000px) {
  #content_2 section:nth-child(3) h2 {
    margin: 0 0 135px 0;
    position: relative;
    z-index: 2;
  }
}
#content_2 h2 {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 80px;
  color: #bcad8a;
  line-height: 1;
  text-align: center;
  margin: 0 0 -40px 0;
  position: relative;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #content_2 h2 {
    font-size: 40px;
    margin: 0 0 -20px 0;
  }
}
#content_2 h2.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#content_2 h3 {
  font-size: 25px;
  font-weight: 500;
  margin: 0 0 20px 0;
  color: #73716d;
}
@media screen and (max-width: 1000px) {
  #content_2 h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
  }
}
#content_2 p {
  font-size: 18px;
  color: #73716d;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  #content_2 p {
    font-size: 16px;
  }
}
#content_2 #content_2_1 {
  width: 70%;
  margin: 0 auto 100px auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
@media screen and (max-width: 1000px) {
  #content_2 #content_2_1 {
    width: 100%;
    margin: 0 auto 170px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#content_2 #content_2_1 div:first-child {
  max-width: 100%;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #content_2 #content_2_1 div:first-child {
    max-width: 70%;
  }
}
#content_2 #content_2_1 div:first-child.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#content_2 #content_2_1 div:last-child {
  width: 100%;
  padding: 90px 0 0 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #content_2 #content_2_1 div:last-child {
    width: 90%;
    padding: 60px 0 0 0;
    margin: 0 auto;
  }
}
#content_2 #content_2_1 div:last-child.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#content_2 #content_2_2 {
  width: 100%;
  padding: 0 10% 0 15%;
  margin: 0 0 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1000px) {
  #content_2 #content_2_2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 0;
    margin: 0 0 50px 0;
  }
}
#content_2 #content_2_2 div:first-child {
  width: 78%;
  padding: 90px 0 0 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #content_2 #content_2_2 div:first-child {
    width: 90%;
    padding: 0;
    margin: 0 auto;
  }
}
#content_2 #content_2_2 div:first-child p {
  width: 87%;
}
@media screen and (max-width: 1000px) {
  #content_2 #content_2_2 div:first-child p {
    width: 100%;
  }
}
#content_2 #content_2_2 div:first-child.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#content_2 #content_2_2 div:last-child {
  width: 100%;
  position: relative;
}
#content_2 #content_2_2 div:last-child div:first-child {
  width: 50%;
  padding: 0;
  position: absolute;
  right: -80px;
  top: -270px;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #content_2 #content_2_2 div:last-child div:first-child {
    width: 35%;
    right: 0;
    top: -140px;
  }
}
#content_2 #content_2_2 div:last-child div:first-child.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#content_2 #content_2_2 div:last-child div:last-child {
  width: 100%;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #content_2 #content_2_2 div:last-child div:last-child {
    padding: 0 0 0 20%;
    margin: 0 0 60px 0;
  }
}
#content_2 #content_2_2 div:last-child div:last-child.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#content_2 #content_2_3 {
  width: 100%;
  padding: 0 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  #content_2 #content_2_3 {
    padding: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#content_2 #content_2_3 div:first-child {
  width: 55%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  #content_2 #content_2_3 div:first-child {
    width: 100%;
  }
}
#content_2 #content_2_3 div:first-child div:first-child {
  width: 45%;
  position: absolute;
  left: -120px;
  top: -220px;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #content_2 #content_2_3 div:first-child div:first-child {
    left: 20px;
    top: -160px;
  }
}
#content_2 #content_2_3 div:first-child div:first-child.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  z-index: 1;
}
#content_2 #content_2_3 div:first-child div:last-child {
  width: 100%;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #content_2 #content_2_3 div:first-child div:last-child {
    padding: 0 0 0 20%;
  }
}
#content_2 #content_2_3 div:first-child div:last-child.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#content_2 #content_2_3 div:last-child {
  width: 40%;
}
@media screen and (max-width: 1000px) {
  #content_2 #content_2_3 div:last-child {
    width: 90%;
    margin: 0 auto;
  }
}
#content_2 #content_2_3 div:last-child div {
  width: 100%;
  padding: 80px 0 0 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #content_2 #content_2_3 div:last-child div {
    padding: 60px 0 0 0;
  }
}
#content_2 #content_2_3 div:last-child div.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*来社予約*/
.content_3 {
  padding: 110px 25px;
  background-color: #faf7f1;
  opacity: 0;
}
@media screen and (max-width: 1000px) {
  .content_3 {
    padding: 80px 25px;
  }
}
.content_3 .content_3_detail {
  width: 70%;
  margin: 0 auto 75px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .content_3 .content_3_detail {
    width: 100%;
    margin: 0 auto 55px auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.content_3 .content_3_detail div:first-child {
  width: 44%;
  padding: 60px 0 0 0;
  color: #73716d;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  .content_3 .content_3_detail div:first-child {
    width: 100%;
    padding: 0;
    margin: 0 0 50px 0;
  }
}
.content_3 .content_3_detail div:first-child h3 {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 1000px) {
  .content_3 .content_3_detail div:first-child h3 {
    font-size: 24px;
  }
}
.content_3 .content_3_detail div:first-child p {
  font-size: 18px;
  line-height: 2;
  margin: 0 0 70px 0;
}
@media screen and (max-width: 1000px) {
  .content_3 .content_3_detail div:first-child p {
    font-size: 16px;
    margin: 0 0 50px 0;
  }
}
.content_3 .content_3_detail div:first-child dl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 2;
  margin: 0 0 30px 0;
}
.content_3 .content_3_detail div:first-child dl dt {
  font-weight: 700;
  color: #cab585;
}
.content_3 .content_3_detail div:first-child dl:last-child {
  margin: 0;
}
.content_3 .content_3_detail div:first-child .traffic {
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .content_3 .content_3_detail div:first-child .traffic {
    white-space: normal;
  }
}
.content_3 .content_3_detail div:first-child.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.content_3 .content_3_detail div:last-child {
  width: 41%;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  .content_3 .content_3_detail div:last-child {
    width: 100%;
  }
}
.content_3 .content_3_detail div:last-child.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.content_3 .booking_button {
  width: 60%;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 45px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 45px;
     -moz-column-gap: 45px;
          column-gap: 45px;
}
@media screen and (max-width: 1000px) {
  .content_3 .booking_button {
    width: 100%;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 30px;
  }
}
.content_3 .booking_button a {
  display: block;
  padding: 25px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1;
  border-radius: 15px;
  -webkit-box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  .content_3 .booking_button a {
    padding: 20px 0;
    font-size: 18px;
  }
}
.content_3 .booking_button a:first-child {
  background-color: #74b5ac;
}
.content_3 .booking_button a:last-child {
  background-color: #eea097;
}
.content_3 .booking_button a:hover {
  opacity: 0.5;
}

.content_3.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
}

/*スタイル*/
#content_4 {
  padding: 110px 25px;
  background-image: url("../../images/img_content_4_1.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0;
}
@media screen and (max-width: 1000px) {
  #content_4 {
    padding: 80px 25px;
  }
}
#content_4 p {
  font-size: 28px;
  font-weight: 500;
  color: #73716d;
  text-align: center;
  margin: 0 0 100px 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #content_4 p {
    font-size: 24px;
    margin: 0 0 60px 0;
  }
}
@media screen and (max-width: 1000px) {
  #content_4 p span {
    display: block;
  }
}
#content_4 p.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#content_4 article {
  width: 80%;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  row-gap: 75px;
}
@media screen and (max-width: 1000px) {
  #content_4 article {
    width: 100%;
    row-gap: 50px;
  }
}
#content_4 article section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #content_4 article section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#content_4 article section div:first-child {
  width: 55%;
}
@media screen and (max-width: 1000px) {
  #content_4 article section div:first-child {
    width: 100%;
    margin: 0 0 30px 0;
  }
}
#content_4 article section div:last-child {
  width: 40%;
}
@media screen and (max-width: 1000px) {
  #content_4 article section div:last-child {
    width: 100%;
  }
}
#content_4 article section div:last-child p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  line-height: 1;
  padding: 10px 15px;
  margin: 0 0 20px 0;
  background-color: #cab585;
}
@media screen and (max-width: 1000px) {
  #content_4 article section div:last-child p {
    font-size: 18px;
  }
}
#content_4 article section div:last-child h3 {
  font-size: 28px;
  font-weight: 500 !important;
  color: #73716d;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 1000px) {
  #content_4 article section div:last-child h3 {
    font-size: 24px;
  }
}
#content_4 article section div:last-child span {
  font-size: 18px;
  color: #73716d;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  #content_4 article section div:last-child span {
    font-size: 16px;
  }
}
#content_4 article section.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#content_4 article section.started p {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

#content_4.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
}

/*ご婚約実績*/
#content_5 {
  padding: 110px 25px;
  background-color: #faf7f1;
  opacity: 0;
}
@media screen and (max-width: 1000px) {
  #content_5 {
    padding: 80px 25px;
  }
}
#content_5 #marriage_list {
  width: 70%;
  padding: 50px 40px;
  margin: 0 auto 110px auto;
  border: 3px solid #cab585;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #content_5 #marriage_list {
    width: 100%;
    padding: 20px 10px;
    margin: 0 auto 80px auto;
  }
}
#content_5 #marriage_list h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #73716d;
  line-height: 1;
  padding: 10px 0 10px 20px;
  margin: 0 0 25px 0;
  border-left: 8px solid #cab585;
}
#content_5 #marriage_list p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #73716d;
  margin: 0 0 50px 0;
}
@media screen and (max-width: 1000px) {
  #content_5 #marriage_list p {
    margin: 0 0 20px 0;
  }
}
#content_5 #marriage_list article div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#content_5 #marriage_list article div p {
  width: 16.66%;
  padding: 10px 2px;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #73716d;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  #content_5 #marriage_list article div p {
    font-size: 10px;
    padding: 5px 2px;
  }
}
#content_5 #marriage_list article div p:nth-child(3) {
  color: #2db3c1;
}
#content_5 #marriage_list article div p:nth-child(4) {
  color: #f48799;
}
#content_5 #marriage_list article div:nth-child(even) {
  background-color: #efefef;
}
#content_5 #marriage_list article div:first-child p {
  font-size: 18px;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  #content_5 #marriage_list article div:first-child p {
    font-size: 12px;
  }
}
#content_5 #marriage_list article div:first-child p:nth-child(-n+4) {
  background-color: #2db3c1;
}
#content_5 #marriage_list article div:first-child p:nth-of-type(n+4) {
  background-color: #f48799;
}
#content_5 #marriage_list.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#content_5 #slider_1 {
  width: 50%;
  margin: 0 auto;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #content_5 #slider_1 {
    width: 100%;
  }
}
#content_5 #slider_1 li h3 {
  font-size: 24px;
  font-weight: 500;
  color: #73716d;
  margin: 0 0 30px 0;
}
#content_5 #slider_1 li p {
  font-size: 18px;
  color: #73716d;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  #content_5 #slider_1 li p {
    font-size: 16px;
  }
}
#content_5 #slider_1.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

#content_5.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
}

/*活動と結婚を語るOBの声*/
#content_6 {
  width: 80%;
  padding: 120px 25px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  #content_6 {
    width: 100%;
    padding: 80px 25px;
  }
}
#content_6 #voice p {
  line-height: 1.5 !important;
}
#content_6 #voice p br {
  display: none;
}
@media screen and (max-width: 1000px) {
  #content_6 #voice p br {
    display: block;
  }
}
#content_6 #message {
  font-size: 18px;
  color: #73716d;
  text-align: center;
  line-height: 2;
  margin: 0 0 70px 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #content_6 #message {
    margin: 0 0 150px 0;
  }
}
@media screen and (max-width: 1000px) {
  #content_6 #message br {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  #content_6 #message span {
    display: block;
  }
}
#content_6 #message.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#content_6 #slider_2 {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
#content_6 #slider_2 li {
  color: #73716d;
  margin: 0 0 10px 0;
  border-radius: 15px;
  -webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.2);
}
#content_6 #slider_2 li div {
  margin: 0 0 30px 0;
}
#content_6 #slider_2 li div img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
#content_6 #slider_2 li h3 {
  font-size: 22px;
  padding: 0 30px 15px 30px;
}
#content_6 #slider_2 li p {
  font-size: 18px;
  text-align: justify;
  line-height: 2;
  padding: 0 30px 30px 30px;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  #content_6 #slider_2 li p {
    font-size: 16px;
  }
}
#content_6 #slider_2.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#content_6 a {
  width: 560px;
  padding: 25px 0;
  margin: 0 auto;
  display: block;
  border-radius: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background-color: #cab585;
  -webkit-box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  #content_6 a {
    width: auto;
    font-size: 16px;
  }
}
#content_6 a:hover {
  opacity: 0.5;
}

/*入会資格*/
#content_7 {
  padding: 120px 25px 1px 25px;
  background-color: #faf7f1;
}
@media screen and (max-width: 1000px) {
  #content_7 {
    padding: 80px 25px 1px 25px;
  }
}
#content_7 .pricelist {
  width: 70%;
  padding: 55px 50px 20px 50px;
  margin: 0 auto 110px auto;
  border: 3px solid #cab585;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #content_7 .pricelist {
    width: 100%;
    padding: 30px 10px 10px 10px;
    margin: 0 auto 80px auto;
  }
}
#content_7 .pricelist p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #73716d;
  line-height: 1.8;
  margin: 0 0 20px 0;
}
#content_7 .pricelist.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#content_7 h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  color: #73716d;
  line-height: 1;
  padding: 10px 0 10px 14px;
  margin: 0 0 30px 0;
  border-left: 8px solid #cab585;
}
#content_7 .table {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #73716d;
  margin: 0 0 30px 0;
  border-top: 1px solid #cab585;
}
#content_7 .table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #cab585;
}
@media screen and (max-width: 1000px) {
  #content_7 .table dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#content_7 .table dl dt {
  width: 30%;
  padding: 10px 0 10px 30px;
  background-color: #f9f7ed;
}
@media screen and (max-width: 1000px) {
  #content_7 .table dl dt {
    width: 100%;
    border-bottom: 1px solid #cab585;
  }
}
#content_7 .table dl dd {
  width: 70%;
  padding: 10px 0 10px 30px;
}
@media screen and (max-width: 1000px) {
  #content_7 .table dl dd {
    width: 100%;
  }
}
#content_7 .table dl dd .price {
  width: 100%;
}
#content_7 .table dl dd .price dl {
  border-bottom: none;
}
#content_7 .table dl dd .price dl dt {
  width: 20%;
  padding: 0;
  background-color: transparent;
}
@media screen and (max-width: 1000px) {
  #content_7 .table dl dd .price dl dt {
    width: 100%;
    border-bottom: none;
  }
}
#content_7 .table dl dd .price dl dd {
  width: 80%;
  padding: 0 0 0 1em;
  text-indent: -1em;
}
@media screen and (max-width: 1000px) {
  #content_7 .table dl dd .price dl dd {
    width: 100%;
  }
}
#content_7 .table ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #cab585;
}
@media screen and (max-width: 1000px) {
  #content_7 .table ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#content_7 .table ul li small {
  font-size: 16px;
  line-height: 1;
  padding: 10px 30px;
  background-color: #f9f7ed;
}
@media screen and (max-width: 1000px) {
  #content_7 .table ul li small {
    width: 100%;
    border-bottom: 1px solid #cab585;
  }
}
#content_7 .table ul li p {
  line-height: 1;
  padding: 10px 20px;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  #content_7 .table ul li p {
    line-height: 1.5;
  }
}
#content_7 span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #73716d;
  margin: 0 0 30px 0;
  display: block;
}

#content_7_2 {
  padding: 110px 25px;
  background-image: url("../../images/img_content_7_2.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0;
}
@media screen and (max-width: 1000px) {
  #content_7_2 {
    padding: 80px 25px;
  }
}
#content_7_2 #summary {
  font-size: 18px;
  color: #73716d;
  text-align: center;
  line-height: 2;
  margin: 0 0 70px 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #content_7_2 #summary span {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  #content_7_2 #summary br {
    display: none;
  }
}
#content_7_2 #summary.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#content_7_2 #service_list {
  width: 80%;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 55px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 55px;
  grid-row-gap: 55px;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media screen and (max-width: 1000px) {
  #content_7_2 #service_list {
    width: 100%;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 55px;
  }
}
#content_7_2 #service_list div {
  padding: 5px;
  border: 4px solid #cab585;
  background-color: rgba(255, 255, 255, 0.6);
}
#content_7_2 #service_list div div {
  color: #73716d;
  text-align: center;
  border: 1px solid #cab585;
}
#content_7_2 #service_list div div h3 {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 68px;
  line-height: 1;
  padding: 40px 0 5px 0;
}
@media screen and (max-width: 1000px) {
  #content_7_2 #service_list div div h3 {
    font-size: 48px;
  }
}
#content_7_2 #service_list div div small {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 20px 0;
  display: block;
}
@media screen and (max-width: 1000px) {
  #content_7_2 #service_list div div small {
    font-size: 16px;
  }
}
#content_7_2 #service_list div div span {
  font-size: 16px;
  margin: 0 0 10px 0;
  display: block;
}
@media screen and (max-width: 1000px) {
  #content_7_2 #service_list div div span {
    font-size: 14px;
  }
}
#content_7_2 #service_list div div p {
  font-size: 22px;
  font-weight: 700;
  color: #cab585;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 1000px) {
  #content_7_2 #service_list div div p {
    font-size: 18px;
  }
}
#content_7_2 #service_list div div br {
  display: none;
}
@media screen and (max-width: 1000px) {
  #content_7_2 #service_list div div br {
    display: block;
  }
}
#content_7_2 #service_list.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

#content_7_2.started {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
}

/*フッター*/
footer {
  padding: 100px 0 0 0;
  border-top: 5px solid #cab585;
}
@media screen and (max-width: 1000px) {
  footer {
    padding: 50px 0 55px 0;
  }
}
footer h3 {
  width: 236px;
  margin: 0 auto 100px auto;
}
@media screen and (max-width: 1000px) {
  footer h3 {
    margin: 0 auto 50px auto;
  }
}
footer nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1000px) {
  footer nav {
    display: none;
  }
}
footer nav ul {
  margin: 0 0 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer nav ul li a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #454a49;
  line-height: 1;
  margin: 0 35px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer nav ul li a:hover {
  opacity: 0.5;
}
footer p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 10px 0;
  background-color: #cab585;
}

/*ie11*/
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop,
#loading {
    display: none;
  }

  *::-ms-backdrop,
#container {
    opacity: 1;
  }

  *::-ms-backdrop,
header {
    background-color: #fff;
  }

  *::-ms-backdrop,
#open {
    display: none;
  }

  *::-ms-backdrop,
#booking_1 {
    display: none;
  }

  *::-ms-backdrop,
#content_2 #content_2_1 div:first-child {
    display: none;
  }

  *::-ms-backdrop,
#content_2 #content_2_2 div:last-child div:first-child {
    display: none;
  }

  *::-ms-backdrop,
#content_2 #content_2_3 div:first-child div:first-child {
    display: none;
  }
}
/*--------------------------------------------------------------------------------
　　　　　追記202210
--------------------------------------------------------------------------------*/
.page {
  color: #73716d;
  background-color: #faf7f1;
}

.page #container {
  opacity: 1;
}

.page #booking_2 {
  display: none;
}

@media screen and (max-width: 1000px) {
  .page footer {
    padding-bottom: 0;
  }
}

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

.c-ttl_page_main {
  color: #cab585;
  text-align: center;
  margin-bottom: 75px;
}
@media screen and (max-width: 1000px) {
  .c-ttl_page_main {
    margin-bottom: 35px;
  }
}
.c-ttl_page_main .-jp {
  font-size: 60px;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .c-ttl_page_main .-jp {
    font-size: 40px;
  }
}
.c-ttl_page_main .-en {
  font-family: serif;
  display: block;
  font-size: 30px;
  line-height: 1;
  margin-top: 26px;
  font-family: "Sorts Mill Goudy", serif;
}
@media screen and (max-width: 1000px) {
  .c-ttl_page_main .-en {
    font-size: 20px;
    margin-top: 16px;
  }
}
.c-ttl_page_base {
  border-left: 8px solid #cab585;
  font-size: 24px;
  line-height: 1.3;
  padding: 6px 0 7px 24px;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .c-ttl_page_base {
    border-left: 6px solid #cab585;
    font-size: 25px;
    margin-bottom: 35px;
  }
}

.p-page_main {
  padding-bottom: 120px;
  padding-top: 230px;
}
@media screen and (max-width: 1000px) {
  .p-page_main {
    padding-bottom: 70px;
    padding-top: 157px;
  }
}
.p-page_cont {
  width: 100%;
  max-width: 1130px;
  margin: auto;
  padding-left: 67px;
  padding-right: 67px;
}
@media screen and (max-width: 1000px) {
  .p-page_cont {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-page_head .u-ta_center {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 34px;
}
@media screen and (max-width: 1000px) {
  .p-page_head .u-ta_center {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.p-page_info {
  border: 3px solid #cab585;
  background-color: #fff;
  padding: 52px 50px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .p-page_info {
    margin-bottom: 35px;
    padding: 45px 32px;
  }
}
.p-page_info_inner {
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
}
.p-page_info_inner p:not(:last-child) {
  margin-bottom: 1em;
}
.p-page_form {
  font-family: "Noto Sans JP", sans-serif;
}
.p-page_form_flow {
  margin-bottom: 58px;
}
@media screen and (max-width: 1000px) {
  .p-page_form_flow {
    margin-bottom: 32px;
  }
}
.p-page_form_flow_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #b5b5b6;
}
.p-page_form_flow_item {
  width: 33.33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 44px;
  position: relative;
  background-color: #fff;
}
.p-page_form_flow_item::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -1px;
  left: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 23px 0 23px 20px;
  border-color: transparent transparent transparent #b5b5b6;
  z-index: 1;
}
.p-page_form_flow_item::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 0 22px 19px;
  border-color: transparent transparent transparent #fff;
  z-index: 2;
}
.p-page_form_flow_item:last-child::before, .p-page_form_flow_item:last-child::after {
  content: none;
}
.p-page_form_flow_item.-active {
  background-color: #cab585;
  color: #fff;
  font-size: 16px;
}
.p-page_form_flow_item.-active::before {
  border-color: transparent transparent transparent #cab585;
}
.p-page_form_flow_item.-active::after {
  border-color: transparent transparent transparent #cab585;
}
.p-page_form_flow_item p {
  font-family: "Noto Sans JP", sans-serif;
}
.p-page_form_top {
  margin-bottom: 54px;
}
@media screen and (max-width: 1000px) {
  .p-page_form_top {
    margin-bottom: 32px;
  }
}
.p-page_form_top p {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
}
.p-page_form input {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .p-page_form input {
    font-size: 15px;
  }
}
.p-page_form input[type=text] {
  padding: 15px 60px 13px 24px;
  border-radius: 4px;
  border: 1px solid #b5b5b6;
  background: #ffffff;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-page_form input[type=text] {
    padding: 16px 20px 15px 20px;
  }
}
.p-page_form_select {
  overflow: hidden;
  width: 100%;
  text-align: center;
  position: relative;
  border-radius: 4px;
  border: 1px solid #b5b5b6;
  background: #ffffff;
}
.p-page_form_select select {
  width: 100%;
  cursor: pointer;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 15px 60px 13px 24px;
  color: #333;
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .p-page_form_select select {
    padding: 16px 20px 15px 20px;
    font-size: 15px;
  }
}
.p-page_form_select::-ms-expand {
  display: none;
}
.p-page_form_select::before {
  position: absolute;
  top: 50%;
  right: 23px;
  margin-top: -5px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #333;
  pointer-events: none;
}
@media screen and (max-width: 1000px) {
  .p-page_form_select::before {
    right: 18px;
    margin-top: -2.5px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
  }
}
.p-page_form_check_wrap label {
  position: relative;
  cursor: pointer;
  padding-left: 36px;
  display: block;
  margin-bottom: 18px;
}
@media screen and (max-width: 1000px) {
  .p-page_form_check_wrap label {
    margin-bottom: 16px;
    padding-left: 33px;
  }
}
.p-page_form_check_wrap label::before, .p-page_form_check_wrap label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
.p-page_form_check_wrap label::before {
  background-color: #fff;
  border: 1px solid #9e9e9f;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  left: 0;
}
@media screen and (max-width: 1000px) {
  .p-page_form_check_wrap label::before {
    width: 18px;
    height: 18px;
  }
}
.p-page_form_check_wrap label::after {
  background-color: #1c4388;
  border-radius: 50%;
  opacity: 0;
  width: 12px;
  height: 12px;
  left: 5px;
}
@media screen and (max-width: 1000px) {
  .p-page_form_check_wrap label::after {
    width: 10px;
    height: 10px;
  }
}
.p-page_form_check_wrap input:checked + label::after {
  opacity: 1;
}
.p-page_form_check_wrap input {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}
.p-page_form_check_wrap .-row label {
  width: 140px;
  margin-bottom: 0;
}
.p-page_form_check_wrap_agree {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .p-page_form_check_wrap_agree {
    margin-bottom: 16px;
  }
}
.p-page_form_check_wrap_agree label {
  cursor: pointer;
  padding-left: 38px;
  position: relative;
}
.p-page_form_check_wrap_agree label::before, .p-page_form_check_wrap_agree label::after {
  content: "";
  display: block;
  position: absolute;
}
.p-page_form_check_wrap_agree label::before {
  background-color: #fff;
  border-radius: 0%;
  border: 2px solid #595757;
  width: 24px;
  height: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 0;
}
.p-page_form_check_wrap_agree label::after {
  background-color: none;
  border-bottom: 2px solid #1c4388;
  border-left: 2px solid #1c4388;
  opacity: 0;
  height: 8px;
  width: 13px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 4px;
  left: 7px;
}
.p-page_form_check_wrap_agree input:checked + label::after {
  opacity: 1;
}
.p-page_form_check_wrap_agree input {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}
.p-page_form_mid {
  width: 37.87%;
}
.p-page_form_main_privacy {
  margin-top: 30px;
  margin-bottom: 54px;
}
@media screen and (max-width: 1000px) {
  .p-page_form_main_privacy {
    margin-top: 35px;
    margin-bottom: 60px;
  }
}
.p-page_form_main_privacy_inner {
  padding: 54px 48px 60px;
  background-color: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .p-page_form_main_privacy_inner {
    padding: 50px 15px 50px 32px;
    margin-bottom: 30px;
  }
}
.p-page_form_main_privacy_inner .-cont {
  font-size: 16px;
  line-height: 2;
  height: 160px;
  overflow-y: scroll;
  padding-right: 35px;
}
@media screen and (max-width: 1000px) {
  .p-page_form_main_privacy_inner .-cont {
    font-size: 14px;
    height: 182px;
    padding-right: 18px;
  }
}
.p-page_form_main_privacy_inner .-cont::-webkit-scrollbar {
  width: 12px;
  border-radius: 6px;
}
@media screen and (max-width: 1000px) {
  .p-page_form_main_privacy_inner .-cont::-webkit-scrollbar {
    width: 9px;
  }
}
.p-page_form_main_privacy_inner .-cont::-webkit-scrollbar-track {
  background-color: #dcdddd;
  border-radius: 6px;
}
.p-page_form_main_privacy_inner .-cont::-webkit-scrollbar-thumb {
  background-color: #cab585;
  border-radius: 6px;
}
.p-page_form_main_privacy_inner .-cont .-ttl {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .p-page_form_main_privacy_inner .-cont .-ttl {
    font-size: 14px;
  }
}
.p-page_form_main_agree {
  margin-bottom: 56px;
}
@media screen and (max-width: 1000px) {
  .p-page_form_main_agree {
    margin-bottom: 43px;
  }
}
.p-page_form_main_agree .-note {
  text-align: center;
  line-height: 2;
}
.p-page_thanks_head {
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .p-page_thanks_head {
    margin-bottom: 30px;
  }
}
.p-page_thanks_head .-txt {
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
  font-size: 24px;
}
@media screen and (max-width: 1000px) {
  .p-page_thanks_head .-txt {
    font-size: 18px;
  }
}
.p-page_thanks_ttl {
  font-size: 40px;
  margin-bottom: 48px;
  color: #cab585;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1000px) {
  .p-page_thanks_ttl {
    font-size: 30px;
    margin-bottom: 32px;
  }
}

.c-tbl_form {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  border: 1px solid #b5b5b6;
}
.c-tbl_form th,
.c-tbl_form td {
  padding: 18px 23px;
}
@media screen and (max-width: 1000px) {
  .c-tbl_form th,
.c-tbl_form td {
    display: block;
    padding: 16px 15px;
  }
}
.c-tbl_form th .-req,
.c-tbl_form th .-opt,
.c-tbl_form td .-req,
.c-tbl_form td .-opt {
  margin-left: 16px;
}
@media screen and (max-width: 1000px) {
  .c-tbl_form th .-req,
.c-tbl_form th .-opt,
.c-tbl_form td .-req,
.c-tbl_form td .-opt {
    margin-left: 12px;
  }
}
.c-tbl_form th {
  color: #333;
  font-weight: 500;
  border-right: 1px solid #b5b5b6;
  width: 27%;
  background-color: #ede6da;
}
@media screen and (max-width: 1000px) {
  .c-tbl_form th {
    width: 100%;
  }
}
.c-tbl_form td {
  width: 73%;
  background-color: #fff;
}
@media screen and (max-width: 1000px) {
  .c-tbl_form td {
    width: 100%;
    font-size: 15px;
  }
}
.c-tbl_form td .-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-tbl_form td .-row.-clm3 > .-item {
  width: 29.63%;
  margin-right: 5.55%;
}
@media screen and (max-width: 1000px) {
  .c-tbl_form td .-row.-clm3 > .-item {
    width: 31.16%;
    margin-right: 3.26%;
  }
}
.c-tbl_form td .-row.-clm3 > .-item:last-child {
  margin-right: 0;
}
.c-tbl_form td .-row.-clm2 > .-item {
  width: 46.96%;
  margin-right: 6.08%;
}
@media screen and (max-width: 1000px) {
  .c-tbl_form td .-row.-clm2 > .-item {
    width: 48.33%;
    margin-right: 3.34%;
  }
}
.c-tbl_form td .-row.-clm2 > .-item:last-child {
  margin-right: 0;
}
.c-tbl_form td .-ttl {
  margin-bottom: 12px;
}
@media screen and (max-width: 1000px) {
  .c-tbl_form td .-ttl {
    font-size: 14px;
  }
}
.c-tbl_form td .-note {
  margin-top: 13px;
}
@media screen and (max-width: 1000px) {
  .c-tbl_form td .-note {
    font-size: 14px;
  }
}
.c-tbl_form td .-note a {
  color: #c30d23;
}
.c-tbl_form td .-note a::before {
  content: "▶ ";
}
.c-tbl_form td.-rowbottom {
  padding-top: 0;
}

.c-btn_form {
  text-align: center;
}
.c-btn_form.-confirm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .c-btn_form.-confirm {
    margin-top: 40px;
    text-align: center;
    display: block;
  }
}
.c-btn_form.-confirm .c-btn_form_inner {
  margin-right: 7%;
}
.c-btn_form.-confirm .c-btn_form_inner:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1000px) {
  .c-btn_form.-confirm .c-btn_form_inner {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .c-btn_form.-confirm .c-btn_form_inner:last-child {
    margin-bottom: 0;
  }
}
.c-btn_form_inner {
  display: inline-block;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  .c-btn_form_inner {
    width: 91.3%;
  }
}
.c-btn_form_inner::before {
  content: "";
  display: inline-block;
  background-image: url(../../images/arw_btn.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  width: 15px;
  height: 28px;
  top: 50%;
  right: 12.43%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .c-btn_form_inner::before {
    right: 9.8%;
  }
}
.c-btn_form .p-page_form_submit {
  display: inline-block;
  padding: 24px;
  background-color: #cab585;
  -webkit-box-shadow: 0 8px 0 #877a60;
          box-shadow: 0 8px 0 #877a60;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  width: 378px;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .c-btn_form .p-page_form_submit {
    width: 100%;
  }
}
.c-btn_form .p-page_form_submit.-confirm {
  background-color: #dcdddd;
  -webkit-box-shadow: 0 8px 0 #9fa0a0;
          box-shadow: 0 8px 0 #9fa0a0;
}
.c-btn_form .p-page_form_submit:disabled {
  cursor: default;
  background-color: #dcdddd;
  -webkit-box-shadow: 0 8px 0 #9fa0a0;
          box-shadow: 0 8px 0 #9fa0a0;
}
.c-btn_form .p-page_form_submit:disabled:hover {
  margin-top: 0;
  -webkit-box-shadow: 0 8px 0 #9fa0a0;
          box-shadow: 0 8px 0 #9fa0a0;
  margin-bottom: 0;
}

.-req {
  display: inline-block;
  line-height: 1;
  padding: 2px 8px 3px;
  border-radius: 3px;
  background-color: #c30d23;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.-opt {
  display: inline-block;
  line-height: 1;
  padding: 2px 8px 3px;
  border-radius: 3px;
  background-color: #595757;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.-addtxt {
  display: inline-block;
  margin-right: 16px;
}
@media screen and (max-width: 1000px) {
  .-addtxt {
    margin-right: 8px;
  }
}

@media screen and (max-width: 1000px) {
  .-sp100 {
    width: 100% !important;
  }
}

.request .p-page_head {
  margin-bottom: 72px;
}
@media screen and (max-width: 1000px) {
  .request .p-page_head {
    margin-bottom: 40px;
  }
}

.p-contactus_caution {
  color: #c30d23;
  font-size: 0.9em;
  margin-top: 0.5em;
}

#error_all {
  display: none;
  text-align: center;
  margin-bottom: 20px;
}

#error_all.on {
  display: block;
}