@charset "UTF-8";
@import "layout/_reset.css";
/* ============================================================================
CSS information
 style info :  サイト全体の共通構造
/* ============================================================================

/*webフォント読み込み*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&display=swap");
html {
  font-size: 62.5%;
}

body {
  font-family: "Shippori Mincho", serif, "游明朝体", YuMincho;
  font-size: 1.6rem;
  font-weight: 500;
  font-feature-settings: "palt"; /*自動カーニング*/
  letter-spacing: -0.01em;
  color: #333;
  position: relative;
  z-index: 1;
}

h1, h2 {
  letter-spacing: 0.08em;
}

/*リンク*/
a {
  text-decoration: none;
  color: #333;
}

.gothic {
  font-family: "游ゴシック体", YuGothic, "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans";
  letter-spacing: 0.03em;
}

img {
  width: 100%;
}

.sp_view {
  display: none;
}

@media screen and (max-width: 900px) {
  .sp_view {
    display: block;
  }
  .pc_view {
    display: none;
  }
}
.detail_btn a {
  position: relative;
  display: inline-block;
  font-size: 1.3rem;
  padding: 6px 35px 6px 0;
  font-weight: 400;
  z-index: 10;
}
.detail_btn a::before {
  background: #333;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: left top;
  transform: scale(1, 1);
  transition: transform 0.3s;
}
.detail_btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s cubic-bezier(0.37, 0, 0.63, 1);
}
.detail_btn a:hover::before {
  transform-origin: right top;
  transform: scale(0, 1);
}
.detail_btn a:hover::after {
  right: 2px;
}

.box_btn {
  position: relative;
  text-align: center;
}
.box_btn a {
  position: absolute;
  display: inline-block;
  background: #fff;
  border: 1px solid #333;
  width: 455px;
  height: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.4rem;
  font-weight: 400;
  padding-top: 21px;
}
.box_btn a::before {
  content: "";
  position: absolute;
  width: 452px;
  height: 1px;
  background: #333;
  bottom: -5px;
  right: 0;
}
.box_btn a::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 77px;
  background: #333;
  right: -5px;
  bottom: 0;
}
.box_btn a::after:hover {
  right: -1px;
}
.box_btn a:hover {
  margin: 3px 0 0 3px;
}
.box_btn a:hover::before {
  bottom: -1px;
}
.box_btn a:hover::after {
  right: -1px;
}
@media screen and (max-width: 900px) {
  .box_btn a {
    width: 250px;
    height: 45px;
    font-size: 1.6rem;
    padding-top: 9px;
  }
  .box_btn a::before {
    width: 248px;
    bottom: -4px;
  }
  .box_btn a::after {
    height: 41px;
    right: -4px;
  }
}

/*ハンバーガーメニュー*/
/*==================================================
　5-2-6 3本線が回転して×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
  追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: fixed;
  top: 4.1vw;
  right: 4%;
  cursor: pointer;
  width: 50px;
  height: 50px;
  margin-left: 40px;
  z-index: 9999;
}
@media screen and (max-width: 900px) {
  .openbtn {
    top: 10px;
  }
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.5s; /*アニメーションの設定*/
  position: absolute;
  right: 0;
  height: 1.5px;
  border-radius: 2px;
  background: #333;
}

.openbtn span:nth-of-type(1) {
  top: 18px;
  width: 100%;
}

.openbtn span:nth-of-type(2) {
  top: 25px;
  width: 65%;
}

.openbtn span:nth-of-type(3) {
  top: 32px;
  width: 35%;
}

/*activeクラスが付与されると線が回転して×になる*/
.openbtn.active span:nth-of-type(1) {
  top: 19px;
  left: 15px;
  transform: translateY(6px) rotate(-135deg);
  width: 50%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 31px;
  left: 15px;
  transform: translateY(-6px) rotate(135deg);
  width: 50%;
}

