@charset "UTF-8";
/* Scss Document
*****************************************************************/
/* reset
**********************************************************************/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* mixin
*********************************************************************/
/* カラー */
/* media query */
/* SP縦から */
/* SP横から */
/* タブレット縦から */
/* フルワイド */
/* font size */
/* font */
/* 全ページ共通 スタイル
*****************************************************************/
body {
  color: #000000;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  line-height: 1.4;
}
@media all and (max-width: 896px) {
  body.is-fixed {
    height: 100%;
    overflow: hidden;
  }
}

a {
  color: #000000;
  text-decoration: none;
  outline: none;
  transition: all 0.5s ease-out;
}
a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.workation {
  overflow: hidden;
}

@media all and (max-width: 896px) {
  .pconly {
    display: none;
  }
}

.sponly {
  display: none;
}
@media all and (max-width: 896px) {
  .sponly {
    display: block;
  }
}

.portraitonly {
  display: none;
}
@media all and (max-width: 480px) {
  .portraitonly {
    display: block;
  }
}

@media all and (max-width: 896px) {
  .spnone {
    display: none;
  }
}

@media all and (max-width: 480px) {
  .portraitnone {
    display: none;
  }
}

.txt_en {
  font-family: 'Hind', sans-serif;
}

.name_right {
  color: #fff;
  position: absolute;
  right: 15px;
  bottom: 15px;
  text-align: right;
  padding-left: 10px;
}
@media all and (max-width: 896px) {
  .name_right {
    font-size: 0.875rem;
    right: 10px;
    bottom: 10px;
  }
}
.name_right.black {
  color: #000000;
}
@media all and (max-width: 480px) {
  .name_right.black {
    color: #fff;
  }
}
.name_right.half {
  width: 48%;
}

.name_left {
  color: #fff;
  position: absolute;
  left: 15px;
  bottom: 15px;
}
@media all and (max-width: 896px) {
  .name_left {
    font-size: 0.875rem;
    left: 10px;
    bottom: 10px;
  }
}

/* fadeIn */
.fadeInTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  /*ゆっくり出現するため数値変更*/
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* header
*****************************************************************/
.menu {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 115px;
  height: 85px;
  background: #fff;
  position: fixed;
  right: 0;
  top: 50px;
  z-index: 100;
  cursor: pointer;
}
@media all and (max-width: 896px) {
  .menu {
    width: 70px;
    height: 55px;
    top: 20px;
  }
}
.menu.active .hamburger > span:nth-of-type(1) {
  width: 105%;
  transform: translate(-50%, 0) rotate(22deg);
}
@media all and (max-width: 896px) {
  .menu.active .hamburger > span:nth-of-type(1) {
    width: 101%;
  }
}
.menu.active .hamburger > span:nth-of-type(2) {
  opacity: 0;
}
.menu.active .hamburger > span:nth-of-type(3) {
  width: 105%;
  transform: translate(-50%, 0) rotate(-22deg);
}
@media all and (max-width: 896px) {
  .menu.active .hamburger > span:nth-of-type(3) {
    width: 101%;
  }
}

.txt_menu {
  font-size: 1.125rem;
  color: #919292;
  letter-spacing: 0.2em;
  line-height: 1;
}
@media all and (max-width: 896px) {
  .txt_menu {
    font-size: 0.75rem;
  }
}

.hamburger {
  width: 70px;
  height: 30px;
  margin: 0 auto 10px;
  position: relative;
}
@media all and (max-width: 896px) {
  .hamburger {
    width: 42px;
    height: 18px;
    margin-bottom: 8px;
  }
}
.hamburger > span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #919292;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  transition: all 0.5s ease-out;
}
.hamburger > span:nth-of-type(1) {
  top: 0;
  transform-origin: left center;
}
.hamburger > span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.hamburger > span:nth-of-type(3) {
  bottom: 0;
  transform-origin: left center;
}

.navigation {
  transform: translate(100%, 0);
  transition: all 0.5s ease-out;
  height: 100%;
  overflow-y: scroll;
  position: fixed;
  top: 50px;
  right: 0;
  z-index: 50;
}
@media all and (max-width: 896px) {
  .navigation {
    top: 20px;
  }
}
.navigation.open {
  transform: translate(0, 0);
}
.navigation .list_navigation {
  box-sizing: border-box;
  padding: 100px 50px 50px;
  background: #919292;
  font-size: 1.125rem;
}
@media all and (max-width: 896px) {
  .navigation .list_navigation {
    font-size: 1rem;
    padding: 80px 30px 30px;
  }
}
.navigation .list_navigation > li {
  margin-bottom: 30px;
}
.navigation .list_navigation > li > a {
  display: block;
  color: #fff;
}
.navigation .list_navigation > li > a:hover .ttl_nav::after {
  left: 10px;
}
.navigation .ttl_nav {
  font-size: 1.75rem;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
}
@media all and (max-width: 896px) {
  .navigation .ttl_nav {
    font-size: 1.375rem;
  }
}
.navigation .ttl_nav::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #fff;
  transition: all 0.5s ease-out;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* footer
*****************************************************************/
.footer {
  padding: 100px 0 120px;
  text-align: center;
  background: #fff;
}
@media all and (max-width: 896px) {
  .footer {
    padding: 50px 0 120px;
  }
}
.footer .footer_inner {
  width: calc(100% - 40px);
  margin: 0 auto;
}
.footer .name_footer {
  font-size: 4.875rem;
  font-family: 'Hind', sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  line-height: 1.1;
}
@media all and (max-width: 896px) {
  .footer .name_footer {
    font-size: 2.5rem;
  }
}
.footer .name_footer > a {
  color: #478CAC;
}
.footer .name_footer .bold {
  font-weight: 500;
  color: #595757;
}
.footer .copyright {
  font-family: 'Hind', sans-serif;
}
@media all and (max-width: 896px) {
  .footer .copyright {
    font-size: 0.75rem;
  }
}

