@charset "utf-8";

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
モバイル向けレイアウト指定：～781px
PC向けレイアウト指定：782px〜
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

*,
*:before,
*:after {
  box-sizing: border-box;
}

body,
html {
  height: 100%;
}

body {
  color: #000;
  font: 400 16.5px/2.1 "Noto Sans Jp", sans-serif;
  text-align: justify;
  text-justify: inter-ideograph;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  word-wrap: break-word;
}

body.fixed {
  height: 100%;
  position: fixed;
  width: 100%;
}

@media only screen and (max-width: 782px) {
  body {
    font-size: 15px;
    line-height: 2;
  }
}

a {
  color: #2d2300;
  text-decoration: none;
}

a:hover,
a img:hover {
  opacity: .7;
  -webkit-transition: ease .3s opacity;
     -moz-transition: ease .3s opacity;
      -ms-transition: ease .3s opacity;
       -o-transition: ease .3s opacity;
          transition: ease .3s opacity;
}

/* 共通画像100% */
.image img {
  display: block;
  height: auto;
  width: 100%;
}

.image {
  display: block;
  height: auto;
  width: 100%;
}

/* 共通インナー */
.inner {
  margin: 0 auto;
  max-width: 1160px;
  padding: 0 40px;
}

.inner-l {
  margin: 0 auto;
  max-width: 1600px;
}

@media only screen and (max-width: 782px) {
  .inner {
    max-width: 600px;
    padding: 0;
    width: 92%;
  }
}

/* 共通マージン */
.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.p30 {
  padding-bottom: 30px;
  padding-top: 30px;
}

.p40 {
  padding-bottom: 40px;
  padding-top: 40px;
}

.p50 {
  padding-bottom: 50px;
  padding-top: 50px;
}

.p60 {
  padding-bottom: 60px;
  padding-top: 60px;
}

.p-nami {
  padding-bottom: 30px;
  padding-top: 60px;
}

