@charset "UTF-8";
/* ----------------------------------------------------------------------------------------------------
  RESET
-------------------------------------------------------------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* ----------------------------------------------------------------------------------------------------
  COMMON
-------------------------------------------------------------------------------------------------------*/
@font-face {
  font-family: 'CrimsonText';
  src: url("../font/CrimsonText-Regular.ttf") format("truetype"); }
@font-face {
  font-family: 'CrimsonTextSemiBold';
  src: url("../font/CrimsonText-SemiBold.ttf") format("truetype"); }
body {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif; }

.clearfix::after {
  content: " ";
  display: block;
  clear: both; }

a.fadeBtn {
  opacity: 1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s; }

a.fadeBtn:hover {
  opacity: .7;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s; }

#container {
  min-width: 320px;
  overflow-x: hidden;
  background: url("../img/bg_wave.png"); }

#overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 20;
  display: none; }

.spOnly {
  display: none; }

img {
  vertical-align: bottom; }

@media screen and (max-width: 768px) {
  img {
    width: 100%;
    height: auto; }

  .pcOnly {
    display: none; }

  .spOnly {
    display: block; } }
/* ----------------------------------------------------------------------------------------------------
  HEADER
-------------------------------------------------------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------
  header
-------------------------------------------------------------------------------------------------------*/
#header {
  width: 100%;
  position: fixed;
  z-index: 100;
  transition: all 0.3s; }

#header-inr {
  max-width: 1366px;
  height: 100px;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s; }

#header-txt {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: #B6A88E; }

#header-logo-block {
  padding: 10px 0 0 20px;
  position: absolute;
  top: 0;
  left: 0; }

#header-logo {
  width: 204px;
  height: 60px;
  padding: 0 0 0 0;
  transition: all 0.3s;
  z-index: 150;
  position: absolute;
  top: 30px;
  left: 20px; }

#gnav {
  list-style: none;
  font-size: 16px;
  float: right;
  right: 0;
  width: 875px;
  display: flex;
  text-align: center; }

#gnav .gnav-menu a {
  text-decoration: none;
  color: #000;
  position: relative;
  display: block;
  text-decoration: none;
  margin: 30px  auto 8px;
  letter-spacing: 0.1em; }

#gnav .gnav-menu::after {
  position: relative;
  width: 13px;
  height: 6px;
  content: '';
  background-image: url("../img/header_anchor.png");
  background-repeat: no-repeat;
  display: block;
  margin: 0  auto; }

nav.globalMenuSp {
  display: block; }

#gnav .gnav-menu {
  display: inline-block;
  font-weight: bold;
  color: #000;
  line-height: normal;
  vertical-align: middle;
  flex: 1 0 auto; }

#gnav .gnav-menu-contact {
  display: inline-block;
  color: #fff;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: bold;
  transition: all 0.3s; }

#gnav .gnav-menu-contact a {
  width: 100px;
  height: 70px;
  padding: 30px 0 0 0;
  display: block;
  text-decoration: none;
  color: #fff;
  background-color: #422815;
  transition: all 0.3s;
  position: relative; }

#gnav .gnav-menu a:hover {
  text-decoration: none;
  color: #cc9a29;
  transition: .3s; }

#gnav .gnav-menu a:hover::after {
  transform: scale(1, 1); }

#gnav .gnav-menu a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #cc9a29;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s; }

#gnav .gnav-menu-contact a::before {
  content: "";
  width: 24px;
  height: 19px;
  background-image: url("../img/mail_icon_wh.png");
  background-repeat: no-repeat;
  display: block;
  margin: 0 auto 8px; }

/*----------------------------------------------------
 ACTIVE
----------------------------------------------------*/
#header.active {
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s; }
  #header.active #header-inr {
    height: 80px;
    transition: all 0.3s; }
  #header.active #header-logo {
    width: 135px;
    height: 40px;
    transition: all 0.3s; }
  #header.active #gnav .gnav-menu-contact a {
    height: 60px;
    padding: 20px 0 0 0;
    transition: all 0.3s; }

/*----------------------------------------------------
 TB
----------------------------------------------------*/
@media screen and (min-width: 769px) and (max-width: 1150px) {
 /* ----------------------------------------------------------------------------------------------------
  header
-------------------------------------------------------------------------------------------------------*/
  #header {
    background: #fff; }

  #header-inr {
    width: 100%;
    height: 50px !important; }

  #header-txt {
    display: none; }

  #header-logo-block {
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    float: none;
    padding: 0px 0 0 10px;
    position: absolute;
    z-index: 29;
    border-bottom: 1px solid #ccc; }

  #header-logo {
    width: 122px !important;
    height: 40px;
    top: 7px; }

  #spMenuBtn {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 30;
    display: block !important;
    background-color: #422815;
    cursor: pointer; }

  .menu-trigger {
    position: absolute;
    top: 13px;
    left: 13px;
    width: 24px;
    height: 18px; }

  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out; }

  .menu-trigger span:nth-of-type(1) {
    top: 0; }

  .menu-trigger span:nth-of-type(2) {
    top: 8px; }

  .menu-trigger span:nth-of-type(3) {
    bottom: 0; }

  #spMenuBtn.active .menu-trigger span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-45deg);
    -ms-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
    background-color: #fff; }

  #spMenuBtn.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
    background-color: #fff; }

  #spMenuBtn.active .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    -ms-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
    background-color: #fff; }

  nav.globalMenuSp {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    color: #000;
    width: 100%;
    float: none;
    box-sizing: border-box; }

  #gnav {
    margin: 0 auto 0;
    width: 100%;
    padding: 81px 15px 0;
    float: none;
    display: block;
    background: #fff;
    z-index: 1;
    box-sizing: border-box; }

  #gnav .gnav-menu a {
    text-align: left;
    text-decoration: none;
    color: #000;
    position: relative;
    display: block;
    width: 100%;
    margin: 0  auto;
    padding: 15px 0;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box; }

  #gnav .gnav-menu::after {
    content: none; }

  #gnav .gnav-menu a::after {
    display: none; }

  #gnav .gnav-menu {
    display: block;
    font-weight: bold;
    color: #000;
    line-height: normal;
    vertical-align: middle;
    flex: none; }

  #gnav .gnav-menu-contact {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    background: #fff;
    position: relative; }

  #gnav .gnav-menu-contact a {
    width: 248px;
    height: auto;
    margin: 30px auto;
    display: block;
    background-color: #422815;
    color: #fff;
    text-decoration: none;
    padding: 20px 0;
    font-weight: bold;
    border-radius: 10px; }

  #header.active #gnav .gnav-menu-contact {
    height: auto;
    padding: 0; }

  #header.active #gnav .gnav-menu-contact a {
    height: auto;
    padding: 20px 0; }

  #gnav .gnav-menu-contact a::before {
    width: 15px;
    height: 12px;
    margin: -6px 0 0 -100px;
    position: absolute;
    background-image: url("../img/mail_icon_wh.png");
    top: 50%;
    left: 50%;
    background-size: 15px auto; }

  #gnav .gnav-menu-contact a::after {
    content: "";
    width: 23px;
    height: 13px;
    position: absolute;
    background-image: url("../img/mail_arrow_wh.png");
    background-repeat: no-repeat;
    top: 50%;
    right: 50%;
    display: block;
    margin: -6px -100px 0 0;
    background-size: 23px auto; }

  #header.active {
    background: rgba(255, 255, 255, 0); } }
/*----------------------------------------------------
 SP
----------------------------------------------------*/
@media screen and (max-width: 768px) {
  /* ----------------------------------------------------------------------------------------------------
    header
  -------------------------------------------------------------------------------------------------------*/
  #header {
    background: #fff; }

  #header-inr {
    width: 100%;
    height: 50px !important; }

  #header-txt {
    display: none; }

  #header-logo-block {
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    float: none;
    padding: 0px 0 0 10px;
    position: absolute;
    z-index: 29;
    border-bottom: 1px solid #ccc; }

  #header-logo {
    width: 122px !important;
    height: 40px;
    top: 7px; }

  #spMenuBtn {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 30;
    display: block !important;
    background-color: #422815;
    cursor: pointer; }

  .menu-trigger {
    position: absolute;
    top: 13px;
    left: 13px;
    width: 24px;
    height: 18px; }

  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out; }

  .menu-trigger span:nth-of-type(1) {
    top: 0; }

  .menu-trigger span:nth-of-type(2) {
    top: 8px; }

  .menu-trigger span:nth-of-type(3) {
    bottom: 0; }

  #spMenuBtn.active .menu-trigger span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-45deg);
    -ms-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
    background-color: #fff; }

  #spMenuBtn.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
    background-color: #fff; }

  #spMenuBtn.active .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    -ms-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
    background-color: #fff; }

  nav.globalMenuSp {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    color: #000;
    width: 100%;
    float: none;
    box-sizing: border-box; }

  #gnav {
    margin: 0 auto 0;
    width: 100%;
    padding: 81px 15px 0;
    float: none;
    display: block;
    background: #fff;
    z-index: 1;
    box-sizing: border-box; }

  #gnav .gnav-menu a {
    text-align: left;
    text-decoration: none;
    color: #000;
    position: relative;
    display: block;
    width: 100%;
    margin: 0  auto;
    padding: 15px 0;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box; }

  #gnav .gnav-menu::after {
    content: none; }

  #gnav .gnav-menu a::after {
    display: none; }

  #gnav .gnav-menu {
    display: block;
    font-weight: bold;
    color: #000;
    line-height: normal;
    vertical-align: middle;
    flex: none; }

  #gnav .gnav-menu-contact {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    background: #fff;
    position: relative; }

  #gnav .gnav-menu-contact a {
    width: 248px;
    height: auto;
    margin: 30px auto;
    display: block;
    background-color: #422815;
    color: #fff;
    text-decoration: none;
    padding: 20px 0;
    font-weight: bold;
    border-radius: 10px; }

  #header.active #gnav .gnav-menu-contact {
    height: auto;
    padding: 0; }

  #header.active #gnav .gnav-menu-contact a {
    height: auto;
    padding: 20px 0; }

  #gnav .gnav-menu-contact a::before {
    width: 15px;
    height: 12px;
    margin: -6px 0 0 -100px;
    position: absolute;
    background-image: url("../img/mail_icon_wh.png");
    top: 50%;
    left: 50%;
    background-size: 15px auto; }

  #gnav .gnav-menu-contact a::after {
    content: "";
    width: 23px;
    height: 13px;
    position: absolute;
    background-image: url("../img/mail_arrow_wh.png");
    background-repeat: no-repeat;
    top: 50%;
    right: 50%;
    display: block;
    margin: -6px -100px 0 0;
    background-size: 23px auto; }

  #header.active {
    background: rgba(255, 255, 255, 0); } }