/*==================================================
　ヘッダーメニュー
===================================*/
.main_nav {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 4.5vw 4% 0 5%;
  z-index: 50;
}
.main_nav .top_h1 a {
  color: #fff;
}
.main_nav h1 {
  position: relative;
  display: inline;
  font-size: 2.6rem;
  font-weight: 600;
}
.main_nav_list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 90px;
}
.main_nav_list_li {
  margin-left: 20px;
}
.main_nav_list_li a {
  position: relative;
  background: #fff;
  color: #333;
  padding: 5px 28px 6px 12px;
  border: 1px solid #000;
}
.main_nav_list_li a::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 10px;
  background: url(../images/icon-e_link.svg) no-repeat;
  background-size: 100%;
  width: 10px;
  height: 10px;
}
.main_nav_list_li:last-child a {
  padding: 5px 12px 6px;
}
.main_nav_list_li:last-child a::after {
  display: none;
}
@media screen and (max-width: 900px) {
  .main_nav {
    display: block;
    padding: 20px 6% 0;
    height: 0;
  }
  .main_nav h1 {
    font-size: 2rem;
  }
  .main_nav.panelactive {
    height: 100vh;
  }
  .main_nav_list {
    opacity: 0;
    display: none;
    position: fixed;
    bottom: 65px;
    z-index: -1;
    /*動き*/
    transition: all 0.6s;
  }
  .main_nav_list li {
    margin-left: 0;
    margin-top: 12px;
  }
  .main_nav_list li a {
    padding: 1px 24px 2px 8px;
    font-size: 1.4rem;
  }
  .main_nav_list li a::after {
    top: 7px;
    right: 8px;
    width: 12px;
    height: 12px;
  }
  .main_nav_list li:last-child a {
    padding: 1px 8px 2px;
  }
  .main_nav_list.panelactive {
    display: block;
    opacity: 1;
    z-index: 999;
  }
  .main_nav_close {
    position: fixed;
    bottom: 23px;
    font-size: 1.3rem;
    background: #fff;
    border: 1px solid #000;
    border-radius: 12px;
    padding: 0 10px 2px;
  }
  .main_nav_close .close {
    display: none;
  }
  .main_nav_close.active .close {
    display: block;
  }
  .main_nav_close.active .open {
    display: none;
  }
}

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  /*ナビのスタート位置と形状*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #d9cec0;
  /*動き*/
  transition: all 0.6s;
  opacity: 0;
  z-index: -1;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 99;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.g-nav-list_flex {
  display: flex;
  justify-content: center;
  padding: 15% 0 0;
}
.g-nav_contents {
  margin-right: 30px;
}
.g-nav_contents h3 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 65px;
}
.g-nav_contents p {
  margin-bottom: 65px;
  line-height: 2;
}
.g-nav_contents ul {
  display: flex;
}
.g-nav_contents ul li {
  margin-right: 60px;
}
.g-nav_contents ul li a {
  position: relative;
  font-size: 1.8rem;
}
.g-nav_contents ul li a::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -17px;
  background: url(../images/icon-e_link.svg) no-repeat;
  background-size: 100%;
  width: 10px;
  height: 10px;
}
.g-nav_contents ul li:last-child a::after {
  display: none;
}
.g-nav_nav-first {
  margin: 45px 85px 0 0;
}
.g-nav_nav-first li {
  margin-bottom: 35px;
}
.g-nav_nav-first li:last-child {
  margin-bottom: 0;
}
.g-nav_nav-first li a {
  display: block;
  font-size: 1.8rem;
}
.g-nav_nav-first li a small {
  display: inline-block;
  font-size: 1.4rem;
  padding-left: 1rem;
}
.g-nav_nav-latter {
  margin-top: 45px;
}
.g-nav_nav-latter li {
  margin-bottom: 35px;
}
.g-nav_nav-latter li:last-child {
  margin-bottom: 0;
}
.g-nav_nav-latter li a {
  display: block;
  font-size: 1.8rem;
}
.g-nav_nav-latter li a small {
  display: inline-block;
  font-size: 1.4rem;
  padding-left: 1rem;
}
@media screen and (max-width: 900px) {
  .g-nav-list_flex {
    display: block;
    padding: 28% 7% 0;
  }
  .g-nav_contents {
    margin-right: 0;
  }
  .g-nav_contents h3 {
    font-size: 2.1rem;
    margin-bottom: 15px;
  }
  .g-nav_contents p {
    font-size: 1.4rem;
    margin-bottom: 50px;
  }
  .g-nav_contents p span {
    display: inline-block;
    width: 1rem;
    height: 1rem;
  }
  .g-nav_contents ul {
    display: none;
  }
  .g-nav_nav-first {
    margin: 0;
  }
  .g-nav_nav-first li {
    margin-bottom: 22px;
  }
  .g-nav_nav-first li:last-child {
    margin-bottom: 18px;
  }
  .g-nav_nav-first li a {
    font-size: 1.6rem;
  }
  .g-nav_nav-first li a small {
    font-size: 1.4rem;
    padding-left: 0.5rem;
  }
  .g-nav_nav-latter {
    margin-top: 0;
  }
  .g-nav_nav-latter li {
    margin-bottom: 22px;
  }
  .g-nav_nav-latter li a {
    font-size: 1.6rem;
  }
  .g-nav_nav-latter li a small {
    font-size: 1.4rem;
    padding-left: 0.5rem;
  }
}