@media only screen and (max-width: 782px) {
  .mt10 {
    margin-top: 5px;
  }

  .mt20 {
    margin-top: 15px;
  }

  .mt30 {
    margin-top: 20px;
  }

  .mt40 {
    margin-top: 25px;
  }

  .mt50 {
    margin-top: 30px;
  }

  .mt60 {
    margin-top: 40px;
  }

  .p30 {
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .p40 {
    padding-bottom: 25px;
    padding-top: 25px;
  }

  .p50 {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .p60 {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .p-nami {
    padding-bottom: 20px;
    padding-top: 30px;
  }
}

/* カラー */
.back-w {
  background: #fff;
}

.back-gr {
  background: #00a44e;
}

.back-gy {
  background: #5eaf00;
}

.back-be {
  background: #f7f3ef;
}

.co-w {
  color: #fff;
}

.co-gr {
  color: #00a44e;
}

.co-re {
  color: #ed6c00;
}

/* ポジション */
.po-re {
  position: relative;
}

.ov-h {
  overflow: hidden;
}

.zindex-1 {
  position: relative;
  z-index: 1;
}

/* 中央揃え */
.ma-auto {
  margin-left: auto;
  margin-right: auto;
}

.txt-center {
  text-align: center;
}

/* 字下げ */
.note {
  padding-left: 1em;
  text-indent: -1em;
}

/* フォント */
.font-wn {
  font-weight: normal;
}

.font-w500 {
  font-weight: 500;
}

.font-w700 {
  font-weight: 700;
}

/* ローダー */
.loading {
  align-items: center;
  -webkit-animation: fadelogo 1s 1.8s forwards;
          animation: fadelogo 1s 1.8s forwards;
  background-color: #fff;
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 1000;
}

@keyframes fadelogo {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading-logo {
  -webkit-animation: logo_fade 2.6s .7s forwards;
          animation: logo_fade 2.6s .7s forwards;
  max-width: 260px;
  opacity: 0;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
       -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
         -o-transform: translateY(20px);
            transform: translateY(20px);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
  }
}

@media screen and (max-width: 782px) {
  .loading-logo {
    max-width: 200px;
  }
}

#topcontrol {
  position: relative;
  z-index: 997;
}

/*==========================================
 モバイルナビ
===========================================*/
.menu-inner {
  background: #f7f3ef;
  background-size: cover;
  bottom: 0;
  left: -300px;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 20px 4%;
  pointer-events: none;
  position: fixed;
  top: 0;
  -webkit-transition: all .5s;
     -moz-transition: all .5s;
      -ms-transition: all .5s;
       -o-transition: all .5s;
          transition: all .5s;
  width: 80%;
  z-index: 999;
}

.open .menu-inner {
  left: 0;
  opacity: 1;
  pointer-events: auto;
}

.menu li {
  font-size: 1.3em;
  margin: 0 auto 22px;
}

.menu li a {
  border-bottom: 1px solid #5eaf00;
  padding-bottom: 4px;
}

.logo-menu {
  margin: 0 auto 30px;
  max-width: 250px;
}

.to-con {
  max-width: 400px;
  padding-top: 10px;
}

.to-tel {
  padding-top: 0;
}

@media screen and (max-width: 782px) {
  .menu-inner {
    width: 90%;
  }

  .menu li {
    font-size: 1.05em;
    margin: 0 auto 15px;
  }

  .menu li a {
    padding-bottom: 2px;
  }

  .logo-menu {
    margin: 0 auto 20px;
    max-width: 180px;
  }

  .to-con {
    max-width: 280px;
    padding-top: 5px;
  }

  .to-tel {
    padding-top: 0;
  }
}

/*============
.toggle_btn
=============*/
.nav-btn {
  max-width: 80px;
  min-width: 70px;
  position: fixed;
  right: 0;
  top: 0;
  width: 8%;
  z-index: 999;
}

.toggle_btn {
  cursor: pointer;
  display: block;
  height: 28px;
  left: 15%;
  margin: auto;
  position: absolute;
  right: 0;
  top: 43%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: all .5s;
  width: 36px;
}

.toggle_btn span {
  background-color: #fff;
  border-radius: 4px;
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  -webkit-transform: scaleY(.5) translateY(-50%);
     -moz-transform: scaleY(.5) translateY(-50%);
      -ms-transform: scaleY(.5) translateY(-50%);
       -o-transform: scaleY(.5) translateY(-50%);
          transform: scaleY(.5) translateY(-50%);
  -webkit-transition: all .5s;
     -moz-transition: all .5s;
      -ms-transition: all .5s;
       -o-transition: all .5s;
          transition: all .5s;
  width: 36px;
}

@media screen and (max-width: 782px) {
  .nav-btn {
    max-width: 52px;
    min-width: auto;
    width: 100%;
  }

  .toggle_btn {
    left: 15%;
    top: 43%;
    width: 30px;
  }

  .toggle_btn span {
    width: 30px;
  }
}

.toggle_btn span:nth-child(1) {
  top: 4px;
}

.toggle_btn span:nth-child(2) {
  top: 13px;
}

.toggle_btn span:nth-child(3) {
  bottom: 2px;
}

.open .toggle_btn span {
  background-color: #fff;
  height: 3px;
}

.open .toggle_btn span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
     -moz-transform: translateY(9px) rotate(-45deg);
      -ms-transform: translateY(9px) rotate(-45deg);
       -o-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
}

.open .toggle_btn span:nth-of-type(2) {
  -webkit-animation: active-btn05-bar02 .8s forwards;
          animation: active-btn05-bar02 .8s forwards;
  left: 50%;
  opacity: 0;
}

@-webkit-keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}

@keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}

.open .toggle_btn span:nth-of-type(3) {
  bottom: 3px;
  -webkit-transform: translateY(-9px) rotate(45deg);
     -moz-transform: translateY(-9px) rotate(45deg);
      -ms-transform: translateY(-9px) rotate(45deg);
       -o-transform: translateY(-9px) rotate(45deg);
          transform: translateY(-9px) rotate(45deg);
}

/*============
#mask
=============*/
.mask {
  display: none;
  transition: all .5s;
}

.open .mask {
  background: #000;
  cursor: pointer;
  display: block;
  height: 100%;
  left: 0;
  opacity: .8;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 998;
}

/*==========================================
 スクリーン
===========================================*/
.screen-img {
  background: url(./images/wellbe-img/screen.jpg) no-repeat center 70%;
  background-size: cover;
  height: 800px;
  width: 100%;
}

@media screen and (max-width: 1600px) {
  .screen-img {
    height: 700px;
  }
}

.top-nami {
  bottom: -1px;
  left: 0;
  position: absolute;
}

@media only screen and (max-width: 782px) {
  .screen-img {
    height: 400px;
  }
}

/* ヘッダー */
.header {
  height: 40px;
}