/* ----------------------------------------------------------------------------------------------------
  CONTET
-------------------------------------------------------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------
  main
-------------------------------------------------------------------------------------------------------*/
#main {
  background-image: url("../img/bg_wave.png"), url("../img/bg1.gif");
  background-repeat: repeat-x,repeat;
  padding-top: 120px;
  position: relative; }

#main-img-noscript {
  display: none; }

#bg-circle01 {
  width: 311px;
  height: 286px;
  margin-left: -721px;
  position: absolute;
  top: -126px;
  left: 50%; }

#bg-circle02 {
  width: 130px;
  height: 134px;
  margin-left: 350px;
  position: absolute;
  top: 140px;
  left: 50%; }

#bg-circle03 {
  width: 274px;
  height: 264px;
  margin-left: -814px;
  position: absolute;
  top: 655px;
  left: 50%; }

#bg-circle04 {
  width: 312px;
  height: 334px;
  margin-left: 428px;
  position: absolute;
  top: 514px;
  left: 50%; }

#bg-circle04 img {
  width: 100%;
  height: auto; }

.main-area {
  width: 1024px;
  margin: 0 auto; }

.stage {
  position: relative; }

#main-img {
  width: 640px;
  height: 640px;
  margin: 0 auto; }

#main-img-morph {
  top: -1000px;
  width: 640px;
  height: 640px;
  margin: 0 auto;
  position: absolute; }

#main-img-morph-tb {
  top: -1000px;
  width: 480px;
  height: 480px;
  margin: 0 auto;
  position: absolute; }

#main-img-morph-sp {
  top: -1000px;
  width: 280px;
  height: 280px;
  margin: 0 auto;
  position: absolute; }

.main-title {
  opacity: 0;
  width: 250px;
  position: absolute;
  display: block;
  top: 185px;
  left: calc(50% - 125px); }

.main-subtitle {
  width: 240px;
  opacity: 0;
  position: absolute;
  display: block;
  top: 80px;
  left: calc(50% - 120px); }

.main-desc-title {
  font-size: 44px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  z-index: 1;
  position: absolute;
  top: 70px;
  right: 78px;
  letter-spacing: 0.1em;
  color: #422815; }

.main-desc-text {
  font-size: 26px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  z-index: 1;
  position: absolute;
  top: 45%;
  left: 4px;
  line-height: 2.8rem;
  letter-spacing: 0.1em;
  color: #422815;
  text-align: left; }

.main-desc-text::before {
  content: "";
  width: 1px;
  height: 40px;
  background-color: #422815;
  position: absolute;
  top: -17%;
  left: 75%; }

/* ----------------------------------------------------------------------------------------------------
  FEATURE
-------------------------------------------------------------------------------------------------------*/
#feature-nav {
  display: flex;
  margin: 40px 0 100px 0;
  position: relative;
  z-index: 1; }

#feature-nav li {
  width: 260px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.7;
  position: relative; }

#feature-nav li a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  /* 縦方向中央揃え（Safari用） */
  align-items: center;
  /* 縦方向中央揃え */
  text-decoration: none;
  color: #000; }

#feature-nav li a::before {
  width: 24px;
  height: 14px;
  content: "";
  background-image: url("../img/feature_anchor.png");
  background-repeat: no-repeat;
  position: absolute;
  top: 120px;
  left: 117px; }

#feature-nav li p {
  padding: 0 10px 0 10px; }

#feature-nav li span {
  font-size: 15px;
  font-weight: bold; }

/* ----------------------------------------------------------------------------------------------------
  WORRIES
-------------------------------------------------------------------------------------------------------*/
#worries {
  padding-bottom: 60px;
  position: relative; }

#bg-circle05 {
  width: 200px;
  height: 210px;
  margin-left: -764px;
  position: absolute;
  top: 544px;
  left: 50%; }

#bg-circle06 {
  width: 306px;
  height: 304px;
  margin-left: 400px;
  position: absolute;
  top: 590px;
  left: 50%; }

.worries-content-area {
  width: 1024px;
  padding-bottom: 10px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 15px;
  position: relative;
  box-shadow: 0px 0px 10px -8px #000000; }

.worries-content-area::before {
  width: 400px;
  height: 45px;
  margin-left: -200px;
  content: "";
  background-image: url("../img/bubble.png");
  background-repeat: no-repeat;
  position: absolute;
  bottom: -45px;
  left: 50%; }

.content-title {
  width: 250px;
  position: absolute;
  top: -15px;
  left: 55px; }

.worries-title {
  color: #422815;
  font-size: 24.5px;
  font-weight: bolder;
  text-align: center;
  padding: 80px 0 40px; }

.worries-list-wrap {
  margin: 0 auto;
  display: flex; }

.worries-list-l {
  width: 50%;
  padding: 0 40px 0 90px;
  box-sizing: border-box; }

.worries-list-l li {
  padding-left: 15px;
  position: relative;
  font-size: 17px;
  line-height: 1.5;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-bottom: 25px; }

.worries-list-l li::before {
  width: 21px;
  height: 22px;
  margin-top: -11px;
  content: "";
  background-image: url("../img/checkbox.png");
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: -20px; }

.worries-list-r {
  width: 50%;
  padding: 0 90px 0 48px;
  box-sizing: border-box; }

.worries-list-r li {
  padding-left: 15px;
  position: relative;
  font-size: 17px;
  line-height: 1.5;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-bottom: 30px; }

.worries-list-r li::before {
  width: 21px;
  height: 22px;
  content: '';
  background-image: url("../img/checkbox.png");
  background-repeat: no-repeat;
  position: absolute;
  top: 25%;
  left: -5%; }

.worries-intro-text {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #777777;
  margin: 70px 0 20px; }

.worries-intro-title {
  font-size: 40px;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  color: #b47639;
  line-height: 1.3;
  margin-bottom: 80px;
  position: relative;
  z-index: 1; }

.worries-cont-wrap {
  width: 70%;
  padding: 50px 5% 30px 25%; }

.worries-cont-wrap h3 {
  font-size: 24px;
  font-weight: bold;
  color: #422815;
  margin-bottom: 20px; }

.worries-cont-wrap p {
  font-size: 18px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.8; }

.worries-cont-wrap02 {
  padding: 35px 40px 35px 245px;
  position: relative;
  z-index: 5; }

.worries-cont-wrap02 h3 {
  font-size: 24.5px;
  line-height: 1.5;
  font-weight: bold;
  color: #422815;
  margin-bottom: 7px; }

.worries-cont-wrap02 p {
  font-size: 18px;
  letter-spacing: 0.05em;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 2; }

.worries-cont-img {
  position: absolute;
  top: -15px;
  left: -25px; }

.content-area {
  width: 1024px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 15px;
  position: relative;
  box-shadow: 0px 0px 10px -8px #000000; }

#bg_communication {
  width: 762px;
  height: 80px;
  position: absolute;
  bottom: 0;
  right: 0; }

/* ----------------------------------------------------------------------------------------------------
  FEATURE
-------------------------------------------------------------------------------------------------------*/
.head-content-area {
  width: 1024px;
  margin: -120px auto 0;
  background-color: #fff;
  border-radius: 15px;
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
  box-shadow: 0px 0px 10px -8px #000000; }

#four_feature {
  width: 166px;
  height: 444px;
  position: absolute;
  top: 810px;
  right: 0; }

#four_feature02 {
  width: 166px;
  height: 720px;
  position: absolute;
  top: 36px;
  right: 0; }

#feature {
  background-image: url("../img/bg1.gif");
  position: relative; }