/* breadclumb
*****************************************************************/
.area_breadclumb {
  padding-top: 20px;
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
}
.area_breadclumb .list_breadclumb {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.875rem;
}
.area_breadclumb .list_breadclumb > li {
  margin-right: 10px;
}
.area_breadclumb .list_breadclumb > li::after {
  content: ">";
  margin-left: 10px;
}
.area_breadclumb .list_breadclumb > li:last-of-type::after {
  content: none;
}
.area_breadclumb .list_breadclumb > li > a {
  text-decoration: underline;
}

/* pagetop
*****************************************************************/
.pagetop {
  text-align: center;
  position: fixed;
  right: 30px;
  z-index: 80;
  cursor: pointer;
}
@media all and (max-width: 896px) {
  .pagetop {
    right: 10px;
  }
}
.pagetop .line_pagetop {
  width: 2px;
  height: 60px;
  background: #919292;
  margin: 0 auto 10px;
  position: relative;
}
@media all and (max-width: 896px) {
  .pagetop .line_pagetop {
    height: 50px;
  }
}
.pagetop .line_pagetop::after {
  content: "";
  width: 2px;
  height: 15px;
  background: #919292;
  position: absolute;
  top: 0;
  left: 50%;
  transform-origin: right top;
  transform: translate(-50%, 0) rotate(-15deg);
}
@media all and (max-width: 896px) {
  .pagetop .line_pagetop::after {
    height: 10px;
  }
}
.pagetop .txt_pagetop {
  color: #919292;
  font-size: 0.8125rem;
}
@media all and (max-width: 896px) {
  .pagetop .txt_pagetop {
    font-size: 0.6875rem;
  }
}