.sub-catch {
  left: 0;
  margin: auto;
  max-width: 316px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30%;
  z-index: 2;
}

.logo-wrap {
  left: 0;
  max-width: 346px;
  position: absolute;
  top: 0;
  width: 30%;
  z-index: 1;
}

.logo {
  left: 0;
  margin: auto;
  max-width: 286px;
  position: absolute;
  right: 8%;
  top: 35%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 80%;
}

.con-btn {
  max-width: 203px;
  position: absolute;
  right: 88px;
  top: 12px;
  width: 20%;
  z-index: 2;
}

.btndown a:hover,
.btndown a img:hover,
a.btndown:hover,
a.btndown img:hover {
  opacity: 1;
}

.btndown:hover {
  -webkit-transform: translateY(5px);
     -moz-transform: translateY(5px);
      -ms-transform: translateY(5px);
       -o-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: .2s cubic-bezier(.45, 0, .55, 1);
     -moz-transition: .2s cubic-bezier(.45, 0, .55, 1);
      -ms-transition: .2s cubic-bezier(.45, 0, .55, 1);
       -o-transition: .2s cubic-bezier(.45, 0, .55, 1);
          transition: .2s cubic-bezier(.45, 0, .55, 1);
}

@media screen and (max-width: 782px) {
  .header {
    height: 0;
  }

  .sub-catch {
    display: none;
  }

  .logo-wrap {
    max-width: 180px;
    width: 45%;
  }

  .logo {
    width: 85%;
  }

  .con-btn {
    max-width: 130px;
    right: 55px;
    top: 8px;
    width: 35%;
  }
}

/* キャッチフレーズ */
.catch-center {
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 48%;
  transform: translateY(-50%);
  z-index: 1;
}

.catch {
  margin: auto;
  max-width: 660px;
  width: 70%;
}

.arrow {
  -webkit-animation: arrow-move 2s infinite ease-in-out;
          animation: arrow-move 2s infinite ease-in-out;
  margin: 14px auto 8px;
  max-width: 98px;
}