#bg-mark01 {
  width: 386px;
  height: 340px;
  margin-left: 495px;
  position: absolute;
  top: 544px;
  left: 50%; }

#bg-mark02 {
  width: 386px;
  height: 340px;
  margin-left: -860px;
  position: absolute;
  top: 1600px;
  left: 50%; }

#bg-mark03 {
  width: 386px;
  height: 340px;
  margin-left: 308px;
  position: absolute;
  top: 2448px;
  left: 50%; }

.head-title-area {
  width: 100%;
  background-position: left bottom -1px, left -2px, left top;
  background-repeat: repeat-x,repeat-x, no-repeat;
  background-size: auto,auto, cover; }

.feature-title-bg {
  background-image: url("../img/nami1_bottom.png"), url("../img/nami1_top.png"), url("../img/feature_headimg.jpg");
  padding: 90px 0 180px 0; }

.head-title-area h2 {
  text-align: center;
  font-size: 40px;
  letter-spacing: 0.10em;
  font-weight: bold;
  color: #fff;
  line-height: 1.5; }

.head-title-area h2 span {
  font-size: 30px;
  letter-spacing: 0.15em; }

.feature1 {
  width: 904px;
  margin: 0 auto;
  position: relative;
  padding-top: 40px; }

.feature1 h3 {
  position: absolute;
  left: 40px;
  z-index: 1;
  width: 40px;
  height: 120px; }

.feature1 img {
  width: 100%;
  height: auto; }

.feature1-img1 {
  position: absolute;
  top: 60px; }

.feature1-img2 {
  position: absolute;
  top: 264px;
  right: 0;
  z-index: 2; }

.feature1-text {
  width: 400px;
  top: 20px;
  margin: 260px 0 0 60px;
  border-left: solid 2px #f0e4d7;
  position: relative;
  z-index: 1; }

.feature-text-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  color: #663c1b;
  padding: 115px 0 25px 40px; }

.feature-text {
  padding: 0 0 30px 40px;
  color: #333;
  font-size: 17px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 2; }

.feature2 {
  width: 904px;
  margin: 60px auto 0 auto;
  position: relative; }

.feature2 h3 {
  position: absolute;
  right: 645px;
  z-index: 1;
  width: 40px;
  height: 120px; }

.feature2 img {
  width: 100%;
  height: auto; }

.feature2-img1 {
  position: absolute;
  top: 20px;
  right: 0; }

.feature2-img2 {
  position: absolute;
  top: 320px;
  left: 0; }

.feature2-text {
  width: 400px;
  float: right;
  margin: 325px 0 0 0;
  border-left: solid 2px #f0e4d7;
  position: relative;
  z-index: 1; }

.feature3 {
  width: 904px;
  margin: 60px auto 0 auto;
  position: relative; }

.feature3 h3 {
  position: absolute;
  left: 40px;
  z-index: 1;
  width: 40px;
  height: 120px; }

.feature3 img {
  width: 100%;
  height: auto; }

.feature3-img {
  position: absolute;
  top: 20px; }

.feature3-text {
  width: 800px;
  top: 280px;
  left: 61px;
  border-left: solid 2px #f0e4d7;
  position: relative;
  z-index: 1; }

.feature4 {
  width: 904px;
  margin: 60px auto 100px;
  padding-top: 280px;
  position: relative; }

.feature4-img-area {
  width: 420px;
  float: left; }

.feature4 h3 {
  position: absolute;
  left: 40px;
  z-index: 1;
  width: 40px;
  height: 120px; }

.feature4 img {
  width: 100%;
  height: auto; }

.feature4-img {
  position: absolute;
  margin-top: 20px; }

.feature4-text-title {
  font-size: 24px;
  line-height: 1.5;
  color: #422815;
  padding: 30px 0 30px 40px; }

.feature4-text {
  width: 400px;
  z-index: 25;
  padding: 0;
  float: right;
  margin: 80px 0 0 0;
  border-left: solid 2px #f0e4d7;
  position: relative;
  z-index: 1; }

/* ----------------------------------------------------------------------------------------------------
  CONTACT
-------------------------------------------------------------------------------------------------------*/
.contact {
  width: 1056px;
  padding: 30px 0;
  margin-left: -16px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-image: url("../img/pattern_01.png");
  background-repeat: repeat; }

.contact::before {
  width: 16px;
  height: 16px;
  content: "";
  background-image: url("../img/contact-deco-left-8.png");
  background-repeat: no-repeat;
  position: absolute;
  bottom: 44px;
  left: -16px; }

.contact::after {
  width: 16px;
  height: 16px;
  content: "";
  background-image: url("../img/contact-deco-right-8.png");
  background-repeat: no-repeat;
  position: absolute;
  bottom: 44px;
  right: -16px; }

.contact h3 {
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: bold;
  font-size: 24px; }

.contact-area {
  width: 665px;
  margin: 0 auto 22px;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.contact-btn {
  width: 720px;
  margin: 0 auto; }

.contact-btn a {
  text-align: center;
  text-decoration: none;
  padding: 23px 96px;
  border-radius: 8px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: bold;
  color: #422815;
  font-size: 20px;
  letter-spacing: 0.05em;
  background-color: #fff;
  position: relative;
  display: block; }

@media all and (-ms-high-contrast: none) {
  .contact-btn a {
    padding: 26px 96px 20px; } }
.contact-btn a span {
  position: relative;
  padding-left: 35px; }

.contact-btn a span::before {
  width: 21px;
  height: 17px;
  content: "";
  background-image: url("../img/mail_icon_br.png");
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 8px);
  left: 0; }

.contact-btn a::after {
  width: 23px;
  height: 7px;
  content: "";
  background-image: url("../img/mail_arrow.png");
  background-repeat: no-repeat;
  position: absolute;
  top: 28px;
  right: 5%; }

.contact-tell {
  color: #fff;
  text-align: center; }

.tell-no {
  font-size: 42px;
  margin-bottom: 3px;
  letter-spacing: 0.05em;
  font-weight: bold;
   }

p.tell-no a {
	color: #FFF;
	text-decoration: none;
   }


.tell-desc {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 15px; }

/* ----------------------------------------------------------------------------------------------------
  COMMUNICATION
-------------------------------------------------------------------------------------------------------*/
#communication {
  background-image: url("../img/bg1.gif");
  padding: 60px 0;
  position: relative; }

#bg-mark04 {
  width: 386px;
  height: 340px;
  margin-left: -867px;
  position: absolute;
  top: 668px;
  left: 50%; }

#communication h3 {
  width: 295px;
  height: auto; }

#communication h4 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: #7b5d2b;
  padding: 90px 0 20px 0; }

#trust h4 {
  font-size: 36px;
  letter-spacing: 0.1em;
  font-weight: bold;
  text-align: center;
  color: #7b5d2b;
  padding: 60px 0 20px 0; }

.commu-wrap {
  padding-bottom: 60px;
  width: 825px;
  margin: 0 auto; }

.commu-cont {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.commu-cont-text {
  width: 600px; }

.commu-cont-text h5 {
  color: #663c1b;
  line-height: 1.5;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px; }

.commu-cont-text p {
  color: #333;
  font-size: 16.5px;
  line-height: 2;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif; }

.commu-cont p {
  display: table-cell;
  vertical-align: middle; }

.commu-cont-img1 {
  padding-left: 4px; }

.commu-cont-img-r {
  padding-left: 15px; }

.commu-border {
  border-top: dashed 2px #dedede;
  border-bottom: dashed 2px #dedede; }

/* ----------------------------------------------------------------------------------------------------
  TRUST
-------------------------------------------------------------------------------------------------------*/
#trust {
  background-image: url("../img/bg1.gif");
  padding-bottom: 60px;
  position: relative; }

#bg_trust {
  width: 160px;
  height: 514px;
  position: absolute;
  top: 100px;
  left: 0; }

#trust h3 {
  width: 108px;
  padding-top: 10px; }

#trust h4 {
  padding: 90px 0  40px 0; }

.trust-cont {
  width: 680px;
  margin: 20px auto 0;
  padding-bottom: 60px;
  position: relative; }

.trust-cont h5 {
  font-size: 20px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #7b5d2b;
  padding-top: 210px;
  line-height: 1.5;
  margin: 20px 0 10px 0; }

.trust-cont p {
  color: #333;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-ideograph; }

.trust-cont img {
  position: absolute;
  top: 0; }

.trust-cont-left {
  float: left;
  width: 300px; }

.trust-cont-right {
  float: right;
  width: 300px; }

/* ----------------------------------------------------------------------------------------------------
  DAY FLOW
-------------------------------------------------------------------------------------------------------*/
#dayflow {
  background: url("../img/bg1.gif");
  padding-bottom: 60px;
  position: relative; }

#bg_oneday {
  width: 480px;
  height: 484px;
  position: absolute;
  bottom: 0;
  left: 0; }

#bg-mark05 {
  width: 276px;
  height: 266px;
  margin-left: 505px;
  position: absolute;
  top: 696px;
  left: 50%; }

#bg-mark06 {
  width: 276px;
  height: 266px;
  margin-left: -816px;
  position: absolute;
  top: 1126px;
  left: 50%; }