/*==================================================
　フッター
===================================*/
.footer {
  background: #d9cec0;
  display: flex;
  justify-content: center;
  padding: 70px 0 100px;
}
.footer h3 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 65px;
}
.footer p {
  margin-bottom: 65px;
  line-height: 2;
}
.footer_contents {
  margin-right: 6%;
}
.footer_contents ul {
  display: flex;
}
.footer_contents ul li {
  margin-right: 60px;
}
.footer_contents ul li a {
  position: relative;
  font-size: 1.8rem;
}
.footer_contents ul li a::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -17px;
  background: url(../images/icon-e_link.svg) no-repeat;
  background-size: 100%;
  width: 10px;
  height: 10px;
}
.footer_contents ul li:last-child a::after {
  display: none;
}
.footer_nav-first {
  margin: 45px 6% 0 0;
}
.footer_nav-first li {
  margin-bottom: 35px;
}
.footer_nav-first li:last-child {
  margin-bottom: 0;
}
.footer_nav-first li a {
  display: block;
  font-size: 1.8rem;
}
.footer_nav-first li a small {
  display: inline-block;
  font-size: 1.4rem;
  padding-left: 1rem;
}
.footer_nav-latter {
  margin-top: 45px;
}
.footer_nav-latter li {
  margin-bottom: 35px;
}
.footer_nav-latter li:last-child {
  margin-bottom: 0;
}
.footer_nav-latter li a {
  display: block;
  font-size: 1.8rem;
}
.footer_nav-latter li a small {
  display: inline-block;
  font-size: 1.4rem;
  padding-left: 1rem;
}
@media screen and (max-width: 900px) {
  .footer {
    display: block;
    padding: 40px 5% 100px;
  }
  .footer h3 {
    font-size: 2.1rem;
    margin-bottom: 20px;
  }
  .footer p {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .footer_contents {
    margin: 0;
  }
  .footer_contents ul {
    display: block;
    float: left;
    width: 50%;
    height: 260px;
  }
  .footer_contents ul li {
    margin-right: 0;
    margin-bottom: 25px;
  }
  .footer_contents ul li a {
    position: relative;
    font-size: 1.4rem;
    font-weight: 700;
  }
  .footer_contents ul li a::after {
    top: 6px;
  }
  .footer_nav-first {
    margin: 0;
  }
  .footer_nav-first li {
    margin-bottom: 0;
    margin-bottom: 14px;
  }
  .footer_nav-first li:last-child {
    margin-bottom: 14px;
  }
  .footer_nav-first li a {
    font-size: 1.4rem;
  }
  .footer_nav-first li a small {
    font-size: 1.2rem;
  }
  .footer_nav-latter {
    margin-top: 0;
  }
  .footer_nav-latter li {
    margin-bottom: 0;
    margin-bottom: 14px;
  }
  .footer_nav-latter li a {
    font-size: 1.4rem;
  }
  .footer_nav-latter li a small {
    font-size: 1.2rem;
  }
}

/*==================================================
　フードアップ　下から上
===================================*/
/* アニメーション前 */
.u-fade-type-up {
  transform: translateY(20px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-up.is-active {
  transition: 1.3s;
  transform: translateY(0);
  opacity: 1;
}

/*==================================================
　フェードアップ 右から左
===================================*/
/* アニメーション前 */
.u-fade-type-left {
  transform: translateX(30px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-left.is-active {
  transition: 1s;
  transform: translateX(0);
  opacity: 1;
}

/*==================================================
　フェードアップ その場で
===================================*/
/* アニメーション前 */
.u-fade-type-opacity {
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-opacity.is-active {
  transition: 1s;
  opacity: 1;
}

.top-header h1 a {
  color: #fff;
}

.main_wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}
.main_slider {
  position: relative;
}
.main_slider li {
  width: 100%;
  height: 100vh;
}
.main_slider .image01 {
  background: url(../images/slider/ocean-view.jpg) center no-repeat;
  background-size: cover;
}
.main_slider .image02 {
  background: url(../images/slider/cooking-image.jpg) center no-repeat;
  background-size: cover;
}
.main_slider .image03 {
  background: url(../images/slider/restaurant-food.jpg) center no-repeat;
  background-size: cover;
}
.main_slider .image04 {
  background: url(../images/slider/croom-view.jpg) center no-repeat;
  background-size: cover;
}
.main_read {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  font-size: 3.1rem;
  line-height: 1.7;
  color: #fff;
  font-weight: 400;
  z-index: 10;
}
@media screen and (max-width: 900px) {
  .main_read {
    font-size: 2rem;
  }
}

.read h2 {
  font-size: 35px;
  font-weight: 400;
  text-align: center;
  line-height: 1.7;
  margin: 120px 0;
}
.read_view {
  background: url(../images/bg-oceanview.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 350px;
}
@media screen and (min-width: 900px) {
  .read_view {
    background-attachment: fixed;
  }
}
@media screen and (max-width: 900px) {
  .read h2 {
    font-size: 1.9rem;
    margin: 70px 0;
  }
  .read_view {
    height: 48vw;
    max-height: 240px;
  }
}

.story {
  background: #f0ebe5;
  padding: 100px 0 370px;
  overflow: hidden;
}
.story h4 {
  width: 412px;
  margin-bottom: 95px;
}
.story_01 {
  position: relative;
  margin-left: 10%;
  z-index: 10;
}
.story_01 h3 {
  font-size: 2.7rem;
  margin: 0 0 50px;
  font-weight: 500;
}
.story_01 p {
  font-size: 1.7rem;
  line-height: 1.8;
  margin-bottom: 70px;
}
.story_02 {
  position: absolute;
  width: 650px;
  top: 527px;
  right: 0;
  z-index: 10;
}
.story_02 h3 {
  font-size: 2.7rem;
  margin: 0 0 50px;
  font-weight: 500;
}
.story_02 h3 small {
  font-size: 1.6rem;
}
.story_02 p {
  font-size: 1.7rem;
  line-height: 1.8;
  margin-bottom: 70px;
}
.story_img01 {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 1550px;
  height: 665px;
  margin-top: -340px;
  z-index: 1;
}
.story_img01 img {
  position: absolute;
  right: 0;
  width: 516px;
}
.story_img02 {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 1500px;
  height: 240px;
  margin-top: -40px;
  z-index: 1;
}
.story_img02 img {
  position: absolute;
  left: 0;
  width: 620px;
}
.story_img03 {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 1040px;
  height: 372px;
  margin-top: 173px;
  z-index: 10;
}
.story_img03 img {
  position: absolute;
  right: 0;
  width: 650px;
}
.story_img04 {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 1520px;
  height: 1142px;
  margin-top: -186px;
  z-index: 1;
}
.story_img04 img {
  position: absolute;
  left: 0;
  width: 503px;
}
.story_img05 {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 1300px;
  height: 360px;
  margin-top: -50px;
}
.story_img05 img {
  position: absolute;
  right: 0;
  width: 520px;
}
@media screen and (max-width: 900px) {
  .story {
    padding-bottom: 745px;
  }
  .story_wrapper {
    position: relative;
  }
  .story h4 {
    width: 31px;
    margin-bottom: 0;
  }
  .story_01 {
    margin-top: -17px;
    margin-left: 62px;
  }
  .story_01 h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .story_01 p {
    font-size: 1.4rem;
    margin-bottom: 50px;
  }
  .story_02 {
    position: static;
    width: 90%;
    padding: 215px 0 0 0;
    margin: 0 auto;
  }
  .story_02 h3 {
    font-size: 1.8rem;
    margin-bottom: 50px;
  }
  .story_02 h3 small {
    font-size: 1.2rem;
  }
  .story_02 p {
    font-size: 1.4rem;
    margin-bottom: 50px;
  }
  .story_img01 {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(0);
    width: 427px;
    height: 200px;
    margin-top: 0;
  }
  .story_img01 img {
    position: absolute;
    right: 0;
    width: 365px;
  }
  .story_img02 {
    left: 62px;
    transform: translateX(0);
    width: 427px;
    height: 120px;
    margin-top: 40px;
  }
  .story_img02 img {
    width: 187px;
  }
  .story_img03 {
    margin-top: 110px;
    width: 100%;
  }
  .story_img03_sp {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 453px;
    height: 130px;
  }
  .story_img03 img {
    width: 351px;
    left: 0;
  }
  .story_img04 {
    position: static;
    width: 325px;
    height: 214px;
    transform: translateX(0);
    margin: 50px auto 0;
  }
  .story_img04 img {
    width: 100%;
  }
  .story_img05 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 465px;
    height: 170px;
    margin: 0;
    top: 175px;
  }
  .story_img05 img {
    width: 170px;
    margin: 0 0 0 auto;
  }
}

.stay {
  overflow: hidden;
}
.stay_view {
  background: url(../images/bg-croom.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 350px;
}
.stay h4 {
  width: 648px;
  margin: 110px 0 95px;
}
.stay_wrapper {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 1592px;
  height: 624px;
  margin-bottom: 165px;
}
.stay_wrapper_box {
  position: absolute;
  right: 0;
  display: flex;
}
.stay_wrapper_txt {
  margin-right: 132px;
}
.stay_wrapper_txt h3 {
  font-size: 2.7rem;
  margin: 0 0 50px;
  font-weight: 500;
}
.stay_wrapper_txt p {
  font-size: 1.7rem;
  margin-bottom: 70px;
  line-height: 1.8;
}
.stay_img01 {
  width: 666px;
}
.stay_gallery {
  overflow: hidden;
}
.stay_gallery ul {
  margin-bottom: 90px;
}
.stay_gallery ul li {
  width: 350px;
}
@media screen and (min-width: 900px) {
  .stay_view {
    background-attachment: fixed;
  }
}
@media screen and (max-width: 900px) {
  .stay_view {
    height: 180px;
  }
  .stay h4 {
    position: absolute;
    width: 31px;
    margin: 0;
  }
  .stay_wrapper {
    width: 100%;
    height: 800px;
    margin-bottom: 0;
  }
  .stay_wrapper_box {
    position: relative;
    right: auto;
    display: block;
    margin: 80px 0 0 60px;
  }
  .stay_wrapper_txt {
    margin-right: 0;
  }
  .stay_wrapper_txt h3 {
    font-size: 1.8rem;
    margin: 45px 0 35px;
  }
  .stay_wrapper_txt p {
    font-size: 1.4rem;
    margin-bottom: 50px;
  }
  .stay_img01 {
    width: 365px;
  }
  .stay_gallery ul {
    margin-bottom: 70px;
  }
}

.section_space {
  margin-top: 328px;
}
@media screen and (max-width: 900px) {
  .section_space {
    margin-top: 185px;
  }
}

.restaurant {
  overflow: hidden;
}
.restaurant_view {
  background: url(../images/bg-restaurant.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 350px;
}
.restaurant h4 {
  width: 1027px;
  margin: 100px 0 86px;
}
.restaurant_wrapper {
  position: relative;
  width: 530px;
  padding-top: 144px;
  margin: 0 auto 210px;
}
.restaurant_wrapper h3 {
  position: relative;
  font-size: 2.7rem;
  margin: 0 0 50px;
  font-weight: 500;
  z-index: 10;
}
.restaurant_wrapper p {
  position: relative;
  font-size: 1.7rem;
  margin-bottom: 70px;
  line-height: 1.8;
  z-index: 10;
}
.restaurant_img01 {
  position: absolute;
  top: 0;
  width: 1400px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.restaurant_img01 img {
  width: 442px;
  margin: 0 0 0 auto;
}
.restaurant_img02 {
  position: absolute;
  top: 154px;
  width: 1420px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.restaurant_img02 img {
  width: 314px;
}
.restaurant_gallery {
  overflow: hidden;
}
.restaurant_gallery ul {
  margin-bottom: 90px;
}
.restaurant_gallery ul li {
  width: 350px;
}
@media screen and (min-width: 900px) {
  .restaurant_view {
    background-attachment: fixed;
  }
}
@media screen and (max-width: 900px) {
  .restaurant_view {
    height: 180px;
  }
  .restaurant h4 {
    position: absolute;
    width: 38px;
    margin: 0;
    left: 0;
  }
  .restaurant_wrapper {
    padding: 60px 0 0 60px;
    margin-bottom: 60px;
  }
  .restaurant_wrapper h3 {
    font-size: 1.8rem;
    margin: 45px 0 35px;
  }
  .restaurant_wrapper p {
    font-size: 1.4rem;
    margin-bottom: 50px;
  }
  .restaurant_img01 {
    position: static;
    width: 365px;
    transform: translateX(0);
  }
  .restaurant_img01 img {
    width: 365px;
  }
  .restaurant_img02 {
    position: static;
    width: 280px;
    transform: translateX(0);
    margin-top: 50px;
  }
  .restaurant_img02 img {
    width: 100%;
  }
  .restaurant_gallery ul {
    margin-bottom: 70px;
  }
}

.cooking {
  overflow: hidden;
}
.cooking_view {
  background: url(../images/bg-cooking.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 350px;
}
.cooking h4 {
  width: 542px;
  margin: 100px 0 145px;
}
.cooking_wrapper {
  position: relative;
  width: 1300px;
  height: 530px;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 175px;
}
.cooking_wrapper_box {
  position: absolute;
  display: flex;
  right: 0;
}
.cooking_wrapper_txt {
  margin-right: 145px;
}
.cooking_wrapper_txt h3 {
  font-size: 2.7rem;
  margin: 0 0 50px;
  font-weight: 500;
}
.cooking_wrapper_txt p {
  font-size: 1.7rem;
  margin-bottom: 70px;
  line-height: 1.8;
}
.cooking_wrapper_image {
  width: 520px;
}
@media screen and (min-width: 900px) {
  .cooking_view {
    background-attachment: fixed;
  }
}
@media screen and (max-width: 900px) {
  .cooking {
    margin-bottom: 0;
  }
  .cooking_view {
    height: 180px;
  }
  .cooking h4 {
    position: absolute;
    width: 31px;
    margin: 60px 0 0 0;
  }
  .cooking_wrapper {
    width: 100%;
    position: relative;
  }
  .cooking_wrapper_box {
    padding: 60px 0 0 60px;
    position: static;
    display: block;
  }
  .cooking_wrapper_txt {
    margin-right: 0;
  }
  .cooking_wrapper_txt h3 {
    font-size: 1.8rem;
    margin: 45px 0 35px;
  }
  .cooking_wrapper_txt p {
    font-size: 1.4rem;
    margin-bottom: 50px;
  }
  .cooking_wrapper_image {
    width: 365px;
  }
}

.access {
  overflow: hidden;
}
.access_view {
  background: url(../images/bg-footer.jpg) no-repeat bottom;
  background-size: cover;
  width: 100%;
  height: 350px;
  margin-top: 300px;
}
@media screen and (min-width: 900px) {
  .access_view {
    background-attachment: fixed;
  }
}
@media screen and (max-width: 900px) {
  .access_view {
    height: 180px;
    margin-top: 180px;
  }
}
.access h4 {
  width: 480px;
  margin: 100px 0 80px;
}
.access_wrapper {
  display: flex;
  max-width: 1040px;
  margin: 0 auto 100px;
  align-items: center;
}
.access_wrapper div {
  width: 50%;
}
.access_wrapper_address h5 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 50px;
}
.access_wrapper_address p {
  font-size: 1.6rem;
  line-height: 1.6;
}
.access_wrapper_detail ul li:first-child {
  margin-bottom: 120px;
}
.access_wrapper_detail ul li h6 {
  font-size: 2rem;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
  margin-bottom: 35px;
}
.access_wrapper_detail ul li p {
  margin-bottom: 35px;
  font-size: 1.5rem;
  line-height: 1.6;
}
.access_wrapper_detail ul li p strong {
  display: block;
  font-size: 1.6rem;
}
@media screen and (min-width: 900px) {
  .access_view {
    background-attachment: fixed;
  }
}
@media screen and (max-width: 900px) {
  .access {
    margin-bottom: 0;
  }
  .access_view {
    height: 180px;
    margin-top: 185px;
  }
  .access h4 {
    position: absolute;
    width: 31px;
    margin: 0;
  }
  .access_wrapper {
    display: block;
    margin: 0 auto 100px;
  }
  .access_wrapper div {
    width: 100%;
    padding: 0 5% 0 60px;
  }
  .access_wrapper_address {
    margin: 60px 0 80px;
  }
  .access_wrapper_address h5 {
    font-size: 1.8rem;
    margin-bottom: 35px;
  }
  .access_wrapper_address p {
    font-size: 1.4rem;
  }
  .access_wrapper_detail ul li:first-child {
    margin-bottom: 50px;
  }
  .access_wrapper_detail ul li h6 {
    font-size: 1.6rem;
    padding-bottom: 8px;
    margin-bottom: 15px;
  }
  .access_wrapper_detail ul li p {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
  .access_wrapper_detail ul li p strong {
    font-size: 1.5rem;
  }
}

/*==================================================
トップ メインスライダー
===================================*/
.slideshow {
  position: absolute;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 10;
}

.slideshow-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background: no-repeat 50% 50%;
  background-size: cover;
  animation-name: kenburns;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 24s;
  opacity: 1;
  transform: scale(1.15);
}
.slideshow-image:nth-child(1) {
  animation-name: kenburns-1;
  z-index: 3;
}
.slideshow-image:nth-child(2) {
  animation-name: kenburns-2;
  z-index: 2;
}
.slideshow-image:nth-child(3) {
  animation-name: kenburns-3;
  z-index: 1;
}
.slideshow-image:nth-child(4) {
  animation-name: kenburns-4;
  z-index: 0;
}

@keyframes kenburns-1 {
  0% {
    opacity: 1;
    transform: scale(1.15);
  }
  3.125% {
    opacity: 1;
  }
  21.875% {
    opacity: 1;
  }
  28.125% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.15);
  }
  96.875% {
    opacity: 0;
    transform: scale(1.1666666667);
  }
  100% {
    opacity: 1;
  }
}
@keyframes kenburns-2 {
  21.875% {
    opacity: 1;
    transform: scale(1.15);
  }
  28.125% {
    opacity: 1;
  }
  46.875% {
    opacity: 1;
  }
  53.125% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.15);
  }
}
@keyframes kenburns-3 {
  46.875% {
    opacity: 1;
    transform: scale(1.15);
  }
  53.125% {
    opacity: 1;
  }
  71.875% {
    opacity: 1;
  }
  78.125% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.15);
  }
}
@keyframes kenburns-4 {
  71.875% {
    opacity: 1;
    transform: scale(1.15);
  }
  78.125% {
    opacity: 1;
  }
  96.875% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
/*==================================================
ギャラリースライダー
===================================*/
.slider { /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 100%;
  margin: 0 auto;
  position: relative;
  left: 50%;
  transform: translate(-50%);
}

.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0 10px;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  bottom: 40px;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  height: 52px;
  width: 52px;
}

.slick-prev { /*戻る矢印の位置と形状*/
  background: url(../images/slider/slider_left.svg);
  left: 12%;
  z-index: 999;
}

.slick-next { /*次へ矢印の位置と形状*/
  background: url(../images/slider/slider_right.svg);
  right: 12%;
  z-index: 999;
}

@media screen and (max-width: 900px) {
  .slick-prev,
  .slick-next {
    width: 30px;
    height: 30px;
    bottom: 15px;
  }
  .slick-prev {
    left: 8%;
  }
  .slick-next {
    right: 8%;
  }
}
.reserve {
  background: #f0ebe5;
  padding: 245px 0 200px;
}
.reserve h1 {
  font-weight: 600;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 110px;
}
.reserve_view {
  background: url(../images/reserve_bg.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
  height: 350px;
  margin-bottom: 155px;
}
.reserve_stay {
  padding-bottom: 220px;
}
.reserve_stay h3 {
  font-size: 3.6rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
.reserve_restaurant {
  padding-bottom: 220px;
}
.reserve_restaurant h3 {
  font-size: 3.6rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
.reserve_cooking h3 {
  font-size: 3.6rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .reserve {
    padding: 140px 0 40px;
  }
  .reserve h1 {
    font-size: 2.6rem;
    margin-bottom: 25px;
  }
  .reserve_view {
    height: 180px;
    margin-bottom: 65px;
    background-attachment: unset;
  }
  .reserve_stay {
    padding-bottom: 140px;
  }
  .reserve_stay h3 {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }
  .reserve_restaurant {
    padding-bottom: 140px;
  }
  .reserve_restaurant h3 {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }
  .reserve_cooking {
    padding-bottom: 15px;
  }
  .reserve_cooking h3 {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }
}

/*==================================================
　アコーディオン
===================================*/
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 90%;
  max-width: 1040px;
  margin: 0 auto 45px;
}
@media screen and (max-width: 900px) {
  .accordion-area {
    margin-bottom: 30px;
  }
}

.accordion-area li {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.accordion-area li:last-child {
  border-top: none;
}

/*アコーディオンタイトル*/
.title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 20px 0;
  transition: all 0.5s ease;
  text-align: center;
}
.title span {
  position: relative;
}
.title span::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(135deg);
  top: 43%;
  right: -18px;
}
@media screen and (max-width: 900px) {
  .title {
    font-size: 1.4rem;
    padding: 10px 0;
  }
}

/*　closeというクラスがついたら形状変化　*/
.title.close::after {
  transform: rotate(-45deg);
  top: 49%;
}

/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
}
.box_section {
  background: #fff;
  padding: 25px 30px;
  margin-bottom: 25px;
}
.box_section h5 {
  font-weight: 700;
  font-size: 1.6rem;
}
.box_flex {
  display: flex;
  justify-content: center;
  gap: 3%;
  margin-top: 10px;
}
.box_flex_inner {
  width: 48%;
}
@media screen and (max-width: 900px) {
  .box_section {
    padding: 15px 20px;
    margin-bottom: 15px;
  }
  .box_flex {
    display: block;
    margin-top: 0;
  }
  .box_flex_inner {
    width: 100%;
  }
}

.detail-plan ul {
  margin-top: 15px;
}
.detail-plan ul li {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.detail-plan ul li::before {
  content: "・ ";
}
.detail-plan ul li a {
  text-decoration: underline;
}
.detail-plan_schedule {
  margin-top: 40px;
}
.detail-plan_schedule p {
  font-size: 1.4rem;
  margin: 10px 0 0;
  line-height: 1.75;
}
.detail-plan_schedule .space {
  height: 45px;
}
.detail-plan .cooking_p {
  font-size: 1.6rem;
  line-height: 1.75;
  margin-top: 10px;
}
.detail-cancel table {
  border-collapse: collapse;
  margin: 15px 0;
}
.detail-cancel table th, .detail-cancel table td {
  border-top: 1px solid #333;
}
.detail-cancel table th:last-of-type, .detail-cancel table td:last-of-type {
  border-bottom: 1px solid #333;
}
.detail-cancel table th {
  font-weight: 500;
  width: 260px;
  padding: 10px 0 10px 10px;
}
.detail-cancel table td {
  padding-right: 50px;
}
.detail-cancel p {
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.detail-amenity p {
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 20px;
  letter-spacing: 0;
}
.detail-price {
  padding-left: 30px;
}
.detail-price .stay table {
  border-collapse: collapse;
  margin: 10px 0 30px;
}
.detail-price .stay table th, .detail-price .stay table td {
  border-top: 1px solid #333;
}
.detail-price .stay table th:last-of-type, .detail-price .stay table td:last-of-type {
  border-bottom: 1px solid #333;
}
.detail-price .stay table th {
  font-weight: 500;
  width: 160px;
  padding: 10px 0 10px 10px;
}
.detail-price .stay table td {
  text-align: right;
  padding-right: 10px;
}
.detail-price .stay-meal table {
  border-collapse: collapse;
  margin: 10px 0 30px;
}
.detail-price .stay-meal table tr:last-of-type th, .detail-price .stay-meal table tr:last-of-type td {
  border-top: none;
  border-bottom: 1px solid #333;
  font-size: 1.3rem;
  padding-top: 0;
}
.detail-price .stay-meal table th, .detail-price .stay-meal table td {
  border-top: 1px solid #333;
}
.detail-price .stay-meal table th {
  font-weight: 500;
  width: 160px;
  padding: 10px 0 10px 10px;
}
.detail-price .stay-meal table td {
  text-align: right;
  padding-right: 10px;
}
.detail-price .stay-option p {
  font-size: 1.4rem;
  margin-top: 7px;
}
.detail-price .stay-option table {
  border-collapse: collapse;
  margin: 10px 0 0;
}
.detail-price .stay-option table th, .detail-price .stay-option table td {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.detail-price .stay-option table th {
  font-weight: 500;
  width: 215px;
  padding: 10px 0 10px 10px;
}
.detail-price .stay-option table td {
  text-align: right;
  padding-right: 10px;
}
.detail-price .stay-option .txt {
  margin-bottom: 30px;
}
.detail-price .stay-option .txt li:before {
  content: "";
}
.detail-price .txt {
  width: 345px;
  margin: 10px 0 65px;
}
.detail-price .txt li {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.detail-price .txt li::before {
  content: "・ ";
}
.detail-price .cooking_price {
  margin-bottom: 40px;
}
.detail-price .cooking_price ul {
  display: inline-block;
  margin: 15px 0 10px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.detail-price .cooking_price ul li {
  padding: 10px 9px 10px 0;
}
.detail-price .cooking_price p {
  font-size: 1.4rem;
  margin: 0 0 30px;
}
.detail-price .cooking_contents {
  margin-bottom: 40px;
}
.detail-price .cooking_contents p {
  margin-top: 10px;
  font-size: 1.4rem;
}
.detail-example .title {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  text-align: left;
  padding: 1.5rem 0 0.5rem;
  /*　closeというクラスがついたら形状変化　*/
}
.detail-example .title::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(135deg);
  top: 48%;
  right: -15px;
}
.detail-example .title.close::after {
  transform: rotate(-45deg);
  top: 57%;
}
.detail-example .box {
  font-size: 1.4rem;
  text-align: left;
}
.detail-menu h4 {
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 30px;
}
.detail-menu p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 15px 0 25px;
}
@media screen and (max-width: 900px) {
  .detail-plan ul {
    margin-top: 10px;
  }
  .detail-plan ul li {
    margin-bottom: 0.5rem;
  }
  .detail-plan_schedule {
    margin-top: 30px;
  }
  .detail-plan_schedule p {
    margin: 5px 0 0;
  }
  .detail-plan_schedule .space {
    height: 10px;
  }
  .detail-plan .cooking_p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-top: 5px;
  }
  .detail-amenity p {
    line-height: 1.75;
    margin-top: 5px;
  }
  .detail-price {
    padding-left: 20px;
  }
  .detail-price .stay table {
    margin: 10px 0 30px;
    font-size: 1.4rem;
  }
  .detail-price .stay table th {
    width: 123px;
    padding: 10px 0;
  }
  .detail-price .stay table td {
    text-align: right;
    padding-right: 0;
  }
  .detail-price .stay-meal table {
    margin: 10px 0 30px;
    font-size: 1.4rem;
  }
  .detail-price .stay-meal table th {
    width: 110px;
    padding: 10px 0;
  }
  .detail-price .stay-meal table td {
    text-align: right;
    padding-right: 0;
  }
  .detail-price .stay-option table {
    margin: 10px 0;
    font-size: 1.4rem;
  }
  .detail-price .stay-option table th {
    width: 160px;
    padding: 10px 0;
  }
  .detail-price .stay-option table td {
    text-align: right;
    padding-right: 0;
  }
  .detail-price .txt {
    width: 100%;
    margin-bottom: 30px;
  }
  .detail-price .cooking_price {
    margin-bottom: 30px;
  }
  .detail-price .cooking_price ul {
    margin: 10px 0 7px;
  }
  .detail-price .cooking_price ul li {
    padding: 10px 0;
    font-size: 1.4rem;
  }
  .detail-price .cooking_price p {
    margin-bottom: 25px;
  }
  .detail-price .cooking_contents {
    margin-bottom: 15px;
  }
  .detail-example {
    padding: 0 15px 0 0;
  }
  .detail-cancel table {
    border-collapse: collapse;
    margin: 15px 0;
  }
  .detail-cancel table th, .detail-cancel table td {
    font-size: 1.4rem;
  }
  .detail-cancel table th {
    width: 210px;
    padding: 10px 0;
  }
  .detail-cancel table td {
    padding-right: 0;
    text-align: right;
  }
  .detail-menu h4 {
    font-size: 1.8rem;
    margin-bottom: 13px;
  }
  .detail-menu p {
    margin: 5px 0 15px;
  }
}

.flow {
  max-width: 650px;
  padding: 40px 35px 10px;
  margin: 0 auto 25px;
}
.flow a {
  text-decoration: underline;
}
.flow ul li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 10px;
  line-height: 1.6;
}
.flow p {
  line-height: 1.6;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .flow {
    padding: 25px 20px 5px;
    font-size: 1.4rem;
  }
  .flow p {
    margin-bottom: 20px;
  }
}

.flow_border {
  border-top: 1px solid #000;
  width: 250px;
  margin: 40px auto;
}
@media screen and (max-width: 900px) {
  .flow_border {
    margin: 25px auto;
  }
}

.policy {
  background: #f0ebe5;
  padding: 245px 0 200px;
}
.policy h1 {
  font-weight: 600;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 40px;
}
.policy_wrapper {
  width: 90%;
  max-width: 1040px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 50px;
}
.policy_wrapper div {
  margin-bottom: 40px;
}
.policy_wrapper div h5 {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.policy_wrapper div p {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: -0.03em;
}
.policy_wrapper div ul {
  margin-top: 1rem;
}
.policy_wrapper div ul li {
  text-indent: -2rem;
  padding-left: 2rem;
  letter-spacing: -0.03em;
}
.policy_wrapper div ul li::before {
  content: "・ ";
}
.policy_wrapper div ul li ul {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.policy_wrapper div ul li ul li {
  list-style: decimal;
  margin-left: 2rem;
}
.policy_wrapper div ul li ul li::before {
  content: "";
}
.policy_introduction {
  font-size: 1.7rem;
  margin-bottom: 40px;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  .policy {
    padding: 140px 0 40px;
  }
  .policy h1 {
    font-size: 2.6rem;
    margin-bottom: 25px;
  }
  .policy_wrapper {
    padding: 25px 5%;
  }
  .policy_wrapper div {
    margin-bottom: 30px;
  }
  .policy_wrapper div h5 {
    font-size: 1.6rem;
  }
  .policy_wrapper div p {
    font-size: 1.4rem;
  }
  .policy_wrapper div ul {
    margin: 1rem 0;
  }
  .policy_wrapper div ul li {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
  }
  .policy_wrapper div ul li ul li {
    text-indent: 0;
    padding-left: 0;
  }
  .policy_introduction {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}

.contact {
  background: #f0ebe5;
}
.contact_wrapper {
  padding: 245px 0 65px;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.contact_wrapper h1 {
  font-weight: 600;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 100px;
}
.contact_wrapper form div {
  margin: 0 0 30px 10%;
}
.contact_wrapper form div div {
  margin: 0;
}
.contact_wrapper form div span {
  font-size: 1.2rem;
}
.contact_wrapper form label {
  display: inline-block;
  width: 130px;
  font-weight: 700;
  text-align: right;
  margin-right: 30px;
}
.contact_wrapper form input {
  width: 80%;
  max-width: 520px;
  height: 45px;
  border-radius: 0;
  background: #fff;
  border: 1px solid #000;
  padding: 10px;
  font-size: 1.4rem;
  font-family: "游ゴシック体", YuGothic, "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans";
}
.contact_wrapper form .txt_th {
  vertical-align: top;
  margin-top: 85px;
}
.contact_wrapper form textarea {
  width: 80%;
  max-width: 520px;
  height: 200px;
  background: #fff;
  border: 1px solid #000;
  padding: 10px;
  font-size: 1.4rem;
  font-family: "游ゴシック体", YuGothic, "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans";
}
.contact_policy {
  font-weight: 600;
  text-align: center;
  margin: 55px 0 60px;
}
.contact_policy a {
  text-decoration: underline;
  padding-left: 0.8rem;
}
.contact_policy input[type=checkbox i] {
  width: 25px !important;
  height: 25px !important;
  border-radius: 0;
  vertical-align: middle;
}
.contact_announce {
  font-size: 1.4rem;
  padding-bottom: 110px;
  text-align: center;
}
.contact .form_btn {
  position: relative;
  text-align: center;
  margin: 0;
  left: 50%;
  transform: translate(-50%);
  display: inline-block;
  background: #fff;
  border: 1px solid #333;
  width: 200px;
  height: 50px;
  font-weight: 600;
}
.contact .form_btn::before {
  content: "";
  position: absolute;
  width: 197px;
  height: 1px;
  background: #333;
  bottom: -4px;
  right: 0;
}
.contact .form_btn::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 47px;
  background: #333;
  right: -4px;
  bottom: 0;
}
.contact .form_btn::after:hover {
  right: -1px;
}
.contact .form_btn button, .contact .form_btn input {
  font-family: "Shippori Mincho", serif, "游明朝体", YuMincho, "Hiragino Mincho ProN", serif;
  border: none;
  background: none;
  width: 100%;
  height: 100%;
  display: block;
  margin: auto;
  color: #333;
}
@media screen and (max-width: 900px) {
  .contact_wrapper {
    padding: 140px 0 40px;
    width: 85%;
  }
  .contact_wrapper h1 {
    font-size: 2.6rem;
    margin-bottom: 25px;
  }
  .contact_wrapper form div {
    margin: 0 0 25px 0;
  }
  .contact_wrapper form label {
    display: block;
    width: auto;
    text-align: left;
    margin: 0 0 0.3rem 0;
    font-size: 1.4rem;
  }
  .contact_wrapper form input {
    width: 100%;
  }
  .contact_wrapper form .txt_th {
    margin-top: 0;
  }
  .contact_wrapper form textarea {
    width: 100%;
  }
  .contact_policy {
    margin: 25px 0 30px;
    font-size: 1.3rem;
    text-align: left;
  }
  .contact_policy input[type=checkbox i] {
    width: 20px !important;
    height: 20px !important;
  }
  .contact_announce {
    width: 85%;
    margin: 0 auto;
    font-size: 1.3rem;
    text-align: left;
    text-indent: -1.5rem;
    padding: 0 0 80px 1.5rem;
  }
}

/*内容確認*/
.confirm h1 {
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .confirm h1 {
    margin-bottom: 25px;
  }
}

.confirmation {
  width: 90%;
  max-width: 600px;
  margin: 0 auto 65px;
  border-collapse: collapse;
}
.confirmation_txt {
  text-align: center;
  margin-bottom: 40px;
}
.confirmation th {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: left;
  border-bottom: 1px solid #b3b3b3;
  padding: 20px 0;
  width: 30%;
}
.confirmation td {
  font-family: "游ゴシック体", YuGothic, "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans";
  font-size: 1.8rem;
  border-bottom: 1px solid #b3b3b3;
  padding: 20px 0;
  white-space: pre-wrap;
}
@media screen and (max-width: 900px) {
  .confirmation {
    width: 100%;
    margin-bottom: 35px;
  }
  .confirmation_txt {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  .confirmation th {
    font-size: 1.2rem;
    padding: 15px 0;
    width: 35%;
  }
  .confirmation td {
    font-size: 1.6rem;
    padding: 15px 0;
  }
}

.back_btn {
  display: block;
  font-size: 1.4rem;
  margin: 15px auto 0;
  background: none;
  border: none;
  text-decoration: underline;
}

.validate_list {
  text-align: center;
  margin-bottom: 35px;
}
.validate_list li {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 900px) {
  .validate_list li {
    margin-bottom: 1rem;
  }
}

/*thanksページ*/
.thanks {
  text-align: center;
}
.thanks h3 {
  font-size: 2.6rem;
}
.thanks p {
  font-size: 1.8rem;
  margin: 65px 0;
  line-height: 1.8;
}
@media screen and (max-width: 900px) {
  .thanks h3 {
    font-size: 2rem;
  }
  .thanks p {
    font-size: 1.4rem;
    margin: 30px 0 40px;
  }
}/*# sourceMappingURL=style.css.map */