@keyframes arrow-move {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }

  48% {
    -webkit-transform: translateY(-15px);
       -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
         -o-transform: translateY(-15px);
            transform: translateY(-15px);
  }

  60% {
    -webkit-transform: translateY(-10px);
       -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
         -o-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

.date {
  font-size: 2.7em;
  line-height: 1.3;
  margin: auto;
  text-shadow: 3px 3px 3px #000;
  width: 94%;
}

.date-span {
  display: inline-block;
  margin-left: 5px;
}

@media screen and (max-width: 782px) {
  .catch-center {
    top: 50%;
  }

  .catch {
    margin: auto;
    max-width: 380px;
    width: 90%;
  }

  .arrow {
    margin: 8px auto 5px;
    max-width: 40px;
  }

  @keyframes arrow-move {
    0%,
    20%,
    50%,
    80%,
    100% {
      -webkit-transform: translateY(0);
         -moz-transform: translateY(0);
          -ms-transform: translateY(0);
           -o-transform: translateY(0);
              transform: translateY(0);
    }

    48% {
      -webkit-transform: translateY(-8px);
         -moz-transform: translateY(-8px);
          -ms-transform: translateY(-8px);
           -o-transform: translateY(-8px);
              transform: translateY(-8px);
    }

    60% {
      -webkit-transform: translateY(-3px);
         -moz-transform: translateY(-3px);
          -ms-transform: translateY(-3px);
           -o-transform: translateY(-3px);
              transform: translateY(-3px);
    }
  }

  .date {
    font-size: 1.5em;
    text-shadow: 2px 2px 2px #000;
  }
}

/* 左右背景 模様 */
.back-l {
  bottom: -30px;
  left: 0;
  max-width: 540px;
  min-width: 200px;
  position: absolute;
  width: 50%;
}

.back-r {
  max-width: 430px;
  min-width: 220px;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  width: 40%;
  z-index: 1;
}

@media screen and (max-width: 782px) {
  .back-l {
    bottom: -10px;
  }
}

/*==========================================
 リード
===========================================*/
.lead {
  display: flex;
}

.lead-txt {
  margin-right: 10.1851852%;
  width: 50.9259259%;
}

.lead-img {
  margin-top: -140px;
  width: 38.8888889%;
  z-index: 1;
}

.lead-p {
  margin-top: 15px;
}

@media screen and (max-width: 1000px) {
  .lead-img {
    margin-top: -110px;
  }
}

.page-title {
  font-size: 1.8em;
  line-height: 1.5;
}

@media screen and (max-width: 782px) {
  .lead {
    display: block;
  }

  .lead-txt {
    margin-right: 0;
    width: 100%;
  }

  .lead-img {
    margin: 20px auto 0;
    max-width: 260px;
    width: 100%;
  }

  .page-title {
    font-size: 1.4em;
    text-align: center;
  }

  .lead-p {
    margin-top: 12px;
  }
}

/*==========================================
 アバウト
===========================================*/
.back-y {
  left: 0;
  max-width: 540px;
  min-width: 200px;
  position: absolute;
  top: 230px;
  width: 50%;
}

.about-container {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
}

.about-title {
  margin-right: 8.33333333%;
  min-width: 170px;
  width: 19.9074074%;
}

.about-txt {
  width: 71.7592593%;
}

.line {
  margin: 20px 0;
  max-width: 236px;
}

.about-title-mb {
  display: none;
}

@media screen and (max-width: 782px) {
  .back-y {
    top: -60px;
  }

  .about-title-pc {
    display: none;
  }

  .about-title-mb {
    color: #5eaf00;
    display: block;
    font-size: 1.6em;
    line-height: 1.5;
    margin-top: 18px;
    text-align: center;
  }
}

@media screen and (max-width: 782px) {
  .about-container {
    display: block;
  }

  .about-title {
    margin-right: 0;
    min-width: auto;
    width: 100%;
  }

  .about-txt {
    width: 100%;
  }

  .line {
    margin: 15px auto;
    max-width: 160px;
  }
}

/* ユーチューブ埋め込み通常ページ */
.video-row {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 70px 0 0;
  width: 100%;
}

.video-col {
  width: 48.1481481%;
}

.video-mr {
  margin-right: 3.7037037%;
}

.video-wrap {
  height: 0;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}

.video-wrap > iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.video-ti {
  background: #ed6c00;
  -webkit-border-radius: 20px;
     -moz-border-radius: 20px;
      -ms-border-radius: 20px;
       -o-border-radius: 20px;
          border-radius: 20px;
  left: -20px;
  line-height: 1.4;
  padding: 5px 14px;
  position: absolute;
  top: -40px;
}

@media screen and (max-width: 782px) {
  .video-row {
    display: block;
    margin: 50px 0 0;
  }

  .video-col {
    margin-left: auto;
    margin-right: auto;
    max-width: 420px;
    width: 100%;
  }

  .video-mr {
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
  }

  .video-ti {
    left: -4%;
    top: -34px;
  }
}

/* ルビ */
[data-ruby] {
  position: relative;
}

[data-ruby]::before {
  color: #ff4e08;
  content: attr(data-ruby);
  font-size: 1em;
  font-weight: bold;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: -1.1em;
}

/*==========================================
 概要
===========================================*/
.outline-back {
  background: url(./images/wellbe-img/outline-back.jpg) no-repeat center 70%;
  background-size: cover;
  width: 100%;
}

.line-auto {
  margin-left: auto;
  margin-right: auto;
}

.outline-container {
  align-items: center;
  background: rgba(255, 255, 255, .7);
  -webkit-border-radius: 30px;
     -moz-border-radius: 30px;
      -ms-border-radius: 30px;
       -o-border-radius: 30px;
          border-radius: 30px;
  display: flex;
  font-size: 1.05em;
  line-height: 1.8;
  padding: 20px 4%;
  text-align: left;
}

.outline-icon {
  margin-right: 3.5%;
  max-width: 143px;
  width: 16%;
}

.outline-txt {
  width: 80.5%;
}

/* 日時 */
.outline-time {
  align-items: center;
  display: flex;
}

.outline-time-l {
  flex-shrink: 0;
}

.outline-time-l li {
  line-height: 1.5;
}

.shikaku {
  margin-right: 4px;
}

.day {
  font-size: 1.4em;
  font-weight: 500;
}

.line-a {
  margin: 0 3%;
  max-width: 12px;
}

.outline-ex {
  font-size: .9em;
}

.out-mt {
  margin-top: 13px;
}

/* 行程表 */
.sche-txt {
  border: solid 2px #5eaf00;
  -webkit-border-radius: 20px;
     -moz-border-radius: 20px;
      -ms-border-radius: 20px;
       -o-border-radius: 20px;
          border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.1em;
  line-height: 1.4;
  padding: 2px 4%;
}

.sche-txt div {
  padding: 10px 2px;
  text-align: center;
}

.sche-border {
  display: inline-block;
  position: relative;
}

.sche-border::before,
.sche-border::after {
  background-color: #000;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transform: rotate(0);
  width: 100%;
}

.sche-border::before {
  top: 55%;
}

.sche-border::after {
  top: 42%;
}

.sche-ex {
  margin-top: 5px;
}

@media screen and (max-width: 930px) {
  /* 日時 */
  .outline-time {
    display: block;
  }

  .outline-time-l {
    margin-bottom: 10px;
  }

  .shikaku {
    margin-right: 1px;
  }

  .day {
    font-size: 1.3em;
  }

  .line-a {
    display: none;
  }

  .out-mt {
    margin-top: 0;
  }
}

@media screen and (max-width: 782px) {
  .outline-container {
    display: block;
    font-size: 1em;
    padding: 13px 6% 18px;
  }

  .outline-icon {
    margin-bottom: 2px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100px;
    width: 100%;
  }

  .outline-txt {
    width: 100%;
  }

  /* 行程表 */
  .sche-box {
    margin-top: 10px;
  }

  .sche-txt {
    font-size: 1em;
    padding: 4px 4%;
  }

  .sche-txt div {
    padding: 3px 0;
  }

  .outline-dot {
    font-size: .8em;
    font-weight: 700;
    margin-top: 3px;
  }

  .txt-sm {
    display: block;
    font-size: .7rem;
  }

  .sche-ex {
    font-size: .8em;
    margin-top: 3px;
  }
}

/*==========================================
 ツアー条件
===========================================*/
/* 画像 */
.tourimg-list {
  display: flex;
}

.tourimg-list li {
  width: 20%;
}

@media screen and (max-width: 782px) {
  .tourimg-list {
    flex-wrap: wrap;
  }

  .tourimg-list li {
    width: 33.3333333%;
  }

  .tourimg-list li:nth-child(4),
  .tourimg-list li:nth-child(5) {
    margin-top: 20px;
    width: 50%;
  }
}

/* ツアー条件 */
.cond-container {
  display: flex;
  flex-direction: row-reverse;
}

.cond-item-r {
  font-size: 1.15em;
  margin-left: 5%;
  min-width: 460px;
  width: 500px;
}

.cond-item-l {
  margin: 0 calc(50% - 50vw);
  margin-right: auto;
}

.cond-item-l img {
  max-width: 740px;
}

@media screen and (max-width: 782px) {
  .cond-container {
    display: block;
  }

  .cond-item-r {
    font-size: 1em;
    margin-left: 0;
    min-width: auto;
    width: 100%;
  }

  .cond-item-l {
    margin: 20px auto 0;
  }

  .cond-item-l img {
    max-width: 740px;
  }
}

/* リスト */
.cond-title {
  color: #072151;
  font-size: 1.1em;
}

.outline-list li {
  display: flex;
  line-height: 1.7;
  margin-bottom: 8px;
}

.outline-l {
  color: #00a44e;
  flex-shrink: 0;
  font-weight: 700;
  width: 110px;
}

.outline-span {
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1;
  margin-left: 2px;
  margin-right: 2px;
}

.outline-r p.outline-r-p:first-child {
  margin-bottom: 6px;
}

.konosuke {
  max-width: 250px;
  min-width: 150px;
  position: absolute;
  right: 6%;
  top: 50px;
  width: 19%;
}

@media screen and (max-width: 782px) {
  .cond-title {
    font-size: 1.2em;
  }

  .outline-list li {
    margin-bottom: 6px;
  }

  .outline-l {
    width: 80px;
  }

  .outline-span {
    font-size: 1.4em;
  }

  .outline-r p.outline-r-p:first-child {
    margin-bottom: 4px;
  }

  .konosuke {
    min-width: 90px;
    right: 2%;
    top: -10px;
  }
}

@media screen and (max-width: 330px) {
  .outline-l {
    width: 74px;
  }
}

.words {
  margin-bottom: 40px;
  max-width: 950px;
  width: 90%;
}

.words-mb {
  display: none;
}

@media screen and (max-width: 1430px) {
  .words {
    width: 80%;
  }
}

@media screen and (max-width: 1270px) {
  .words {
    width: 76%;
  }
}

@media screen and (max-width: 782px) {
  .words {
    display: none;
  }

  .words-mb {
    display: block;
    margin-bottom: 30px;
    margin-top: 20px;
    max-width: 420px;
  }
}

/*==========================================
 お問い合わせ
===========================================*/
.con-back {
  background: url(./images/wellbe-img/screen.jpg) no-repeat center 70%;
  background-size: cover;
  padding: 50px 0 9%;
  width: 100%;
}

@media screen and (max-width: 1600px) {
  .con-back {
    padding: 50px 0 10%;
  }
}

.nami-foot {
  bottom: 0;
  left: 0;
  position: absolute;
}

.con-list {
  display: flex;
}

.con-list li {
  margin-right: 3.7037037%;
  width: 48.1481481%;
}

.con-list li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 782px) {
  .con-back {
    padding: 30px 0 12%;
    width: 100%;
  }

  .con-list {
    display: block;
  }

  .con-list li {
    margin-left: auto;
    margin-right: auto;
    max-width: 280px;
    width: 100%;
  }

  .con-list li:last-child {
    margin-right: auto;
    margin-top: 10px;
  }
}