.dayflow-title-bg {
  background-image: url("../img/nami1_bottom.png"), url("../img/nami1_top.png"), url("../img/dayflow_headimg.jpg");
  padding: 110px 0 220px 0; }

.area-intro {
  padding: 60px 0 30px;
  color: #333;
  line-height: 2;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif; }

.dayflow-model {
  width: 824px;
  margin: 0 auto; }

.dayflow-model h3 {
  width: 420px;
  margin: 0 auto;
  text-align: center;
  padding: 7px 0;
  border-radius: 5px;
  background-color: #d5c07f;
  color: #fff;
  font-size: 18px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: bold; }

@media all and (-ms-high-contrast: none) {
  .dayflow-model h3 {
    padding: 10px 0 4px; } }
.dayflow-model-list {
  background: url("../img/dotted-bg-8.png") repeat-y center center;
  width: 100%;
  height: 1080px;
  position: relative; }

.time-wrap-r img {
  float: right; }

.time-wrap-text {
  margin: 14px 0;
  width: 314px;
  line-height: 1.4;
  font-size: 17px;
  color: #333;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif; }

.time-wrap-r {
  width: 50%;
  border-top: #d5c07f solid 1px;
  padding: 18px 0 0 0;
  margin-left: 50%;
  position: absolute; }

.time-wrap-l {
  width: 50%;
  border-top: #d5c07f solid 1px;
  padding: 18px 0 0 0;
  position: absolute; }

.time-wrap-l h4 {
  font-size: 23px;
  font-family: "CrimsonText", serif;
  color: #cc9a29;
  margin: 0 10px 0 5px; }

.time-wrap-l h4 span {
  color: #333;
  font-size: 19px;
  font-weight: bold;
  margin-left: 10px; }

.time-wrap-l p {
  margin-left: 0; }

.time-wrap-r h4 {
  font-size: 21px;
  font-family: "CrimsonText", serif;
  color: #cc9a29;
  margin: 0 10px 0 95px; }

.time-wrap-r h4 span {
  color: #333;
  font-size: 19px;
  font-weight: bold;
  margin-left: 10px; }

.time-wrap-r p {
  margin-left: 95px; }

.time-wrap-l1 {
  padding: 18px 0;
  top: 40px; }

.time-wrap-l2 {
  top: 100px; }

.time-wrap-l3 {
  top: 400px; }

.time-wrap-l4 {
  top: 530px; }

.time-wrap-l5 {
  top: 850px; }

.time-wrap-r1 {
  top: 70px; }

.time-wrap-r2 {
  top: 130px; }

.time-wrap-r3 {
  top: 430px; }

.time-wrap-r4 {
  top: 560px; }

.time-wrap-r5 {
  top: 880px; }

.time-wrap-r6 {
  top: 980px; }

.time-wrap-l1::after, .time-wrap-l2::after, .time-wrap-l3::after, .time-wrap-l4::after, .time-wrap-l5::after {
  content: "";
  background-color: #d5c07f;
  position: absolute;
  top: -8px;
  right: -8px;
  border-radius: 50%;
  height: 16px;
  width: 16px; }

.time-wrap-r1::before, .time-wrap-r2::before, .time-wrap-r3::before, .time-wrap-r4::before, .time-wrap-r5::before, .time-wrap-r6::before {
  content: "";
  background-color: #d5c07f;
  position: absolute;
  top: -8px;
  left: -8px;
  border-radius: 50%;
  height: 16px;
  width: 16px; }

/* ----------------------------------------------------------------------------------------------------
  COST
-------------------------------------------------------------------------------------------------------*/
#cost {
  background: url("../img/bg2.gif");
  padding-bottom: 60px;
  position: relative; }

#bg_price {
  width: 534px;
  height: 184px;
  margin-left: -690px;
  position: absolute;
  bottom: 0;
  left: 50%; }

.cost-title-bg {
  background-image: url("../img/nami2_bottom.png"), url("../img/nami1_top.png"), url("../img/cost_headimg.jpg");
  padding: 110px 0 220px 0; }

.cost-cont {
  width: 640px;
  margin: 0 auto 10px;
  padding: 0 0 10px 0;
  border-bottom: dashed 2px #DEDEDE; }

.cost-cont-title {
  background-image: url("../img/cost_bg.gif");
  width: 28%;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
  color: #fff;
  font-size: 20px;
  padding: 30px 0;
  line-height: 1.4;
  float: left; }

.cost-cont-title span {
  font-size: 12px; }

.cost-cont dl {
  float: right;
  width: 420px;
  vertical-align: middle;
  padding-top: 20px;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap; }

.cost-cont dt {
  width: 320px;
  padding: 0 0 10px 0;
  font-size: 17px;
  letter-spacing: 0.1em; }

.cost-cont dd {
  width: 100px;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-align: right; }

.cost-cont dd span {
  font-size: 12px; }

.total {
  color: #872512;
  margin-top: 20px; }

.total dt {
  font-size: 20px;
  margin-bottom: -10px; }

.cost-notice {
  width: 640px;
  margin: 0 auto;
  text-align: right;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #777777;
  font-size: 14px;
  line-height: 1.5; }

/* ----------------------------------------------------------------------------------------------------
  LINEUP
-------------------------------------------------------------------------------------------------------*/
#lineup {
  background-image: url("../img/bg3.gif");
  padding-bottom: 60px; }

#bg_lineup {
  width: 568px;
  height: 135px;
  position: absolute;
  bottom: 0;
  left: 0; }

.lineup-title-bg {
  background-image: url("../img/nami3_bottom.png"), url("../img/nami2_top.png"), url("../img/lineup_headimg.jpg");
  padding: 125px 0 205px 0; }

.lineup-title-img {
  width: 904px;
  margin: 0 auto;
  padding: 60px 0 40px 0;
  position: relative; }

.lineup-title-img h3 {
  position: absolute;
  left: 40px;
  width: 26px;
  height: 126px; }

.lineup-title-img h3 img {
  width: 100%;
  height: auto; }

.lineup-title-img p img {
  padding-top: 20px; }

.lineup-cont {
  width: 824px;
  margin: 0 auto; }

.lineup-cont-subtitle {
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: 16px;
  color: #CC9A29;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif; }

.lineup-cont h4 {
  font-weight: bold;
  font-size: 24px;
  color: #422815;
  letter-spacing: 0.05em;
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: solid 2px #DEDEDE; }

.lieup-cont-desc {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 17px;
  color: #333333;
  line-height: 2;
  margin: 20px 0; }

.lineup-cont ul li {
  display: inline-block;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #fff;
  background-color: #E5D0BF;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-radius: 5px;
  font-weight: bold;
  padding: 4px 9px;
  margin-right: 5px; }

@media all and (-ms-high-contrast: none) {
  .lineup-cont ul li {
    padding: 7px 9px 1px; } }
.lineup-cont ul {
  padding-bottom: 30px; }

.lineup-wrap {
  border-top: dashed 1px #DEDEDE;
  padding: 20px 0; }

.lineup-wrap-l {
  width: 250px;
  float: left;
  position: relative;
  z-index: 1; }

.lineup-wrap-r {
  float: right;
  width: 525px;
  margin-top: 40px; }

.lineup-wrap-r h5 {
  letter-spacing: 0.05em;
  color: #7B5D2B;
  font-weight: bold;
  font-size: 24px; }

.lineup-wrap-text {
  margin: 20px 0;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.5;
  font-size: 17px;
  color: #333; }

.lineup-wrap-notice {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 14px;
  color: #777777; }

/* ----------------------------------------------------------------------------------------------------
  FAQ
-------------------------------------------------------------------------------------------------------*/
#question {
  background-image: url("../img/bg1.gif");
  padding-bottom: 60px;
  position: relative; }

#bg-circle07 {
  width: 248px;
  height: 204px;
  margin-left: 467px;
  position: absolute;
  top: 668px;
  left: 50%; }

#bg-circle08 {
  width: 300px;
  height: 304px;
  margin-left: -812px;
  position: absolute;
  top: 804px;
  left: 50%; }

#question .area-intro {
  padding: 30px 0; }

#bg_faq {
  width: 164px;
  height: 458px;
  position: absolute;
  top: 20px;
  left: 0; }

.question-title-bg {
  background-image: url("../img/nami1_bottom.png"), url("../img/nami3_top.png"), url("../img/question_headimg.jpg");
  padding: 100px 0 230px 0; }

.question-cont {
  width: 900px;
  margin: 0 auto 60px auto; }