/* top
*****************************************************************/
.mainvisual .slide_content {
  display: block;
  height: 100vh;
  min-height: 800px;
  position: relative;
}
@media all and (max-width: 896px) {
  .mainvisual .slide_content {
    min-height: 560px;
  }
}
.mainvisual .slide_content:hover {
  opacity: 1;
}
.mainvisual .slide_content.img01 {
  background: url("../images/top/slide01.jpg") left 20% bottom 30%/cover no-repeat;
}
@media all and (max-width: 480px) {
  .mainvisual .slide_content.img01 {
    background: url("../images/top/slide01_sp.jpg") center bottom 30%/cover no-repeat;
  }
}
.mainvisual .slide_content.img02 {
  background: url("../images/top/slide02.jpg") right 20% bottom/cover no-repeat;
}
@media all and (max-width: 480px) {
  .mainvisual .slide_content.img02 {
    background: url("../images/top/slide02_sp.jpg") center bottom/cover no-repeat;
  }
}
.mainvisual .slide_content.img03 {
  background: url("../images/top/slide03.jpg") right 20% bottom 30%/cover no-repeat;
}
@media all and (max-width: 480px) {
  .mainvisual .slide_content.img03 {
    background: url("../images/top/slide03_sp.jpg") right bottom 50%/cover no-repeat;
  }
}
.mainvisual .slide_content.img04 {
  background: url("../images/top/slide04.jpg") right 20% bottom/cover no-repeat;
}
.mainvisual .box_slide01 {
  text-align: center;
  width: calc(100% - 40px);
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media all and (max-width: 896px) {
  .mainvisual .box_slide01 {
    top: 80px;
  }
}
.mainvisual .subttl_slide01 {
  font-size: 1.25rem;
  font-weight: bold;
  text-shadow: 0px 0px 20px white, 0px 0px 20px white, 0px 0px 20px white;
}
@media all and (max-width: 896px) {
  .mainvisual .subttl_slide01 {
    font-size: 1rem;
  }
}
.mainvisual .ttl_slide01 {
  font-size: 6.125rem;
  font-family: 'Hind', sans-serif;
  font-weight: 300;
  color: #478CAC;
  letter-spacing: 0.01em;
  margin: -30px auto;
  text-shadow: 0px 0px 20px white, 0px 0px 20px white, 0px 0px 20px white;
  line-height: 1.1;
  max-width: 820px;
}
@media all and (max-width: 896px) {
  .mainvisual .ttl_slide01 {
    font-size: 3.125rem;
    margin: -25px auto;
    max-width: 340px;
  }
}
.mainvisual .ttl_slide01 .bold {
  font-weight: 500;
  color: #595757;
}
.mainvisual .txt_slide01 {
  font-size: 1.125rem;
  line-height: 1.6;
  text-shadow: 0px 0px 20px white, 0px 0px 20px white, 0px 0px 20px white;
}
@media all and (max-width: 896px) {
  .mainvisual .txt_slide01 {
    font-size: 0.875rem;
  }
}
.mainvisual .ttl_slide {
  font-size: 2.625rem;
  font-family: 'Hind', sans-serif;
  font-weight: 300;
  color: #fff;
  position: absolute;
  top: 30px;
  left: 30px;
  line-height: 1.1;
}
@media all and (max-width: 896px) {
  .mainvisual .ttl_slide {
    font-size: 2rem;
    top: 90px;
    left: 20px;
  }
}
.mainvisual .ttl_slide .bold {
  font-weight: 500;
}
.mainvisual .box_slide {
  color: #fff;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 30px;
  right: 30px;
}
@media all and (max-width: 896px) {
  .mainvisual .box_slide {
    display: block;
    bottom: 80px;
    right: 20px;
    padding-left: 20px;
  }
}
.mainvisual .box_slide .number_slide {
  display: flex;
  align-items: center;
}
.mainvisual .box_slide .number_slide > p:nth-of-type(1) {
  font-size: 2.25rem;
  font-family: 'Hind', sans-serif;
  font-weight: 300;
  margin-right: 10px;
}
@media all and (max-width: 896px) {
  .mainvisual .box_slide .number_slide > p:nth-of-type(1) {
    font-size: 1.625rem;
  }
}
.mainvisual .box_slide .number_slide > p:nth-of-type(2) {
  font-size: 8.125rem;
  font-family: 'Hind', sans-serif;
  font-weight: 300;
  margin-right: 30px;
}
@media all and (max-width: 896px) {
  .mainvisual .box_slide .number_slide > p:nth-of-type(2) {
    font-size: 4.5rem;
  }
}
.mainvisual .box_slide .txt_slide {
  font-size: 1.875rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin: -15px 0 0;
}
@media all and (max-width: 896px) {
  .mainvisual .box_slide .txt_slide {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }
}
.mainvisual .name_right {
  right: 20px;
  bottom: 20px;
}
@media all and (max-width: 896px) {
  .mainvisual .name_right {
    right: 15px;
    bottom: 15px;
  }
}
.mainvisual .name_left {
  left: 20px;
  bottom: 20px;
}
@media all and (max-width: 896px) {
  .mainvisual .name_left {
    left: 15px;
    bottom: 15px;
  }
}

.area_intro {
  padding-top: 100px;
}
@media all and (max-width: 896px) {
  .area_intro {
    padding-top: 80px;
  }
}
.area_intro .sec_intro {
  width: calc(100% - 40px);
  margin: 0 auto;
}
.area_intro .ttl_intro {
  text-align: center;
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media all and (max-width: 896px) {
  .area_intro .ttl_intro {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }
}
.area_intro .txt_intro {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.8;
}
@media all and (max-width: 896px) {
  .area_intro .txt_intro {
    font-size: 1.125rem;
  }
}
@media all and (max-width: 480px) {
  .area_intro .txt_intro {
    text-align: left;
  }
}

.area_use {
  text-align: center;
  padding-top: 100px;
}
@media all and (max-width: 896px) {
  .area_use {
    padding-top: 80px;
  }
}
.area_use .sec_use {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
}
.area_use .ttl_use {
  text-align: center;
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media all and (max-width: 896px) {
  .area_use .ttl_use {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}
.area_use .box_use {
  margin-bottom: 50px;
}
.area_use .subttl_use {
  display: inline-block;
  padding: 10px;
  background: #fff;
  font-size: 1.375rem;
  position: relative;
  margin-bottom: 20px;
}
@media all and (max-width: 896px) {
  .area_use .subttl_use {
    font-size: 1.125rem;
  }
}
.area_use .subttl_use::before {
  content: "";
  width: 420px;
  height: 1px;
  background: #919292;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}
@media all and (max-width: 896px) {
  .area_use .subttl_use::before {
    width: 240px;
  }
}
.area_use .list_use {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media all and (max-width: 896px) {
  .area_use .list_use {
    margin-bottom: -30px;
  }
}
.area_use .list_use > li {
  box-sizing: border-box;
  padding: 25px 20px;
  width: 22%;
  background: #fff;
  border: 1px solid #919292;
  border-left: 6px solid #919292;
}
@media all and (max-width: 896px) {
  .area_use .list_use > li {
    padding: 15px 10px;
    width: 47%;
    margin-bottom: 30px;
  }
}
.area_use .number_use {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media all and (max-width: 896px) {
  .area_use .number_use {
    font-size: 1.25rem;
  }
}
.area_use .txt_use {
  font-size: 1.125rem;
}
@media all and (max-width: 896px) {
  .area_use .txt_use {
    font-size: 1rem;
  }
}

.area_scene {
  padding-top: 100px;
  margin-bottom: 100px;
}
@media all and (max-width: 896px) {
  .area_scene {
    padding-top: 30px;
    margin-bottom: 50px;
  }
}
.area_scene .list_scene > li {
  margin-bottom: 300px;
  position: relative;
}
@media all and (max-width: 896px) {
  .area_scene .list_scene > li {
    margin-bottom: 130px;
  }
}
.area_scene .list_scene > li::after {
  content: "";
  display: block;
  width: 130px;
  height: 130px;
  background: url("../images/top/mark_cross.svg") center center/contain no-repeat;
  position: absolute;
  left: 50%;
  bottom: -280px;
  transform: translate(-50%, -50%);
}
@media all and (max-width: 896px) {
  .area_scene .list_scene > li::after {
    width: 65px;
    height: 65px;
    bottom: -130px;
  }
}
.area_scene .list_scene > li:last-of-type {
  margin-bottom: 0;
}
.area_scene .list_scene > li:last-of-type::after {
  content: none;
}
.area_scene .list_scene > li.reverse > a {
  flex-direction: row-reverse;
}
.area_scene .list_scene > li.reverse .box_scene {
  margin: 0 auto 0 0;
}
.area_scene .list_scene > li > a {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
@media all and (max-width: 896px) {
  .area_scene .list_scene > li > a {
    justify-content: center;
  }
}
.area_scene .sec_scene {
  width: 42%;
}
@media all and (max-width: 896px) {
  .area_scene .sec_scene {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 10px;
  }
}
@media all and (max-width: 480px) {
  .area_scene .sec_scene {
    margin-bottom: 0;
  }
}
.area_scene .bg_scene {
  width: 55%;
  position: relative;
}
@media all and (max-width: 896px) {
  .area_scene .bg_scene {
    width: calc(100% - 40px);
    height: 300px;
  }
}
@media all and (max-width: 480px) {
  .area_scene .bg_scene {
    height: 250px;
  }
}
.area_scene .bg_scene.img01 {
  background: url("../images/top/scene1_img01.jpg") center center/cover no-repeat;
}
.area_scene .bg_scene.img02 {
  background: url("../images/top/scene2_img01.jpg") center center/cover no-repeat;
}
.area_scene .bg_scene.img03 {
  background: url("../images/top/scene3_img01.jpg") center center/cover no-repeat;
}
.area_scene .box_scene {
  max-width: 430px;
  margin: 0 0 0 auto;
}
@media all and (max-width: 896px) {
  .area_scene .box_scene {
    max-width: none;
  }
}
.area_scene .number_scene {
  display: flex;
  align-items: center;
  font-family: 'Hind', sans-serif;
}
.area_scene .number_scene > p:nth-of-type(1) {
  font-size: 1.25rem;
  font-weight: 500;
  color: #478CAC;
  margin-right: 15px;
}
@media all and (max-width: 896px) {
  .area_scene .number_scene > p:nth-of-type(1) {
    font-size: 1.125rem;
    margin-right: 10px;
  }
}
.area_scene .number_scene > p:nth-of-type(2) {
  font-size: 3.125rem;
  font-weight: 300;
}
@media all and (max-width: 896px) {
  .area_scene .number_scene > p:nth-of-type(2) {
    font-size: 2.5rem;
  }
}
.area_scene .ttl_scene {
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media all and (max-width: 896px) {
  .area_scene .ttl_scene {
    font-size: 1.25rem;
  }
}
.area_scene .txt_scene {
  font-size: 1.125rem;
  margin-bottom: 20px;
}
@media all and (max-width: 896px) {
  .area_scene .txt_scene {
    font-size: 1rem;
  }
}
.area_scene .point_scene {
  box-sizing: border-box;
  padding: 20px;
  border: 1px solid #919292;
  margin-bottom: 30px;
}
@media all and (max-width: 896px) {
  .area_scene .point_scene {
    max-width: 400px;
    padding: 15px;
  }
}
.area_scene .ttl_point {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media all and (max-width: 896px) {
  .area_scene .ttl_point {
    font-size: 1.125rem;
  }
}
.area_scene .list_point > li {
  padding-left: 1.2em;
  margin-bottom: 5px;
  position: relative;
}
.area_scene .list_point > li:last-of-type {
  margin-bottom: 0;
}
.area_scene .list_point > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.area_scene .list_img {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.area_scene .list_img > li {
  width: 49.5%;
  position: relative;
}
@media all and (max-width: 480px) {
  .area_scene .list_img > li {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* scene
*****************************************************************/
.box_ttl {
  text-align: center;
  margin-bottom: 50px;
}
@media all and (max-width: 896px) {
  .box_ttl {
    margin-bottom: 30px;
  }
}
.box_ttl.padding {
  padding: 0 20px;
}
.box_ttl > p {
  font-size: 5rem;
  font-family: 'Hind', sans-serif;
  font-weight: 300;
  color: #478CAC;
  letter-spacing: 0.1em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.2;
  margin-bottom: 5px;
}
@media all and (max-width: 896px) {
  .box_ttl > p {
    font-size: 2.25rem;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
  }
}
.box_ttl > h2 {
  display: inline-block;
  font-size: 1.75rem;
  font-weight: bold;
  background: #fff;
  letter-spacing: 0.1em;
  margin-top: -10px;
  padding: 0 1.4em;
  position: relative;
}
@media all and (max-width: 896px) {
  .box_ttl > h2 {
    font-size: 1.125rem;
  }
}
.box_ttl > h2::before {
  content: "";
  display: block;
  width: 1em;
  height: 2px;
  background: #000000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.box_ttl > h2::after {
  content: "";
  display: block;
  width: 1em;
  height: 2px;
  background: #000000;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.area_mainvisual {
  height: 100vh;
  min-height: 800px;
  position: relative;
}
@media all and (max-width: 896px) {
  .area_mainvisual {
    min-height: 560px;
  }
}
.area_mainvisual.scene1 {
  background: url("../images/scene1/main_img.jpg") center center/cover no-repeat;
}
.area_mainvisual.scene2 {
  background: url("../images/scene2/main_img.jpg") center center/cover no-repeat;
}
.area_mainvisual.scene3 {
  background: url("../images/scene3/main_img.jpg") center center/cover no-repeat;
}
.area_mainvisual .txt_workstyle {
  font-size: 3.125rem;
  color: #fff;
  font-weight: 300;
  font-family: 'Hind', sans-serif;
  letter-spacing: 0.01em;
  position: absolute;
  top: 30px;
  left: 30px;
}
@media all and (max-width: 896px) {
  .area_mainvisual .txt_workstyle {
    text-align: right;
    font-size: 2rem;
    padding-left: 20px;
    top: 100px;
    left: auto;
    right: 20px;
  }
}
.area_mainvisual .txt_workstyle .bold {
  font-weight: 500;
}
.area_mainvisual .sec_ttl {
  color: #fff;
  font-family: 'Zen Old Mincho', serif;
  width: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media all and (max-width: 896px) {
  .area_mainvisual .sec_ttl {
    display: block;
    bottom: 80px;
    left: 20px;
    transform: translate(0, 0);
  }
}
.area_mainvisual .sec_ttl > h1 {
  font-size: 2.875rem;
  font-weight: 700;
  margin: 30px 0 0 40px;
}
@media all and (max-width: 896px) {
  .area_mainvisual .sec_ttl > h1 {
    font-size: 1.4375rem;
    margin: 0;
  }
}
.area_mainvisual .box_number {
  font-weight: 400;
  display: flex;
  align-items: center;
}
.area_mainvisual .box_number > p:nth-of-type(1) {
  font-size: 2.25rem;
  letter-spacing: 0.1em;
  margin-top: 15px;
}
@media all and (max-width: 896px) {
  .area_mainvisual .box_number > p:nth-of-type(1) {
    font-size: 1.5rem;
    margin-top: 10px;
  }
}
.area_mainvisual .box_number > p:nth-of-type(2) {
  font-size: 10rem;
  margin-left: -15px;
}
@media all and (max-width: 896px) {
  .area_mainvisual .box_number > p:nth-of-type(2) {
    font-size: 5.625rem;
    margin-left: -5px;
  }
}

.area_situation {
  padding-top: 100px;
}
@media all and (max-width: 896px) {
  .area_situation {
    padding-top: 80px;
  }
}
.area_situation .sec_situation {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
}
.area_situation .box_situation {
  box-sizing: border-box;
  padding: 50px 20px;
  border: 1px solid #919292;
  border-left: 6px solid #919292;
  font-size: 1.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 896px) {
  .area_situation .box_situation {
    padding: 30px 20px;
    font-size: 1.125rem;
  }
}
.area_situation .txt_situation {
  text-align: center;
  font-size: 1.375rem;
  margin-bottom: 30px;
}
@media all and (max-width: 896px) {
  .area_situation .txt_situation {
    font-size: 1.125rem;
    margin-bottom: 20px;
  }
}
.area_situation .list_situation > li {
  margin-bottom: 10px;
  padding-left: 1.2em;
  position: relative;
}
.area_situation .list_situation > li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.area_situation .list_situation > li:last-of-type {
  margin-bottom: 0;
}

.area_schedule {
  padding-top: 100px;
}
@media all and (max-width: 896px) {
  .area_schedule {
    padding-top: 80px;
  }
}
.area_schedule .copy_schedule {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 50px;
}
@media all and (max-width: 896px) {
  .area_schedule .copy_schedule {
    font-size: 1.125rem;
    margin-bottom: 30px;
  }
}
.area_schedule .list_schedule > li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media all and (max-width: 896px) {
  .area_schedule .list_schedule > li {
    margin-bottom: 80px;
  }
}
.area_schedule .list_schedule > li:last-of-type {
  margin-bottom: 0;
}
.area_schedule .list_schedule > li.reverse {
  flex-direction: row-reverse;
}
.area_schedule .sec_schedule {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 896px) {
  .area_schedule .sec_schedule {
    width: 100%;
  }
}
.area_schedule .box_schedule {
  max-width: 550px;
  margin: auto;
  padding: 20px;
}
@media all and (max-width: 896px) {
  .area_schedule .box_schedule {
    padding-bottom: 30px;
  }
}
.area_schedule .box_schedule.w580 {
  max-width: 580px;
}
.area_schedule .box_day {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.area_schedule .txt_day {
  margin-right: 20px;
}
.area_schedule .txt_day .day_en {
  font-family: 'Pinyon Script', cursive;
  color: #478CAC;
  font-size: 3.5rem;
}
@media all and (max-width: 896px) {
  .area_schedule .txt_day .day_en {
    font-size: 2.5rem;
  }
}
.area_schedule .txt_day .day_number {
  font-family: 'Hind', sans-serif;
  font-size: 3.75rem;
  font-weight: 300;
}
@media all and (max-width: 896px) {
  .area_schedule .txt_day .day_number {
    font-size: 3.125rem;
  }
}
.area_schedule .txt_week {
  font-size: 2.625rem;
  color: #478CAC;
  letter-spacing: 0.02em;
  font-family: 'Hind', sans-serif;
  font-weight: 400;
}
@media all and (max-width: 896px) {
  .area_schedule .txt_week {
    font-size: 2rem;
  }
}
.area_schedule .img_schedule {
  width: 50%;
  position: relative;
}
@media all and (max-width: 896px) {
  .area_schedule .img_schedule {
    width: 100%;
  }
}
.area_schedule .img_schedule.day1 {
  display: flex;
  justify-content: space-between;
}
.area_schedule .img_day {
  position: relative;
}
.area_schedule .img_day4 {
  padding-top: 69.6%;
  position: relative;
}
.area_schedule .day4_img01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 59%;
}
.area_schedule .day4_img02 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 59%;
}
.area_schedule .box_img01 {
  width: 36%;
}
.area_schedule .box_img02 {
  width: 62%;
}
.area_schedule .box_img02 > li {
  margin-bottom: 2.5%;
  position: relative;
}
.area_schedule .box_img02 > li:last-of-type {
  margin-bottom: 0;
}
.area_schedule .ttl_schedule {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 40px;
}
@media all and (max-width: 896px) {
  .area_schedule .ttl_schedule {
    font-size: 1.125rem;
    margin-bottom: 30px;
  }
}
.area_schedule .ttl_schedule::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 2px;
  background: #000000;
  vertical-align: middle;
  margin-right: 0.4em;
}
.area_schedule .ttl_schedule::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 2px;
  background: #000000;
  vertical-align: middle;
  margin-left: 0.4em;
}
.area_schedule .txt_schedule {
  font-size: 1.125rem;
  line-height: 1.6;
}
@media all and (max-width: 896px) {
  .area_schedule .txt_schedule {
    font-size: 1rem;
  }
}
.area_schedule .box_facility {
  box-sizing: border-box;
  margin-top: 40px;
  padding: 20px;
  border: 1px solid #000000;
}
.area_schedule .ttl_facility {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.area_schedule .list_facility {
  font-size: 1.125rem;
}
@media all and (max-width: 896px) {
  .area_schedule .list_facility {
    font-size: 1rem;
  }
}
.area_schedule .list_facility > li {
  padding-left: 1.2em;
  position: relative;
}
.area_schedule .list_facility > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.area_company {
  padding-top: 100px;
}
@media all and (max-width: 896px) {
  .area_company {
    padding-top: 80px;
  }
}
.area_company .sec_company {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 50px 100px;
  border: 1px solid #919292;
  border-left: 6px solid #919292;
}
@media all and (max-width: 896px) {
  .area_company .sec_company {
    padding: 20px;
  }
}
.area_company .ttl_company {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #478CAC;
  margin-bottom: 20px;
  padding-right: 20px;
  background: #fff;
  position: relative;
}
@media all and (max-width: 896px) {
  .area_company .ttl_company {
    font-size: 1.125rem;
  }
}
.area_company .ttl_company::after {
  content: "";
  display: inline-block;
  width: 160px;
  height: 2px;
  background: #919292;
  vertical-align: middle;
  margin-left: 0.5em;
}
@media all and (max-width: 896px) {
  .area_company .ttl_company::after {
    width: 50px;
  }
}
.area_company .txt_company {
  font-size: 2.25rem;
  font-weight: bold;
  color: #478CAC;
  margin-bottom: 40px;
}
@media all and (max-width: 896px) {
  .area_company .txt_company {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }
}
.area_company .list_company {
  font-size: 1.625rem;
}
@media all and (max-width: 896px) {
  .area_company .list_company {
    font-size: 1.125rem;
  }
}
.area_company .list_company > li {
  margin-bottom: 10px;
  padding-left: 1.2em;
  position: relative;
}
.area_company .list_company > li:last-of-type {
  margin-bottom: 0;
}
.area_company .list_company > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.area_recommend {
  padding-top: 100px;
  margin-bottom: 100px;
}
@media all and (max-width: 896px) {
  .area_recommend {
    padding-top: 80px;
    margin-bottom: 80px;
  }
}
.area_recommend .sec_recommend {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
}
.area_recommend .box_recommend {
  box-sizing: border-box;
  padding: 20px 20px 40px;
  border: 1px solid #000000;
}
.area_recommend .list_recommend {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.area_recommend .list_recommend > li {
  width: 49.5%;
}
@media all and (max-width: 896px) {
  .area_recommend .list_recommend > li {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 896px) {
  .area_recommend .list_recommend > li:last-of-type {
    margin-bottom: 0;
  }
}
.area_recommend .list_recommend > li > a {
  display: block;
}
.area_recommend .name_recommend {
  margin-top: 10px;
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
}
@media all and (max-width: 896px) {
  .area_recommend .name_recommend {
    font-size: 1rem;
  }
}
.area_recommend .name_recommend::before {
  content: "・";
  position: absolude;
  top: 0;
  left: 0;
}
.area_recommend .txt_recommend {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media all and (max-width: 896px) {
  .area_recommend .txt_recommend {
    font-size: 1rem;
  }
}
@media all and (max-width: 480px) {
  .area_recommend .txt_recommend {
    text-align: left;
  }
}

.area_special {
  padding-top: 100px;
}
@media all and (max-width: 896px) {
  .area_special {
    padding-top: 80px;
  }
}
.area_special .sec_special {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
}
.area_special .ttl_special {
  text-align: center;
  font-size: 2.375rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media all and (max-width: 896px) {
  .area_special .ttl_special {
    font-size: 1.375rem;
  }
}
.area_special .ttl_special > span {
  display: inline-block;
  padding: 0 1.4em;
  position: relative;
}
.area_special .ttl_special > span::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 2px;
  background: #000000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.area_special .ttl_special > span::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 2px;
  background: #000000;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.area_special .box_special {
  width: 49.5%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 20px 20px 40px;
  border: 1px solid #000000;
}
@media all and (max-width: 896px) {
  .area_special .box_special {
    width: 100%;
  }
}
.area_special .box_special > a {
  display: block;
}
.area_special .name_special {
  margin-top: 10px;
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
}
@media all and (max-width: 896px) {
  .area_special .name_special {
    font-size: 1rem;
  }
}
.area_special .name_special::before {
  content: "・";
  position: absolude;
  top: 0;
  left: 0;
}

.area_plan {
  padding-top: 100px;
}
@media all and (max-width: 896px) {
  .area_plan {
    padding-top: 80px;
  }
}
.area_plan .sec_plan {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
}
.area_plan .ttl_plan {
  text-align: center;
  font-size: 2.375rem;
  font-weight: bold;
  margin-bottom: 50px;
}
@media all and (max-width: 896px) {
  .area_plan .ttl_plan {
    font-size: 1.375rem;
    margin-bottom: 30px;
  }
}
.area_plan .ttl_plan > span {
  display: inline-block;
  padding: 0 1.4em;
  position: relative;
}
.area_plan .ttl_plan > span::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 2px;
  background: #000000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.area_plan .ttl_plan > span::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 2px;
  background: #000000;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.area_plan .txt_plan {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 50px;
}
@media all and (max-width: 896px) {
  .area_plan .txt_plan {
    font-size: 1.125rem;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 480px) {
  .area_plan .txt_plan {
    text-align: left;
  }
}
.area_plan .list_plan {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 1.625rem;
}
@media all and (max-width: 896px) {
  .area_plan .list_plan {
    font-size: 1.125rem;
  }
}
.area_plan .list_plan > li {
  text-align: center;
  width: 400px;
  margin: 40px;
}
@media all and (max-width: 896px) {
  .area_plan .list_plan > li {
    margin: 10px;
  }
}
.area_plan .list_plan > li > a {
  box-sizing: border-box;
  padding: 15px 40px;
  display: block;
  border: 1px solid #919292;
  position: relative;
}
@media all and (max-width: 896px) {
  .area_plan .list_plan > li > a {
    padding-left: 20px;
  }
}
.area_plan .list_plan > li > a::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("../images/arrow.svg") center center/contain no-repeat;
  vertical-align: middle;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}

/* list
*****************************************************************/
.second_mainvisual {
  width: 100%;
  height: 540px;
}
.second_mainvisual .area_second_mainvisual {
  width: 100%;
  height: 100%;
  background: url("../images/list/main_img.jpg") center center/cover no-repeat;
  position: relative;
}
.second_mainvisual .txt_workstyle {
  font-size: 3rem;
  color: #fff;
  font-weight: 300;
  font-family: 'Hind', sans-serif;
  letter-spacing: 0.01em;
  position: absolute;
  top: 30px;
  left: 30px;
}
@media all and (max-width: 896px) {
  .second_mainvisual .txt_workstyle {
    font-size: 1.75rem;
    padding-right: 20px;
    top: 80px;
    left: 20px;
  }
}
.second_mainvisual .txt_workstyle .bold {
  font-weight: 500;
}
.second_mainvisual .sec_ttl {
  color: #fff;
  text-align: center;
  width: calc(100% - 40px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.second_mainvisual .ttl_en {
  font-size: 4rem;
  color: #fff;
  font-weight: 300;
  font-family: 'Hind', sans-serif;
  letter-spacing: 0.01em;
}
@media all and (max-width: 896px) {
  .second_mainvisual .ttl_en {
    font-size: 2.375rem;
    margin-bottom: 10px;
  }
}
.second_mainvisual .ttl_en .bold {
  font-weight: 500;
}
.second_mainvisual .ttl_main {
  font-size: 1.5rem;
}
@media all and (max-width: 896px) {
  .second_mainvisual .ttl_main {
    font-size: 1.375rem;
  }
}
.second_mainvisual .ttl_main::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 2px;
  background: #fff;
  vertical-align: middle;
  margin-right: 0.4em;
}
.second_mainvisual .ttl_main::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 2px;
  background: #fff;
  vertical-align: middle;
  margin-left: 0.4em;
}

.area_hotel {
  padding-top: 100px;
}
@media all and (max-width: 896px) {
  .area_hotel {
    padding-top: 80px;
  }
}
.area_hotel .sec_hotel {
  box-sizing: border-box;
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid #919292;
  padding: 60px 40px;
}
@media all and (max-width: 896px) {
  .area_hotel .sec_hotel {
    padding: 40px 20px;
  }
}
.area_hotel .txt_hotel {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media all and (max-width: 896px) {
  .area_hotel .txt_hotel {
    font-size: 1.125rem;
  }
}
@media all and (max-width: 480px) {
  .area_hotel .txt_hotel {
    text-align: left;
  }
}
.area_hotel .subttl_hotel {
  text-align: center;
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media all and (max-width: 896px) {
  .area_hotel .subttl_hotel {
    font-size: 1.125rem;
  }
}
.area_hotel .list_hotel {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 22px;
}
@media all and (max-width: 1240px) {
  .area_hotel .list_hotel {
    gap: 0 20px;
  }
}
@media all and (max-width: 600px) {
  .area_hotel .list_hotel {
    justify-content: space-between;
    gap: 0;
  }
}
.area_hotel .list_hotel > li {
  width: 32%;
  margin-bottom: 30px;
}
@media all and (max-width: 896px) {
  .area_hotel .list_hotel > li {
    width: 48%;
  }
}
.area_hotel .list_hotel > li > p {
  font-size: 0.875rem;
  margin-top: 10px;
}
.area_hotel .link_hotel {
  text-align: center;
}
.area_hotel .link_hotel > a {
  box-sizing: border-box;
  padding: 15px 40px;
  display: inline-block;
  border: 1px solid #919292;
  position: relative;
}
@media all and (max-width: 896px) {
  .area_hotel .link_hotel > a {
    padding-left: 20px;
  }
}
.area_hotel .link_hotel > a::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("../images/arrow.svg") center center/contain no-repeat;
  vertical-align: middle;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}
.area_hotel .sec_pickup {
  box-sizing: border-box;
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid #919292;
  padding: 60px 20px;
}
@media all and (max-width: 896px) {
  .area_hotel .sec_pickup {
    padding: 40px 10px 0;
  }
}
.area_hotel .ttl_pickup {
  text-align: center;
  font-size: 3.125rem;
  font-family: 'Hind', sans-serif;
  font-weight: 300;
  color: #478CAC;
  letter-spacing: 0.1em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.2;
  margin-bottom: 40px;
}
@media all and (max-width: 896px) {
  .area_hotel .ttl_pickup {
    font-size: 1.875rem;
  }
}
.area_hotel .ttl_pickup::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 2px;
  background: #919292;
  vertical-align: middle;
  margin-right: 0.4em;
}
.area_hotel .ttl_pickup::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 2px;
  background: #919292;
  vertical-align: middle;
  margin-left: 0.4em;
}
.area_hotel .list_pickup {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.area_hotel .list_pickup > li {
  box-sizing: border-box;
  padding: 0 20px 40px;
  width: calc(100% / 3);
  border-right: 1px solid #919292;
  position: relative;
}
@media all and (max-width: 896px) {
  .area_hotel .list_pickup > li {
    width: 100%;
    padding: 0 10px 60px;
    margin-bottom: 30px;
    border-right: none;
    border-bottom: 1px solid #919292;
  }
}
.area_hotel .list_pickup > li:last-of-type {
  border-right: none;
}
@media all and (max-width: 896px) {
  .area_hotel .list_pickup > li:last-of-type {
    border-bottom: none;
  }
}
.area_hotel .box_pickup {
  height: 250px;
}
@media all and (max-width: 896px) {
  .area_hotel .box_pickup {
    height: auto;
  }
}
.area_hotel .name_pickup {
  margin-top: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
}
@media all and (max-width: 896px) {
  .area_hotel .name_pickup {
    font-size: 1rem;
  }
}
.area_hotel .name_pickup::before {
  content: "・";
  position: absolude;
  top: 0;
  left: 0;
}
.area_hotel .txt_pickup {
  margin-top: 20px;
  font-size: 1.125rem;
  margin-bottom: 40px;
}
.area_hotel .list_amenity {
  font-size: 0.8125rem;
  column-count: 2;
  padding: 10px 0;
  border-top: 1px solid #919292;
  border-bottom: 1px solid #919292;
  margin-bottom: 20px;
}
.area_hotel .list_amenity > li {
  padding-left: 1em;
  margin-bottom: 10px;
  position: relative;
}
.area_hotel .list_amenity > li::before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background: #000000;
  position: absolute;
  top: 0.3em;
  left: 0;
}
.area_hotel .list_amenity > li.none::before {
  content: none;
}
.area_hotel .link_pickup {
  color: #919292;
  position: absolute;
  left: 20px;
  bottom: 0;
}
@media all and (max-width: 896px) {
  .area_hotel .link_pickup {
    left: 10px;
    bottom: 20px;
  }
}
.area_hotel .link_pickup > a {
  color: #919292;
  text-decoration: underline;
}
.area_hotel .txt_address {
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
}

.area_camping {
  padding-top: 100px;
}
@media all and (max-width: 896px) {
  .area_camping {
    padding-top: 80px;
  }
}
.area_camping .sec_camping {
  box-sizing: border-box;
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid #919292;
  padding: 60px 40px;
}
@media all and (max-width: 896px) {
  .area_camping .sec_camping {
    padding: 40px 20px;
  }
}
.area_camping .box_camping {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}
.area_camping .box_txt {
  width: 36%;
}
@media all and (max-width: 896px) {
  .area_camping .box_txt {
    width: 100%;
    margin-bottom: 30px;
  }
}
.area_camping .box_img {
  width: 62%;
}
@media all and (max-width: 896px) {
  .area_camping .box_img {
    width: 100%;
  }
}
.area_camping .ttl_camping {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}
@media all and (max-width: 896px) {
  .area_camping .ttl_camping {
    font-size: 1.125rem;
  }
}
.area_camping .subttl_camping {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}
@media all and (max-width: 896px) {
  .area_camping .subttl_camping {
    font-size: 1.125rem;
  }
}
.area_camping .txt_camping {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media all and (max-width: 896px) {
  .area_camping .txt_camping {
    font-size: 1rem;
  }
}
.area_camping .link_camping {
  text-align: center;
}
.area_camping .link_camping > a {
  box-sizing: border-box;
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #919292;
  position: relative;
}
@media all and (max-width: 896px) {
  .area_camping .link_camping > a {
    padding-left: 20px;
  }
}
.area_camping .link_camping > a::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("../images/arrow.svg") center center/contain no-repeat;
  vertical-align: middle;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}

.area_download {
  padding-top: 100px;
  margin-bottom: 100px;
}
@media all and (max-width: 896px) {
  .area_download {
    padding-top: 80px;
    margin-bottom: 80px;
  }
}
.area_download .sec_download {
  box-sizing: border-box;
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid #919292;
  padding: 60px 40px;
}
@media all and (max-width: 896px) {
  .area_download .sec_download {
    padding: 40px 20px;
  }
}
.area_download .box_ttl > h2 {
  margin-top: 0;
}
.area_download .txt_download {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 50px;
}
@media all and (max-width: 896px) {
  .area_download .txt_download {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}
.area_download .list_download {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: -2%;
}
@media all and (max-width: 896px) {
  .area_download .list_download {
    margin-bottom: -4%;
  }
}
.area_download .list_download > li {
  width: 32%;
  margin-bottom: 2%;
}
@media all and (max-width: 896px) {
  .area_download .list_download > li {
    width: 48%;
    margin-bottom: 4%;
  }
}