.back-l-foot {
  bottom: 0;
  left: 0;
  max-width: 540px;
  min-width: 200px;
  position: absolute;
  width: 50%;
}

/*==========================================
 フッター
===========================================*/
.footer {
  padding-bottom: 40px;
}

.foot-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.foot-logo {
  max-width: 280px;
  width: 30%;
}

.foot-txt {
  font-size: .95em;
  line-height: 1.7;
}

.cst-link {
  color: #374149;
  text-decoration: underline;
}

.cst-logo {
  max-width: 150px;
  position: absolute;
  right: 0;
  top: -10px;
  width: 40%;
}

.foot-nav {
  display: flex;
  font-size: .9em;
  justify-content: flex-end;
}

.foot-nav li {
  margin-right: 18px;
}

.foot-nav li:last-child {
  margin-right: 0;
}

.foot-nav li a::before {
  background-image: url(./images/wellbe-img/foot-arrow.png);
  background-size: contain;
  content: "";
  display: inline-block;
  height: 15px;
  margin-right: 4px;
  margin-top: -3px;
  vertical-align: middle;
  width: 15px;
}

.copy {
  padding: 12px 2% 10px;
}

.copy img {
  margin: auto;
  max-width: 375px;
}

.foot-sns {
  display: flex;
}

.foot-hp {
  flex-shrink: 0;
}