.question-wrap {
  width: 900px;
  margin: 0 auto;
  padding: 25px 0 0;
  border-top: 1px #DEDEDE solid; }

.question-wrap dl {
  width: 820px;
  margin: 0 auto 20px; }

.question-wrap dl::after {
  content: "";
  clear: both;
  display: block; }

.question-wrap dl dt {
  font-size: 40px;
  width: 65px;
  margin-right: 5px;
  font-weight: bold;
  font-family: "CrimsonTextSemiBold", serif;
  float: left;
  padding-left: 5px; }

.question-wrap dl dd {
  width: 745px;
  float: left;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 2; }

.question-title {
  color: #422815;
  padding-bottom: 0;
  font-weight: bold; }

.question-title dd {
  font-size: 18px; }

.question-text dt {
  color: #B47639; }

.question-text dd {
  font-size: 16px;
  color: #333; }

button.readmore {
  cursor: pointer;
  position: relative;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  width: 640px;
  border-radius: 8px;
  margin: 35px auto 0;
  padding: 20px 0;
  display: block;
  background-image: url("../img/pattern_00.png");
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  border: none;
  outline: 0;
  transition: .5s;
  -erbkit-transition: .5s; }

button.readmore::after {
  content: "+";
  position: absolute;
  margin-top: -15px;
  top: 50%;
  right: 30px; }

button.readmore.close::after {
  content: "-";
  position: absolute;
  margin-top: -15px;
  top: 50%;
  right: 30px; }

@media all and (-ms-high-contrast: none) {
  button.readmore {
    padding: 23px 0 17px; } }
@media screen and (min-width: 769px) {
  .question-text {
    display: block !important; }

  button.readmore:hover {
    opacity: .7;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s; } }
/*----------------------------------------------------
 TB
----------------------------------------------------*/
@media screen and (min-width: 769px) and (max-width: 1023px) {
 /* ----------------------------------------------------------------------------------------------------
  main
-------------------------------------------------------------------------------------------------------*/
  #main {
    background-image: url("../img/bg_wave.png"), url("../img/bg1.gif");
    background-repeat: repeat-x,repeat;
    background-size: 800px auto, auto auto; }

  .main-area {
    width: 100%;
    margin: 0 auto; }

  #main-img {
    width: 480px;
    height: 480px;
    margin: 0 auto; }

  .main-img img {
    width: 100%;
    height: auto; }

  /* ----------------------------------------------------------------------------------------------------
    FEATURE
  -------------------------------------------------------------------------------------------------------*/
  #feature-nav {
    margin: 40px 20px 100px; }

  #feature-nav li {
    width: 250px;
    font-size: 16px; }

  #feature-nav li br.pcOnly {
    display: none; }

  #feature-nav li a::before {
    top: 120px;
    left: 50%; }

  #feature-nav li img {
    float: left;
    padding-right: 8px; }

  /* ----------------------------------------------------------------------------------------------------
    WORRIES
  -------------------------------------------------------------------------------------------------------*/
  .worries-content-area {
    width: calc(100% - 40px); }

  .content-title {
    width: 250px;
    position: absolute;
    top: -5%;
    left: 30px; }

  .worries-list-wrap {
    width: 100%; }

  .worries-list-l {
    padding: 0 20px 0 50px; }

  .worries-list-l li {
    padding-left: 18px;
    margin-bottom: 30px; }

  .worries-list-r {
    width: 50%;
    padding: 0 50px 0 30px;
    box-sizing: border-box; }

  .worries-intro-text {
    font-size: 20px; }

  .worries-intro-title {
    font-size: 32px;
    padding: 0 20px; }

  .worries-cont-wrap02 {
    width: calc(100% - 270px);
    padding: 30px 20px 30px 250px; }

  .worries-cont-wrap02 h3 {
    font-size: 24px;
    margin-bottom: 20px; }

  .worries-cont-wrap02 p {
    font-size: 18px; }

  .worries-cont-img {
    position: absolute;
    top: -50px;
    left: -10px; }

  .content-area {
    width: calc(100% - 40px); }

  /* ----------------------------------------------------------------------------------------------------
    FEATURE
  -------------------------------------------------------------------------------------------------------*/
  .head-content-area {
    width: calc(100% - 40px); }

  .head-title-area h2 {
    font-size: 32px; }

  .head-title-erea h2 span {
    font-size: 30px;
    font-weight: bold;
    color: #fff; }

  .feature1 {
    width: 100%;
    padding-top: 0; }

  .feature1 h3 {
    width: 20px;
    height: 60px;
    top: 40px;
    left: 35px; }

  #feature1-anchor {
    display: flex;
    flex-direction: column;
    padding-top: 50px; }

  .feature1-img1 {
    width: 100%;
    padding: 0 25px;
    position: relative;
    top: auto;
    box-sizing: border-box;
    order: 1; }

  .feature1-img2 {
    display: none; }

  .feature1-text {
    width: 100%;
    margin: 30px 0 0 0;
    border-left: none;
    box-sizing: border-box;
    order: 3; }

  .feature-text-title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    padding: 0 16px 0;
    box-sizing: border-box;
    order: 2; }

  .feature-text {
    padding: 0 16px 40px;
    font-size: 15px;
    line-height: 1.6; }

  #feature2-anchor {
    display: flex;
    flex-direction: column;
    padding-top: 0; }

  .feature2 {
    width: 100%;
    margin: 0 auto 0 auto; }

  .feature2 h3 {
    width: 20px;
    height: 60px;
    top: -10px;
    left: 35px; }

  .feature2-img1 {
    width: 100%;
    padding: 0 25px;
    position: relative;
    top: auto;
    box-sizing: border-box;
    order: 1; }

  .feature2-img1 img {
    width: 100%;
    height: auto; }

  .feature2-img2 {
    display: none; }

  .feature2-text {
    width: 100%;
    margin: 30px 0 0 0;
    border-left: none;
    box-sizing: border-box;
    order: 3; }

  #feature3-anchor {
    display: flex;
    flex-direction: column;
    padding-top: 0; }

  .feature3 {
    width: 100%;
    margin: 0 auto 0 auto; }

  .feature3 h3 {
    width: 20px;
    height: 60px;
    position: absolute;
    top: -10px;
    left: 35px;
    order: 2; }

  .feature3-img {
    width: 100%;
    padding: 0 25px;
    position: relative;
    top: auto;
    box-sizing: border-box;
    order: 1; }

  .feature3-img img {
    width: 100%;
    height: auto; }

  .feature3-text {
    width: 100%;
    margin: 30px 0 0 0;
    top: auto;
    left: auto;
    border-left: none;
    box-sizing: border-box;
    order: 3; }

  .feature4 {
    width: 100%;
    margin: 0 auto 0;
    display: flex;
    flex-direction: column;
    padding-top: 0; }

  .feature4-img-area {
    width: 100%;
    float: none; }

  .feature4 h3 {
    width: 20px;
    height: 60px;
    position: absolute;
    top: -10px;
    left: 35px;
    order: 2; }

  .feature4-img {
    width: 100%;
    padding: 0 25px;
    position: relative;
    top: auto;
    box-sizing: border-box;
    order: 1; }

  .feature4-text-title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    padding: 0 16px 0;
    box-sizing: border-box;
    order: 2; }

  .feature4-text {
    width: 100%;
    margin: 30px 0 0 0;
    z-index: 25;
    border-left: none;
    box-sizing: border-box;
    order: 3; }

  /* ----------------------------------------------------------------------------------------------------
    CONTACT
  -------------------------------------------------------------------------------------------------------*/
  .contact {
    width: calc(100% + 20px);
    margin-left: -10px; }

  .contact::before {
    content: "";
    background-image: url("../img/contact-deco-left-8.png");
    background-repeat: no-repeat;
    background-size: 10px auto;
    position: absolute;
    bottom: 44px;
    left: -10px; }

  .contact::after {
    content: "";
    background-image: url("../img/contact-deco-right-8.png");
    background-repeat: no-repeat;
    position: absolute;
    background-size: 10px auto;
    bottom: 44px;
    right: -16px; }

  .contact-btn {
    width: 360px;
    float: none;
    margin: 0 auto; }

  .contact-btn a {
    float: none;
    margin: 0 auto;
    text-decoration: none;
    padding: 23px 50px;
    text-align: center;
    border-radius: 10px;
    display: block; }

  .contact-tell {
    float: none;
    color: #fff;
    margin: 20px 0 0;
    text-align: center; }

  /* ----------------------------------------------------------------------------------------------------
    COMMUNICATION
  -------------------------------------------------------------------------------------------------------*/
  #communication h3 {
    padding: 40px 0 0 20px; }

  .commu-wrap {
    width: calc(100% - 40px); }

  .commu-cont {
    display: table; }

  .commu-cont-text {
    width: 620px;
    display: table-cell;
    vertical-align: middle; }

  .commu-cont p {
    display: table-cell;
    vertical-align: middle; }

  .commu-cont-img-l {
    padding-right: 15px; }

  .commu-cont-text h5 {
    color: #422815;
    line-height: 1.5;
    font-size: 24px;
    margin-bottom: 25px; }

  .commu-cont-text p {
    color: #333;
    font-size: 17px;
    line-height: 2;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif; }

  /* ----------------------------------------------------------------------------------------------------
    TRUST
  -------------------------------------------------------------------------------------------------------*/
  #bg_trust {
    width: 160px;
    height: 514px;
    position: absolute;
    top: 90px;
    left: 0; }

  /* ----------------------------------------------------------------------------------------------------
    DAY FLOW
  -------------------------------------------------------------------------------------------------------*/
  .dayflow-model {
    width: 100%;
    margin: 0 auto; }

  .dayflow-model-list {
    width: calc(100% - 40px);
    height: 1100px;
    margin: 0 auto; }

  .time-wrap-l h4 {
    font-size: 20px; }

  .time-wrap-l h4 span {
    font-size: 18px; }

  .time-wrap-r h4 {
    font-size: 20px;
    margin: 0 10px 0 20px; }

  .time-wrap-r h4 span {
    font-size: 18px; }

  .time-wrap-r p {
    margin-left: 20px; }

  /* ----------------------------------------------------------------------------------------------------
    COST
  -------------------------------------------------------------------------------------------------------*/
  .cost-cont dl {
    width: 72%; }

  .cost-cont dt {
    float: left;
    width: 60%;
    padding: 0 0 10px 40px; }

  .cost-cont dd {
    float: right;
    font-size: 20px; }

  /* ----------------------------------------------------------------------------------------------------
    LINEUP
  -------------------------------------------------------------------------------------------------------*/
  .lineup-wrap-r {
    float: right;
    width: calc(100% - 300px);
    margin-top: 40px; }

  .lineup-title-img {
    width: calc(100% - 40px); }

  .lineup-title-img img {
    width: 100%;
    height: auto; }

  .lineup-title-img h3 {
    left: 5%; }

  .lineup-cont {
    width: calc(100% - 40px); }

  /* ----------------------------------------------------------------------------------------------------
    FAQ
  -------------------------------------------------------------------------------------------------------*/
  .question-cont {
    width: 100%; }

  .question-wrap {
    width: calc(100% - 40px);
    padding: 40px 0 0 0; }

  .question-wrap dl {
    width: 100%;
    display: flex; }

  .question-wrap dl dt {
    font-size: 36px;
    float: left;
    box-sizing: border-box;
    margin-right: 20px; }

  .question-wrap dl dd {
    width: calc(100% - 90px);
    box-sizing: border-box; } }
/*----------------------------------------------------
 SP
----------------------------------------------------*/
@media screen and (max-width: 768px) {
  #main {
    background-size: 800px auto,auto;
    padding-top: 76px; }

  #bg-circle01 {
    width: 155px;
    height: 143px;
    margin-left: -230px;
    position: absolute;
    top: -50px;
    left: 50%; }

  #bg-circle02 {
    display: none; }

  #bg-circle03 {
    width: 190px;
    height: 184px;
    margin-left: -234px;
    position: absolute;
    top: 452px;
    left: 50%; }

  #bg-circle04 {
    width: 164px;
    height: 180px;
    margin-left: 105px;
    position: absolute;
    top: 356px;
    left: 50%; }

  .main-area {
    width: 100%; }

  #main-img {
    width: 280px;
    height: 280px;
    margin: 0 auto 34px; }

  .main-img img {
    width: 100%;
    height: auto; }

  .main-title {
    width: 148px;
    top: 100px;
    left: calc(50% - 74px); }

  .main-subtitle {
    width: 156px;
    top: 40px;
    left: calc(50% - 78px); }

  .main-desc-title {
    font-size: 30px;
    margin-bottom: 15px;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    position: relative;
    top: auto;
    right: auto;
    text-align: center; }

  .main-desc-text {
    width: 90%;
    margin: 0 auto;
    font-size: 20px;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    position: relative;
    top: 45%;
    left: 0;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-align: center; }

  .main-desc-btn {
    margin: 25px auto;
    border: none;
    width: 18px;
    outline: 0;
    transition: .5s;
    -erbkit-transition: .5s;
    background-color: transparent;
    z-index: 4; }

  .main-desc-text::before {
    content: none; }

  #feature-nav {
    display: block;
    margin: 25px 0 50px 0;
    padding: 0 16px; }

  #feature-nav li {
    width: auto;
    padding: 15px 0 10px 0;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 2px dashed #b0afad; }

  #feature-nav li a {
    padding-right: 65px;
    display: block; }

  .feature-title {
    width: 84px;
    margin-bottom: 5px; }

  #feature-nav li a::before {
    width: 18px;
    height: 12px;
    background-image: url("../img/feature_anchor.png");
    background-repeat: no-repeat;
    background-size: 100%;
    top: 50%;
    left: auto;
    right: 15px; }

  #feature-nav li img {
    float: none; }

  #worries {
    padding: 0 16px 20px; }

  #bg-circle05 {
    width: 100px;
    height: 105px;
    margin-left: -200px;
    position: absolute;
    top: 740px;
    left: 50%; }

  #bg-circle06 {
    width: 153px;
    height: 152px;
    margin-left: 78px;
    position: absolute;
    top: 955px;
    left: 50%; }

  .worries-content-area {
    width: 100%;
    padding: 0 10px 10px;
    border-radius: 10px;
    box-sizing: border-box; }

  .worries-content-area::before {
    width: 100px;
    height: 20px;
    content: '';
    margin-left: -50px;
    background-image: url("../img/arrow_worries.png");
    background-repeat: no-repeat;
    position: absolute;
    bottom: -20px;
    left: 50%;
    background-size: 100px auto; }

  .content-title {
    width: 145px;
    position: absolute;
    top: -15px;
    left: 8px; }

  .worries-title {
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    padding: 50px 0 25px; }

  .worries-list-wrap {
    width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
    display: block; }

  .worries-list-l {
    width: 100%;
    padding: 0 0 0 10px;
    box-sizing: border-box; }

  .worries-list-r {
    width: 100%;
    padding: 0 0 0 10px;
    box-sizing: border-box; }

  .worries-list-l li {
    padding-left: 40px;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 16px; }

  .worries-list-l li::before {
    left: 0; }

  .worries-list-r li {
    padding-left: 40px;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 16px; }

  .worries-list-r li::before {
    left: 0; }

  .worries-intro-text {
    width: 70%;
    font-size: 18px;
    line-height: 1.5;
    margin: 40px auto 20px; }

  .worries-intro-title {
    font-size: 23px;
    line-height: 1.4;
    margin-bottom: 110px; }

  .worries-cont-img {
    width: 150px;
    height: 150px;
    margin-left: -75px;
    top: -120px;
    left: 50%; }

  .content-area {
    width: 100%;
    padding: 42px 0 0;
    border-radius: 10px; }

  .worries-cont-wrap02 {
    width: 100%;
    padding: 50px 16px 30px;
    box-sizing: border-box; }

  .worries-cont-wrap02 h3 {
    font-size: 18px;
    line-height: 1.5;
    font-weight: bold;
    color: #422815;
    margin-bottom: 10px; }

  .worries-cont-wrap02 p {
    font-size: 15px;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    line-height: 1.6; }

  .content-inr {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box; }

  .head-content-area {
    width: 100%;
    margin: 10px 0 0;
    border-radius: 10px;
    padding-bottom: 30px; }

  #four_feature {
    width: 83px;
    height: 222px;
    position: absolute;
    top: 405px;
    right: 0; }

  #four_feature02 {
    width: 83px;
    height: 360px;
    position: absolute;
    top: 18px;
    right: 0; }

  .head-title-area {
    padding: 80px 0;
    width: 100%;
    background-position: left bottom -1px, left -2px, center;
    background-repeat: repeat-x,repeat-x, no-repeat;
    background-size: auto,auto, cover; }

  #feature .head-title-area {
    padding: 40px 0; }

  .head-title-area h2 {
    font-size: 26px; }

  .head-title-area h2 span {
    font-size: 18px;
    letter-spacing: 0.05em; }

  .feature1 {
    width: 100%;
    padding-top: 0; }

  #feature-nav li p {
    padding: 0; }

  .feature1 h3 {
    width: 20px;
    height: 60px;
    top: 40px;
    left: 35px; }

  #feature1-anchor {
    display: flex;
    flex-direction: column;
    padding-top: 50px; }

  .feature1-img1 {
    width: 100%;
    padding: 0 25px;
    position: relative;
    top: auto;
    box-sizing: border-box;
    order: 1; }

  .feature1-img2 {
    display: none; }

  .feature1-text {
    width: 100%;
    margin: 30px 0 0 0;
    border-left: none;
    box-sizing: border-box;
    order: 3;
    top: auto; }

  .feature-text-title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    padding: 0 16px 0;
    box-sizing: border-box;
    order: 2; }

  .feature-text {
    padding: 0 16px 40px;
    font-size: 15px;
    line-height: 1.6; }

  #feature2-anchor {
    display: flex;
    flex-direction: column;
    padding-top: 0; }

  .feature2 {
    width: 100%;
    margin: 0 auto 0 auto; }

  .feature2 h3 {
    width: 20px;
    height: 60px;
    position: absolute;
    top: -10px;
    left: 35px; }

  .feature2-img1 {
    width: 100%;
    padding: 0 25px;
    position: relative;
    top: auto;
    box-sizing: border-box;
    order: 1; }

  .feature2-img2 {
    display: none; }

  .feature2-text {
    width: 100%;
    margin: 30px 0 0 0;
    border-left: none;
    box-sizing: border-box;
    order: 3; }

  #feature3-anchor {
    display: flex;
    flex-direction: column;
    padding-top: 0; }

  .feature3 {
    width: 100%;
    margin: 0 auto 0 auto; }

  .feature3 h3 {
    width: 20px;
    height: 60px;
    position: absolute;
    top: -10px;
    left: 35px;
    order: 2; }

  .feature3-img {
    width: 100%;
    padding: 0 25px;
    position: relative;
    top: auto;
    box-sizing: border-box;
    order: 1; }

  .feature3-text {
    width: 100%;
    margin: 30px 0 0 0;
    top: auto;
    left: auto;
    border-left: none;
    box-sizing: border-box;
    order: 3; }

  #feature4-anchor {
    display: flex;
    flex-direction: column;
    padding-top: 0; }

  .feature4 {
    width: 100%;
    margin: 0 auto 0;
    padding-top: 0; }

  .feature4-img-area {
    width: 100%;
    float: none; }

  .feature4 h3 {
    width: 20px;
    height: 60px;
    position: absolute;
    top: -10px;
    left: 35px;
    order: 2; }

  .feature4-img {
    width: 100%;
    margin-top: auto;
    padding: 0 25px;
    position: relative;
    top: auto;
    box-sizing: border-box;
    order: 1; }

  .feature4-text-title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    padding: 0 16px 0;
    box-sizing: border-box;
    order: 2; }

  .feature4-text {
    width: 100%;
    margin: 30px 0 0 0;
    z-index: 25;
    border-left: none;
    position: relative;
    box-sizing: border-box;
    order: 3; }

  .contact {
    width: calc(100% + 16px);
    padding-bottom: 30px;
    margin-left: -8px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    position: relative; }

  .contact::before {
    width: 8px;
    height: 8px;
    position: absolute;
    bottom: -8px;
    left: 0;
    background-size: 8px auto; }

  .contact::after {
    width: 8px;
    height: 8px;
    position: absolute;
    bottom: -8px;
    right: 0;
    background-size: 8px auto; }

  .contact h3 {
    font-size: 16px;
    margin-bottom: 20px; }

  .contact-area {
    width: 100%;
    display: block; }

  .contact-btn a {
    width: 248px;
    float: none;
    margin: 0 auto;
    text-decoration: none;
    padding: 18px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 15px;
    box-sizing: border-box;
    text-align: center;
    display: block; }

  .contact-btn a::before {
    width: 21px;
    height: 17px;
    margin-top: -6px;
    position: absolute;
    bottom: 50%;
    left: 5%;
    background-size: 15px auto; }

  .contact-btn {
    width: 100%; }

  .contact-btn a::after {
    width: 23px;
    height: 7px;
    margin-top: -3px;
    position: absolute;
    top: 50%;
    right: 5%;
    background-size: 18px auto; }

  .tell-no {
    font-size: 32px;
    text-align: center; }

  .tell-desc {
    font-size: 13px;
    text-align: center; }

  #communication {
    padding: 40px 16px;
    box-sizing: border-box; }

  #bg_communication {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0; }

  #communication h3 {
    width: 180px;
    padding: 0; }

  #communication h4, #trust h4 {
    width: 80%;
    margin: 0 auto;
    font-size: 24px;
    line-height: 1.25;
    padding: 20px 0 0px 0; }

  .commu-wrap {
    padding-bottom: 0px;
    width: 100%; }

  .commu-cont {
    margin: 0 20px;
    padding: 20px 0;
    display: flex;
    flex-direction: column; }

  .commu-cont-text {
    width: 100%;
    display: block;
    order: 2; }

  .commu-cont p {
    width: 100%;
    display: block; }

  .commu-cont-img-l {
    width: 150px;
    margin: 0 auto 15px;
    padding-right: 0px; }

  .commu-cont-img-r {
    width: 150px;
    margin: 0 auto 15px;
    order: 1;
    padding-left: 0; }

  .commu-cont-text h5 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
    padding: 0; }

  .commu-cont-text p {
    padding: 0;
    font-size: 15px;
    line-height: 1.6;
    box-sizing: border-box; }

  #trust {
    padding: 0 15px 30px; }

  #bg_trust {
    width: 80px;
    height: auto;
    position: absolute;
    top: 270px;
    left: 0; }

  #trust h3 {
    padding: 0;
    width: 70px; }

  .trust-cont {
    width: 100%;
    margin: 40px auto 0;
    padding-bottom: 20px;
    position: relative; }

  .trust-cont h5 {
    font-size: 16px;
    margin: 15px 0;
    padding: 0 15px;
    order: 2; }

  .trust-cont img {
    position: relative;
    top: 0; }

  .trust-cont-left {
    float: none;
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column; }

  .trust-text {
    font-size: 15px;
    line-height: 1.6;
    padding: 0 15px;
    order: 3; }

  .trust-img {
    width: 100%;
    padding: 0 25px;
    order: 1;
    box-sizing: border-box; }

  .trust-cont-right {
    float: none;
    width: 100%;
    padding: 0 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column; }

  #dayflow {
    padding-bottom: 20px; }

  .dayflow-title-bg {
    background-image: url("../img/nami1_bottom.png"), url("../img/nami1_top.png"), url("../img/dayflow_headimg.jpg"); }

  .area-intro {
    padding: 25px 15px 20px;
    line-height: 1.75;
    text-align: left;
    font-size: 16px; }

  .dayflow-model {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box; }

  .dayflow-model h3 {
    width: 100%;
    padding: 7px 0;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weght: normal; }

  .dayflow-model-list {
    height: auto;
    background-size: 3px auto;
    background-position: 8px center;
    padding: 40px 0 0 10px;
    box-sizing: border-box; }

  .time-wrap-r {
    width: 100%;
    padding: 15px 0 15px 20px;
    position: relative;
    box-sizing: border-box; }

  .time-wrap-l {
    width: 100%;
    padding: 15px 0 15px 20px;
    position: relative;
    box-sizing: border-box; }

  .time-wrap-l img {
    width: 185px;
    float: none; }

  .time-wrap-r img {
    float: none;
    width: 185px; }

  .time-wrap-l h4 {
    font-size: 20px;
    margin-right: 0;
    padding-left: 3em;
    text-indent: -3em;
    margin: 0 10px 0 0; }

  .time-wrap-l h4 span, .time-wrap-r h4 span {
    font-size: 16px;
    padding-bottom: 5px; }

  .time-wrap-text {
    margin: 5px 0;
    width: 100%;
    line-height: 1.4em;
    font-size: 15px;
    color: #333; }

  .time-wrap-r {
    width: 100%;
    float: none;
    margin: 0; }

  .time-wrap-r h4 {
    margin: 0 10px 0 0; }

  .time-wrap-r p {
    margin-left: 0; }

  .time-wrap-l1 {
    top: auto; }

  .time-wrap-l2 {
    top: auto; }

  .time-wrap-l3 {
    top: auto; }

  .time-wrap-l4 {
    top: auto; }

  .time-wrap-l5 {
    top: auto; }

  .time-wrap-r1 {
    top: auto; }

  .time-wrap-r2 {
    top: auto; }

  .time-wrap-r3 {
    top: auto; }

  .time-wrap-r4 {
    top: auto; }

  .time-wrap-r5 {
    top: auto; }

  .time-wrap-r6 {
    top: auto; }

  .time-wrap-l1::after, .time-wrap-l2::after, .time-wrap-l3::after, .time-wrap-l4::after, .time-wrap-l5::after {
    top: -4px;
    left: -4px;
    height: 8px;
    width: 8px; }

  .time-wrap-r1::before, .time-wrap-r2::before, .time-wrap-r3::before, .time-wrap-r4::before, .time-wrap-r5::before, .time-wrap-r6::before {
    top: -4px;
    left: -4px;
    height: 8px;
    width: 8px; }

  #bg_oneday {
    width: 90%;
    bottom: -225px; }

  #cost {
    padding-bottom: 20px; }

  #bg_price {
    width: 85%;
    height: auto;
    margin-left: 0;
    position: absolute;
    bottom: 0;
    left: 0; }

  .cost-cont {
    width: auto;
    margin: 0 10px 0;
    padding: 0 0 10px 0;
    border-bottom: none;
    box-sizing: border-box; }

  .cost-cont-title {
    width: 100%;
    margin: 0 auto;
    border-radius: 3px;
    font-size: 16px;
    padding: 10px 0;
    float: none;
    box-sizing: border-box; }

  .cost-cont dl {
    float: none;
    width: 100%;
    padding: 20px 0 0;
    font-weight: bold;
    box-sizing: border-box;
    border-bottom: dotted 1px #DEDEDE; }

  .total .cost-cont dt {
    background: #892613;
    color: #fff; }

  .cost-cont dt {
    float: none;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    font-size: 16px;
    box-sizing: border-box;
    background: #FAF9F5; }

  .cost-cont dd {
    width: 100%;
    margin: 0 auto;
    float: none;
    font-size: 16px;
    padding: 10px 10px;
    box-sizing: border-box;
    text-align: left; }

  .total {
    margin-top: 0; }

  .total dt {
    color: #fff;
    font-size: 16px;
    margin-bottom: 0;
    background: #872512; }

  .cost-notice {
    width: 90%;
    text-align: left; }

  .cost-notice li {
    text-indent: -1em;
    padding-left: 1em; }

  #lineup {
    padding-bottom: 30px; }

  #bg_lineup {
    width: 100%;
    height: auto; }

  .lineup-title-img {
    width: 100%;
    padding: 30px 15px 20px;
    box-sizing: border-box; }

  .lineup-title-img h3 {
    width: 20px;
    left: 25px;
    z-index: 25; }

  .lineup-cont {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box; }

  .lineup-cont-subtitle {
    font-size: 14px; }

  .lineup-cont h4 {
    font-size: 18px;
    border-bottom: solid 1px #DEDEDE; }

  .lieup-cont-desc {
    font-size: 15px;
    line-height: 1.6;
    margin: 20px 0 10px; }

  .lineup-cont ul li {
    font-weight: normal;
    margin: 0 5px 5px 0; }

  .lineup-cont ul {
    padding-bottom: 20px; }

  .lineup-wrap {
    padding: 20px 0 0; }

  .lineup-wrap-l {
    float: none;
    width: 160px;
    margin: 20px auto; }

  .lineup-wrap-r {
    width: auto;
    margin: 0;
    float: none;
    padding: 0; }

  .lineup-wrap-r h5 {
    font-size: 18px; }

  .lineup-wrap-text {
    margin: 10px 0 5px;
    font-size: 15px; }

  #question {
    padding-bottom: 30px; }

  #question .area-intro {
    padding: 30px 20px; }

  #bg_faq {
    width: 75px;
    height: auto; }

  .question-title-bg {
    background-image: url("../img/nami1_bottom.png"), url("../img/nami3_top.png"), url("../img/question_headimg.jpg");
    background-position: auto, auto, center center; }

  .question-cont {
    width: 100%;
    margin: 0 auto 30px auto; }

  .question-wrap {
    width: 100%;
    padding: 20px 0 12px 0;
    border-top: none; }

  .question-wrap dl {
    width: 100%;
    margin: 0 auto 15px;
    padding: 0 16px;
    box-sizing: border-box;
    position: relative;
    z-index: 1; }

  .question-wrap dl dt {
    font-size: 20px; }

  .question-wrap dl dd {
    font-size: 16px;
    line-height: 1.25; }

  .question-text {
    width: 100%;
    margin: 0 auto 15px;
    display: flex;
    padding: 0 16px;
    box-sizing: border-box;
    display: none; }

  .question-text dt {
    display: none; }

  .question-wrap dl.question-text dd {
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    line-height: 1.6;
    padding: 15px;
    background: #F5F1E5; }

  .question-title {
    color: #422815;
    font-weight: bold; }

  .question-title dd {
    width: 100%;
    font-size: 18px;
    padding-right: 30px;
    position: relative; }

  .question-title dd::after {
    content: "";
    width: 28px;
    height: 28px;
    margin-top: -14px;
    background: url("../img/qa-btn-p.png");
    background-repeat: no-repeat;
    background-size: 28px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s; }

  .question-title.active dd::after {
    content: "";
    background: url("../img/qa-btn-m.png");
    background-repeat: no-repeat;
    background-size: 28px;
    transform: rotate(180deg);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s; }

  .question-text dt {
    color: #B47639;
    display: none; }

  .question-text dd {
    font-size: 16px;
    color: #333; }

  .question-wrap dl {
    width: 100%;
    margin: 0 auto 20px;
    display: flex; }

  .question-title {
    padding-right: 56px;
    cursor: pointer;
    cursor: hand;
    position: relative; }

  .question-wrap dl dd {
    box-sizing: border-box;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    padding-left: 0;
    line-height: 1.25; }

  .question-wrap dl dt .question-btn-arrow {
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0;
    background-image: url("../img/qa-btn-p.png");
    background-repeat: no-repeat;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s; }

  .question-wrap dl dt.active .question-btn-arrow {
    background-image: url("../img/qa-btn-m.png");
    transform: rotate(180deg);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s; }

  #bg-circle07 {
    display: none; }

  #bg-circle08 {
    display: none; }

  #bg-mark01 {
    display: none; }

  #bg-mark02 {
    display: none; }

  #bg-mark03 {
    display: none; }

  #bg-mark04 {
    display: none; }

  #bg-mark05 {
    display: none; }

  #bg-mark06 {
    display: none; }

  button.readmore {
    width: 248px;
    border-radius: 5px;
    padding: 15px 0; } }