.foot-ins {
  margin-left: 4%;
  max-width: 120px;
}

@media screen and (max-width: 782px) {
  .footer {
    padding-bottom: 30px;
    padding-top: 30px;
    text-align: left;
  }

  .foot-container {
    display: block;
  }

  .foot-logo {
    margin: 20px auto 0;
    max-width: 180px;
    width: 100%;
  }

  .foot-txt {
    font-size: .9em;
  }

  .foot-txt-span {
    display: inline-block;
  }

  .cst-logo {
    max-width: 120px;
    width: 37%;
  }

  .foot-nav {
    justify-content: flex-start;
  }

  .foot-nav li {
    margin-right: 14px;
  }

  .copy {
    padding: 8px 2% 6px;
  }

  .copy img {
    max-width: 280px;
  }
}

/*==========================================
 アニメーション
===========================================*/
/* ヘッダーアニメーション */
@keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
       -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
         -o-transform: translateY(20px);
            transform: translateY(20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}

.fade-up {
  -webkit-animation: fadeUp 2.5s ease 1.5s 1 normal backwards;
          animation: fadeUp 2.5s ease 1.5s 1 normal backwards;
  animation-fill-mode: both;
}

/* キャッチアニメーション */
@keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
       -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
         -o-transform: translateY(-20px);
            transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in {
  -webkit-animation: fadeIn 4s ease 1.5s 1 normal backwards;
          animation: fadeIn 4s ease 1.5s 1 normal backwards;
  animation-fill-mode: both;
}

/* 下からフェードイン */
.fadein-bottom {
  opacity: 0;
  -webkit-transform: translateY(30px);
     -moz-transform: translateY(30px);
      -ms-transform: translateY(30px);
       -o-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all .5s linear;
     -moz-transition: all .5s linear;
      -ms-transition: all .5s linear;
       -o-transition: all .5s linear;
          transition: all .5s linear;
}

.fadein-bottom.active {
  opacity: 1;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}

/* 遅れて表示 */
.fade-delay {
  transition-delay: .15s;
}