/* ----------------------------------------------------------------------------------------------------
  FOOTER
-------------------------------------------------------------------------------------------------------*/
/* Scss Document */
#footer {
  padding: 0 15px;
  background-image: url("../img/footer_bg.gif");
  padding-bottom: 80px;
  position: relative; }

#footer-inr {
  width: 900px;
  margin: 0 auto; }

.footer-area {
  width: 900px;
  margin: 0 auto;
  color: #333;
  display: flex; }

#footer h2 {
  border-left: #fff solid 1px;
  padding: 60px 0 40px 40px;
  font-size: 24px;
  color: #422815; }

.footer-area h3 {
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 9px; }

.footer-area h4 {
  font-weight: bold;
  font-size: 14px;
  padding-bottom: 10px; }

.footer-area p {
  font-size: 14px;
  margin-bottom: 5px;
  line-height: 1.5; }

.footer-menu-bottom1 {
  padding-bottom: 30px; }

.footer-menu-bottom2 {
  padding-bottom: 10px; }

.footer-area dl {
  font-size: 14px;
  line-height: 1.3; }

.footer-area dl dt {
  padding-left: 20px;
  cursor: pointer;
  position: relative; }

.footer-area dl dd {
  padding: 0 0 10px 20px;
  display: none; }

.footer-area dl.footer-list dt {
  display: block;
  padding-left: 0;
  cursor: text;
  font-weight: bold;
  width: 80px; }

.footer-area dl.footer-list {
  display: flex; }

.footer-area dl.footer-list dd {
  display: block;
  padding: 0 0 5px 0;
  width: calc(100% - 100px);
  padding-left: 1em;
  text-indent: -1em; }

.footer-area dl.footer-list:last-child {
  margin-bottom: 30px; }

.footer-area dl.footer-list dd::before {
  content: "："; }

/*.business-btn {
  padding-bottom: 5px; }

.footer-area dl dt .business-btn-arrow {
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  background-image: url("../img/business-btn-p.png");
  background-repeat: no-repeat;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s; }

.footer-area dl dt.active .business-btn-arrow {
  background-image: url("../img/business-btn-m.png");
  transform: rotate(180deg);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s; }
*/
.footer-menu-l {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  width: 410px;
  border-left: #fff solid 1px;
  padding-left: 40px;
  float: left; }

.footer-menu-r {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  width: 380px;
  border-left: #fff solid 1px;
  padding-left: 40px;
  float: right; }

.footer-menu-r ul li {
  display: inline-block;
  padding: 5px 5px 0 0;
  vertical-align: top; }

#copyright {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  background-color: #333333;
  color: #fff;
  font-size: 13px;
  padding: 20px 0;
  text-align: center; }

#bg_company {
  width: 605px;
  height: 106px;
  position: absolute;
  bottom: 0;
  left: 0; }

.btnPagetop {
  position: fixed;
  right: 30px;
  bottom: 80px;
  z-index: 100; }

.btnPagetop a {
  display: block; }

/*----------------------------------------------------
 TB
----------------------------------------------------*/
@media screen and (min-width: 769px) and (max-width: 1023px) {
  #footer-inr {
    width: auto; }

  .footer-area {
    width: 100%; }

  #footer h2 {
    padding: 30px 0 20px 40px; }

  .footer-area h3 {
    padding-bottom: 5px; }

  .footer-area p {
    line-height: 1.3em; }

  .footer-area dl dd {
    padding-left: 20px;
    display: none; }

  .footer-menu-l {
    width: 380px; }

  #copyright {
    padding: 10px 0; } }
/*----------------------------------------------------
 SP
----------------------------------------------------*/
@media screen and (max-width: 768px) {
  #footer {
    padding-bottom: 40px; }

  #footer-inr {
    max-width: 95%;
    display: block; }

  #footer h2 {
    border-left: none;
    padding: 30px 0 20px 0px;
    font-size: 18px; }

  .footer-area {
    width: 100%;
    display: block !important; }

  .footer-area h2 {
    border-left: none;
    padding: 30px 0;
    font-size: 18px;
    font-weight: bold; }

  .footer-area h3 {
    font-size: 15px;
    padding-bottom: 15px; }

  .footer-area h4 {
    padding-bottom: 5px; }

  .footer-menu-l {
    width: 100%;
    padding-left: 20px;
    float: none; }

  .footer-menu-r {
    width: 100%;
    display: block;
    padding-left: 20px;
    float: none; }

  .footer-menu-bottom1 {
    padding-bottom: 10px; }

  .footer-menu-bottom2 {
    padding-bottom: 10px; }

  .footer-area dl dd {
    padding-left: 20px;
    display: none; }

  .footer-sp-border {
    margin-bottom: 20px;
    border-bottom: solid 1px #fff; }

  .footer-menu-l {
    width: 100%;
    margin-bottom: 20px;
    border-left: none;
    padding-left: 0;
    float: none;
    border: none; }

  .footer-menu-r {
    width: 100%;
    border-left: none;
    padding-left: 0;
    float: none; }

  #copyright {
    font-size: 10px;
    padding: 10px 0; }

  .btnPagetop {
    position: fixed;
    right: 20px;
    bottom: 40px; }

  #bg_company {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0; } }
