@charset "UTF-8";
/* 要素 フォントサイズ・マージン・パディングをリセット */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

/* 行の高=フォントサイズ */
body {
  line-height: 1;
}

/* 新規追加要素をブロック要素化 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* ulのマーカー非表示 */
ol,
ul {
  list-style: none;
}

/* 引用符の非表示 */
blockquote,
q {
  quotes: none;
}

/* blockquote要素、q要素の前後にコンテンツ非表示 */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}

/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*　隣接するセルのボーダーを重ねて表示　*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 水平罫線デフォルトリセット */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* 縦方向の揃え 中央揃え */
input,
select {
  vertical-align: middle;
}

/* 画像を縦に並べた時に余白0 */
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:after {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
}

br {
  line-height: inherit;
}

/*【共通】パーツ
----------------------------------------------------------------*/
/* リンク */
a,
a * {
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
  -webkit-backface-visibility: hidden;
  /* 追加 */
  backface-visibility: hidden;
  /* 追加 */
}

img {
  max-width: 100%;
  height: auto;
}

html,
body {
  overflow-x: hidden;
  position: relative;
}

/* 表示切り替え */
.pc-display {
  display: block;
}

.sp-display {
  display: none;
}

.tb-display {
  display: none;
}

@media screen and (max-width: 1279px) {
  .tb-display {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .pc-display {
    display: none;
  }
  .sp-display {
    display: block;
  }
}
/* 配置 */
/*基本設定
----------------------------------------------------------------*/
/*  配置  */
.flex-nml {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-btw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/*---------------------------------------------- @media & @variable ------------------------------------------*/
@font-face {
  font-family: "Yu Gothic";
  src: url("../fonts/YuGothR.ttc");
}
/*---------------------------------------------- common styles ------------------------------------------*/
html,
body {
  overflow-x: hidden;
  font-family: "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 25px;
  color: #1D1D1D;
  word-wrap: break-word;
}
@media only screen and (max-width: 767px) {
  html,
  body {
    font-size: 15px;
  }
}

.container {
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 25px;
  color: #1D1D1D;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 1400px;
  padding: 60px 80px 160px;
}
@media only screen and (min-width: 1200px) {
  .container {
    font-size: 15px;
  }
}
.container img {
  max-width: 100%;
  width: 100%;
}
.container html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
}
@media only screen and (min-width: 1200px) {
  .container {
    padding: 100px 130px;
  }
}
@media only screen and (max-width: 1000px) {
  .container {
    padding: 50px 0 90px;
  }
}
.container .sub-title {
  color: #FF8787;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
}
@media only screen and (max-width: 767px) {
  .container .sub-title {
    font-size: 17px;
  }
}
@media only screen and (max-width: 420px) {
  .container .sub-title {
    font-size: 15px;
    letter-spacing: -0.03rem;
  }
}
.container .title {
  color: #FF8787;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  margin: 21px auto 25px;
}
@media only screen and (max-width: 767px) {
  .container .title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 420px) {
  .container .title {
    font-size: 25px;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

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

.bg-color1 {
  background-color: #979386;
}
.bg-color1.link-detail {
  border: 1px solid #979386;
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #979386), color-stop(50%, rgba(151, 147, 134, 0.5647058824))) right;
  background: linear-gradient(to left, #979386 50%, rgba(151, 147, 134, 0.5647058824) 50%) right;
  color: white;
  background-size: 200%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  position: relative;
}
.bg-color1.link-detail:hover {
  background-position: left;
}
.bg-color1.link-detail:hover img {
  opacity: 0.8;
}
.bg-color1.link-detail i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bg-color2 {
  background-color: #C0A209;
}
.bg-color2.link-detail {
  border: 1px solid #C0A209;
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #C0A209), color-stop(50%, rgba(192, 162, 9, 0.5647058824))) right;
  background: linear-gradient(to left, #C0A209 50%, rgba(192, 162, 9, 0.5647058824) 50%) right;
  color: white;
  background-size: 200%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  position: relative;
}
.bg-color2.link-detail:hover {
  background-position: left;
}
.bg-color2.link-detail:hover img {
  opacity: 0.8;
}
.bg-color2.link-detail i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bg-color3 {
  background-color: #2D3751;
}
.bg-color3.link-detail {
  border: 1px solid #2D3751;
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #2D3751), color-stop(50%, rgba(45, 55, 81, 0.5647058824))) right;
  background: linear-gradient(to left, #2D3751 50%, rgba(45, 55, 81, 0.5647058824) 50%) right;
  color: white;
  background-size: 200%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  position: relative;
}
.bg-color3.link-detail:hover {
  background-position: left;
}
.bg-color3.link-detail:hover img {
  opacity: 0.8;
}
.bg-color3.link-detail i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bg-color4 {
  background-color: #A23833;
}
.bg-color4.link-detail {
  border: 1px solid #A23833;
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #A23833), color-stop(50%, rgba(162, 56, 51, 0.5647058824))) right;
  background: linear-gradient(to left, #A23833 50%, rgba(162, 56, 51, 0.5647058824) 50%) right;
  color: white;
  background-size: 200%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  position: relative;
}
.bg-color4.link-detail:hover {
  background-position: left;
}
.bg-color4.link-detail:hover img {
  opacity: 0.8;
}
.bg-color4.link-detail i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bg-color5 {
  background-color: #9FB100;
}
.bg-color5.link-detail {
  border: 1px solid #9FB100;
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #9FB100), color-stop(50%, rgba(159, 177, 0, 0.5647058824))) right;
  background: linear-gradient(to left, #9FB100 50%, rgba(159, 177, 0, 0.5647058824) 50%) right;
  color: white;
  background-size: 200%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  position: relative;
}
.bg-color5.link-detail:hover {
  background-position: left;
}
.bg-color5.link-detail:hover img {
  opacity: 0.8;
}
.bg-color5.link-detail i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bg-color6 {
  background-color: #7BA6B9;
}
.bg-color6.link-detail {
  border: 1px solid #7BA6B9;
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #7BA6B9), color-stop(50%, #7BA6B9)) right;
  background: linear-gradient(to left, #7BA6B9 50%, #7BA6B9 50%) right;
  color: white;
  background-size: 200%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  position: relative;
}
.bg-color6.link-detail:hover {
  background-position: left;
}
.bg-color6.link-detail:hover img {
  opacity: 0.8;
}
.bg-color6.link-detail i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bg-color7 {
  background-color: #649B77;
}
.bg-color7.link-detail {
  border: 1px solid #649B77;
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #649B77), color-stop(50%, #649B77)) right;
  background: linear-gradient(to left, #649B77 50%, #649B77 50%) right;
  color: white;
  background-size: 200%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  position: relative;
}
.bg-color7.link-detail:hover {
  background-position: left;
}
.bg-color7.link-detail:hover img {
  opacity: 0.8;
}
.bg-color7.link-detail i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bg-color-red {
  background-color: #FF8787;
}
.bg-color-red.link-detail {
  border: 1px solid #FF8787;
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #FF8787), color-stop(50%, rgba(255, 135, 135, 0.5647058824))) right;
  background: linear-gradient(to left, #FF8787 50%, rgba(255, 135, 135, 0.5647058824) 50%) right;
  color: white;
  background-size: 200%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  position: relative;
}
.bg-color-red.link-detail:hover {
  background-position: left;
}
.bg-color-red.link-detail:hover img {
  opacity: 0.8;
}
.bg-color-red.link-detail i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bg-color-green {
  background-color: #84C254;
}
.bg-color-green.link-detail {
  border: 1px solid #84C254;
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #84C254), color-stop(50%, rgba(132, 194, 84, 0.5647058824))) right;
  background: linear-gradient(to left, #84C254 50%, rgba(132, 194, 84, 0.5647058824) 50%) right;
  color: white;
  background-size: 200%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  position: relative;
}
.bg-color-green.link-detail:hover {
  background-position: left;
}
.bg-color-green.link-detail:hover img {
  opacity: 0.8;
}
.bg-color-green.link-detail i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn-more {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.btn-more a {
  width: 300px;
  height: 70px;
  border-radius: 35px;
  border: 1px solid #FF8787;
  font-size: 16px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #FF8787), color-stop(50%, rgba(255, 135, 135, 0.5647058824))) right;
  background: linear-gradient(to left, #FF8787 50%, rgba(255, 135, 135, 0.5647058824) 50%) right;
  color: white;
  background-size: 200%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  position: relative;
}
.btn-more a:hover {
  background-position: left;
}
.btn-more a:hover img {
  opacity: 0.8;
}
.btn-more a i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn-more:hover {
  opacity: 0.85;
}

.illustrator {
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .illustrator {
    display: none;
  }
}

/*---------------------------------------------- start header ------------------------------------------*/
a {
  background-position: right !important;
}

.icon-left {
  opacity: 30%;
}

.icon-right {
  opacity: 30%;
}

.logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 130px 24px 30px;
}
@media only screen and (max-width: 767px) {
  .logo-wrapper {
    display: block;
    padding: 10px 15px;
  }
}

.logo {
  z-index: 10;
  display: block;
}
@media only screen and (max-width: 767px) {
  .logo {
    left: 10px;
  }
}
.logo.active {
  display: none;
}

.gtranslate_wrapper {
  position: relative;
  margin-top: 9px;
  max-width: 180px;
}
@media only screen and (max-width: 767px) {
  .gtranslate_wrapper {
    margin-top: 5px;
    max-width: 120px;
  }
}
.gtranslate_wrapper::before {
  content: url(../img/icons/arrow-translate.svg);
  position: absolute;
  top: 0;
  left: 10px;
}
.gtranslate_wrapper:hover {
  opacity: 0.8;
}
.gtranslate_wrapper .gt_selector {
  padding: 1px 5px 1px 30px;
  width: 100%;
  border-color: #818181;
  border-radius: 3px;
  font-family: "游ゴシック", sans-serif;
  font-size: 14px;
  color: #818181;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  /* デフォルトの矢印を非表示 */
}
.gtranslate_wrapper .gt_selector::-ms-expand {
  display: none;
  /* デフォルトの矢印を非表示(IE用) */
}

.navbar {
  font-family: "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 25px;
  color: #1D1D1D;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  z-index: 100;
  width: 100%;
  background: transparent;
  position: fixed;
  top: 0;
  right: 0;
}
@media only screen and (min-width: 1200px) {
  .navbar {
    font-size: 15px;
  }
}
.navbar img {
  max-width: 100%;
  width: 100%;
}
.navbar html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
}
.navbar.active {
  background: #FFFFFF;
}
.navbar-container {
  margin: 0 auto;
  width: 100%;
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50px;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .navbar-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 40px;
  }
}
.navbar input[type=checkbox] {
  display: block;
  position: absolute;
  height: 100px;
  width: 100px;
  top: -50px;
  right: 0;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .navbar input[type=checkbox] {
    height: 80px;
    width: 80px;
  }
}
.navbar input[type=checkbox]:checked ~ .hamburger .line1 {
  width: 48px;
  -webkit-transform: rotate(32deg);
          transform: rotate(32deg);
}
.navbar input[type=checkbox]:checked ~ .hamburger .line2 {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
.navbar input[type=checkbox]:checked ~ .hamburger .line3 {
  width: 48px;
  -webkit-transform: rotate(-32deg);
          transform: rotate(-32deg);
}
.navbar .hamburger {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  z-index: 2;
  background-color: #FF8787;
  border-bottom-left-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .navbar .hamburger {
    height: 80px;
    width: 80px;
  }
}
.navbar .hamburger .lines {
  height: 28px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.navbar .hamburger .line {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 10px;
  background: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navbar .hamburger .line1 {
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
}
.navbar .hamburger .line3 {
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
}
.navbar .menu {
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1400px;
  padding: 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  overflow: auto;
}
@media only screen and (max-width: 767px) {
  .navbar .menu {
    padding: 0;
  }
}
.navbar .menu .logo {
  width: 439px;
  position: absolute;
  top: 0;
  left: 30px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media only screen and (max-width: 767px) {
  .navbar .menu .logo {
    width: 255px;
    left: 25px;
  }
}
.navbar .menu > ul {
  width: 50%;
  padding-left: 40px;
  padding-right: 40px;
}
@media only screen and (max-width: 1000px) {
  .navbar .menu > ul {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.navbar .menu > ul > li > a {
  border-bottom: 1px solid #e6e6e6;
  padding: 15px 10px 17px;
}
.navbar .menu > ul > li:nth-child(3) {
  border-bottom: 1px solid #e6e6e6;
}
@media only screen and (max-width: 767px) {
  .navbar .menu li:first-of-type {
    padding-top: 0;
  }
}
.navbar .menu li:last-of-type {
  padding-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .navbar .menu li:last-of-type {
    padding-bottom: 0;
  }
}
.navbar .menu a {
  position: relative;
  padding: 14px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-right: 20px;
}
@media only screen and (max-width: 767px) {
  .navbar .menu a {
    font-size: 15px;
  }
}
@media screen and (max-width: 415px) {
  .navbar .menu a {
    padding-right: 16px;
  }
}
@media screen and (max-width: 380px) {
  .navbar .menu a {
    padding: 12px 0;
    font-size: 14px;
  }
}
.navbar .menu a:hover {
  color: #FF8787;
}
.navbar .menu a::after {
  content: url(../img/icons/arrow-pink-right.svg);
  position: absolute;
  top: 51%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.navbar .menu a.link-none::after {
  content: none;
}
.navbar .menu a.link-none:hover {
  color: #333;
}
.navbar .menu span {
  font-size: 18px;
  font-weight: bold;
}
.navbar .menu i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  color: #FF8787;
  font-size: 16px;
}
.navbar .menu.active {
  height: 100vh;
  opacity: 1;
  visibility: visible;
  background-color: #fff;
  padding: 160px 60px 40px;
}
@media only screen and (max-width: 767px) {
  .navbar .menu.active {
    padding: 139px 0 120px;
  }
}
.navbar .menu .campaign {
  margin-top: 43px;
  padding-right: 10px;
  position: absolute;
  top: 0;
  right: 100px;
}
@media only screen and (max-width: 767px) {
  .navbar .menu .campaign {
    width: 100%;
    margin-top: 30px;
    position: unset;
    text-align: center;
  }
}
.navbar .menu .campaign a {
  width: 282.48px;
  height: 56.5px;
  border-radius: 28.25px;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .navbar .menu .campaign a {
    width: 300px;
    height: 70px;
    border-radius: 35px;
  }
}
.navbar .menu .campaign a:hover {
  color: white;
  opacity: 0.85;
}
.navbar .menu .campaign i {
  right: 15px;
  color: white;
}
.navbar .menu .icon {
  display: inline-block;
  width: 26px;
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .navbar .menu .icon {
    margin-right: 10px;
  }
}
.navbar .menu .dropdown_btn {
  position: relative;
  font-weight: bold;
  color: #FF8787;
}
.navbar .menu .dropdown_btn::after {
  content: url(../img/icons/arrow-pink-bottom.svg);
  position: absolute;
  top: 51%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.navbar .menu .dropdown_btn.active::after {
  content: url(../img/icons/arrow-pink-top.svg);
}
.navbar .menu .deep-links {
  padding-left: 36px;
}
@media only screen and (max-width: 420px) {
  .navbar .menu .deep-links {
    margin-top: 10px;
  }
}

/*---------------------------------------------- end header ------------------------------------------*/
/*---------------------------------------------- start main ------------------------------------------*/
@media only screen and (max-width: 767px) {
  .jquery-modal.blocker {
    padding: 0;
  }
}
.jquery-modal .modal {
  max-width: 700px;
  padding: 30px;
}
@media only screen and (max-width: 767px) {
  .jquery-modal .modal {
    height: 70vh;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .jquery-modal .modal a.close-modal {
    top: -4px;
    right: -4px;
  }
}
.jquery-modal .modal .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.jquery-modal .modal .flex .img {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .jquery-modal .modal .flex .img {
    width: 100%;
  }
}
.jquery-modal .modal .flex .text {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .jquery-modal .modal .flex .text {
    width: 100%;
    margin-top: 15px;
  }
}
.jquery-modal .modal .flex .text h4 {
  margin-bottom: 15px;
  font-size: 26px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .jquery-modal .modal .flex .text h4 {
    font-size: 20px;
  }
}
.jquery-modal #location1 h4 {
  color: #C0A209;
}
.jquery-modal #location2 h4 {
  color: #979386;
}
.jquery-modal #location3 h4 {
  color: #A23833;
}
.jquery-modal #location4 h4 {
  color: #2D3751;
}
.jquery-modal #location5 h4 {
  color: #9FB100;
}
.jquery-modal #location6 h4 {
  color: #7BA6B9;
}
.jquery-modal #location7 h4 {
  color: #649B77;
}

section {
  position: relative;
}

.sec4 .img {
  width: 100%;
  margin: 70px auto 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .sec4 .img {
    margin: 110px auto 50px;
  }
}
.sec4 .img .detail {
  display: block;
  position: absolute;
  min-width: 120px;
  min-height: 120px;
  max-width: 190px;
  max-height: 190px;
  width: 13.5714285714vw;
  height: 13.5714285714vw;
  border-radius: 50%;
  border: 2px solid white;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .sec4 .img .detail {
    min-width: 120px;
    min-height: 120px;
  }
}
@media screen and (max-width: 600px) {
  .sec4 .img .detail {
    min-width: 100px;
    min-height: 100px;
  }
}
@media only screen and (max-width: 420px) {
  .sec4 .img .detail {
    min-width: 85px;
    min-height: 85px;
  }
}
.sec4 .img .detail:hover {
  opacity: 0.8;
  cursor: pointer;
}
.sec4 .img .detail > div {
  max-width: 100px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  color: white;
  font-weight: bold;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (min-width: 768px) {
  .sec4 .img .detail > div {
    max-width: 115px;
  }
}
@media only screen and (min-width: 1200px) {
  .sec4 .img .detail > div {
    max-width: 135px;
  }
}
.sec4 .img .detail > div p {
  font-size: 1rem;
  line-height: 40px;
}
@media only screen and (min-width: 768px) {
  .sec4 .img .detail > div p {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1200px) {
  .sec4 .img .detail > div p {
    font-size: 21px;
    line-height: 50px;
  }
}
.sec4 .img .detail > div p:first-child {
  padding-top: 7px;
  line-height: 30px;
}
@media only screen and (min-width: 768px) {
  .sec4 .img .detail > div p:first-child {
    padding-top: 0;
  }
}
.sec4 .img .detail > div p:last-child {
  margin: 0 auto;
  width: 80%;
  border-top: 2px dotted white;
  font-size: 0.8125rem;
}
@media only screen and (min-width: 768px) {
  .sec4 .img .detail > div p:last-child {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 1200px) {
  .sec4 .img .detail > div p:last-child {
    width: 100%;
    font-size: 16px;
  }
}
.sec4 .img .detail > div p i {
  margin-left: 4px;
}
.sec4 .img .location1 {
  left: 16%;
  top: 25.5%;
}
@media only screen and (max-width: 767px) {
  .sec4 .img .location1 {
    left: 37%;
    top: 0;
    -webkit-transform: translate(-50%, -70%);
            transform: translate(-50%, -70%);
  }
}
.sec4 .img .location2 {
  left: 0;
  top: 40%;
}
@media only screen and (max-width: 767px) {
  .sec4 .img .location2 {
    left: 0;
    top: 0;
    -webkit-transform: translate(0, -70%);
            transform: translate(0, -70%);
  }
}
@media only screen and (max-width: 420px) {
  .sec4 .img .location2 {
    left: 0;
  }
}
.sec4 .img .location3 {
  left: 5%;
  top: 64%;
}
@media only screen and (max-width: 767px) {
  .sec4 .img .location3 {
    left: 50%;
    top: unset;
    bottom: 0;
    -webkit-transform: translate(-50%, 70%);
            transform: translate(-50%, 70%);
  }
}
.sec4 .img .location4 {
  left: 37%;
  top: 16%;
}
@media only screen and (max-width: 767px) {
  .sec4 .img .location4 {
    left: unset;
    right: 26%;
    top: 0;
    -webkit-transform: translate(0, -70%);
            transform: translate(0, -70%);
  }
}
.sec4 .img .location5 {
  right: 0%;
  top: 30%;
}
@media only screen and (max-width: 767px) {
  .sec4 .img .location5 {
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transform: translate(0, -70%);
            transform: translate(0, -70%);
  }
}
@media only screen and (max-width: 767px) {
  .sec4 .img .location5 > div p:nth-of-type(-n+2) {
    line-height: 16px;
  }
}
@media only screen and (max-width: 420px) {
  .sec4 .img .location5 > div p:nth-of-type(-n+2) {
    padding-top: 10px;
    line-height: 15px;
  }
}
.sec4 .img .location6 {
  right: 20%;
  top: 86%;
}
@media only screen and (max-width: 767px) {
  .sec4 .img .location6 {
    left: 25%;
    top: unset;
    bottom: 0;
    -webkit-transform: translate(-50%, 70%);
            transform: translate(-50%, 70%);
  }
}
.sec4 .img .location7 {
  right: -1%;
  top: 50%;
}
@media only screen and (max-width: 767px) {
  .sec4 .img .location7 {
    left: 75%;
    top: unset;
    bottom: 0;
    -webkit-transform: translate(-50%, 70%);
            transform: translate(-50%, 70%);
  }
}

/* タブ */
#model_tabcontrol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 45px;
  padding-right: 45px;
  border-bottom: 2px solid #FF8787;
  width: 100%;
  max-width: 1140px;
}
@media only screen and (max-width: 767px) {
  #model_tabcontrol {
    position: absolute;
    z-index: 10;
    padding-left: 15px;
    padding-right: 15px;
  }
}
#model_tabcontrol .tab_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  border-width: 2px 2px 0px 2px;
  border-style: solid;
  border-color: #FF8787;
  border-radius: 5px 5px 0 0;
  padding: 15px 0 16px;
  text-decoration: none;
  color: black;
  background-color: white;
  font-weight: bold;
  position: relative;
  margin-right: 48px;
}
@media only screen and (max-width: 767px) {
  #model_tabcontrol .tab_btn {
    margin-right: 14px;
    padding: 5px 0 6px;
  }
}
#model_tabcontrol .tab_btn:last-child {
  margin-right: 0;
}
#model_tabcontrol .tab_btn div {
  padding-right: 13px;
}
@media only screen and (max-width: 767px) {
  #model_tabcontrol .tab_btn div {
    padding-right: 8px;
  }
}
#model_tabcontrol .tab_btn .active_image {
  display: none;
}
#model_tabcontrol .tab_btn .default_image {
  display: block;
}
#model_tabcontrol .tab_btn p {
  position: relative;
  padding-top: 2px;
  font-size: 20px;
  font-weight: bold;
  color: #FF8787;
}
@media only screen and (max-width: 767px) {
  #model_tabcontrol .tab_btn p {
    font-size: 16px;
  }
}
#model_tabcontrol .tab_btn01 img {
  width: 24px;
}
@media only screen and (max-width: 767px) {
  #model_tabcontrol .tab_btn01 img {
    width: 18px;
  }
}
#model_tabcontrol .tab_btn02 img {
  width: 35px;
}
@media only screen and (max-width: 767px) {
  #model_tabcontrol .tab_btn02 img {
    width: 27px;
  }
}
#model_tabcontrol .tab_btn.active .active_image {
  display: block;
}
#model_tabcontrol .tab_btn.active .default_image {
  display: none;
}
#model_tabcontrol .tab_btn.active p {
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  #model_tabcontrol.is_fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    max-width: 1140px;
    padding-top: 100px;
    background: rgba(253, 247, 238, 0.8);
  }
  #model_tabcontrol.is_hidden {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

.model_tabbody {
  position: relative;
  /* z-indexを調整するために必要 */
  z-index: 0;
  /* 重なり順序を「最も背面」にするため */
}

#top {
  /*****イベントスケジュール*****/
  /****ぐんまの温泉 御湯印めぐりキャンペーン****/
}
#top .banner {
  padding-top: 40px;
}
@media only screen and (max-width: 767px) {
  #top .banner {
    padding-top: 0;
    padding-bottom: 30px;
  }
}
#top .dot-text {
  padding-top: 0.4em;
  background-position: top left -2px;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  background-image: radial-gradient(0.15em 0.15em at center center, #333, #333 100%, transparent);
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #top .sec1 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
#top .sec1::before {
  width: 100%;
  height: 6px;
  display: block;
  background-image: url("../img/illustrator/border-top.png");
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
}
@media only screen and (max-width: 767px) {
  #top .sec1::before {
    background-image: url("../img/illustrator/border-top-sp.png");
  }
}
#top .sec1::after {
  width: 100%;
  height: 8px;
  display: block;
  background-image: url("../img/illustrator/border-bottom.png");
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
}
@media only screen and (max-width: 767px) {
  #top .sec1::after {
    background-image: url("../img/illustrator/border-bottom-sp.png");
  }
}
#top .sec1 .inner {
  padding: 70px 97px;
  background-color: #fefaf3;
}
@media only screen and (max-width: 767px) {
  #top .sec1 .inner {
    padding: 40px 30px;
  }
}
#top .sec1 .inner .flex {
  padding-bottom: 100px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media only screen and (min-width: 1200px) {
  #top .sec1 .inner .flex {
    padding-bottom: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
#top .sec1 .inner .flex .img1,
#top .sec1 .inner .flex .img3 {
  position: absolute;
  bottom: 0;
}
#top .sec1 .inner .flex .img1 {
  left: -53px;
  width: 140px;
}
@media only screen and (min-width: 768px) {
  #top .sec1 .inner .flex .img1 {
    left: 0;
  }
}
@media only screen and (min-width: 1200px) {
  #top .sec1 .inner .flex .img1 {
    z-index: 10;
    width: 239px;
    -webkit-transform: translateX(-18%);
            transform: translateX(-18%);
  }
}
#top .sec1 .inner .flex .img2 {
  width: 170px;
  margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
  #top .sec1 .inner .flex .img2 {
    width: 100%;
    max-width: 239px;
    padding-bottom: 28px;
  }
}
#top .sec1 .inner .flex .img3 {
  right: -45px;
  width: 95px;
}
@media only screen and (min-width: 768px) {
  #top .sec1 .inner .flex .img3 {
    right: 0;
  }
}
@media only screen and (min-width: 1200px) {
  #top .sec1 .inner .flex .img3 {
    width: 163px;
  }
}
#top .sec1 .inner .title {
  margin: 40px auto 10px;
  color: #1D1D1D;
  font-size: 20px;
  font-weight: bold;
  line-height: 40px;
}
@media screen and (min-width: 450px) {
  #top .sec1 .inner .title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 768px) {
  #top .sec1 .inner .title {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1370px) {
  #top .sec1 .inner .title .br {
    display: none;
  }
}
#top .sec1 .inner .sentence {
  line-height: 1.8;
}
@media only screen and (min-width: 768px) {
  #top .sec1 .inner .sentence {
    font-size: 16px;
  }
}
#top .sec1 .illu-left {
  max-width: 225px;
  width: 15vw;
  left: 1%;
  top: 54%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#top .sec1 .illu-right {
  max-width: 150px;
  width: 10.7142857143vw;
  right: 0;
  top: 20%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  #top .sec2 {
    padding-left: 50px;
    padding-right: 50px;
  }
}
#top .sec2 .inner .flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#top .sec2 .inner .flex .item {
  display: block;
  width: 30%;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 10px;
  background-color: #fff8f8;
  -webkit-box-shadow: 5px 5px 0px rgba(255, 135, 135, 0.17);
          box-shadow: 5px 5px 0px rgba(255, 135, 135, 0.17);
  text-align: center;
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  #top .sec2 .inner .flex .item {
    width: 47%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 600px) {
  #top .sec2 .inner .flex .item {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
#top .sec2 .inner .flex .item:hover {
  opacity: 0.85;
}
#top .sec2 .inner .flex .item .mask {
  width: 42%;
  height: 10%;
  background-image: url("../img/mask.png");
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#top .sec2 .inner .flex .item .img {
  width: 100%;
}
#top .sec2 .inner .flex .item .text {
  margin: 30px auto 10px;
  font-size: 16px;
}
@media only screen and (max-width: 900px) {
  #top .sec2 .inner .flex .item .text {
    font-size: 15px;
  }
}
#top .sec2 .inner .flex .item .text .detail {
  margin-top: 10px;
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #FF8787;
}
@media screen and (max-width: 399px) {
  #top .sec2 .inner .flex .item .text .detail {
    font-size: 18px;
  }
}
#top .sec2 .inner .flex .item .text .detail::after {
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  content: "\a\f078";
  white-space: pre;
}
#top .sec2 .inner .flex .item.pick-up {
  position: relative;
}
#top .sec2 .inner .flex .item.pick-up::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-40%, -40%);
          transform: translate(-40%, -40%);
  content: url("../img/icons/icon-1.png");
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  #top .sec2 .inner .flex .item.pick-up::before {
    -webkit-transform: translate(-25%, -40%);
            transform: translate(-25%, -40%);
  }
}
#top .sec2 .inner .flex .item.big-change {
  position: relative;
  background-color: #f8ff9c;
  -webkit-box-shadow: 5px 5px 0px #eaf27a;
          box-shadow: 5px 5px 0px #eaf27a;
}
#top .sec2 .inner .flex .item.big-change::before {
  position: absolute;
  top: -45px;
  left: -22px;
  content: url("../img/icons/icon-3.svg");
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  z-index: 10;
}
#top .sec2 .inner .flex .item.big-change .detail::after {
  content: "\a\f054";
}
#top .sec2 .illu-left {
  max-width: 150px;
  width: 10.7142857143vw;
  left: 0;
  top: 35%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
#top .sec2 .illu-right {
  max-width: 130px;
  width: 9.2857142857vw;
  right: 0;
  top: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
#top .sec3 .inner {
  padding-left: 80px;
  padding-right: 80px;
}
@media only screen and (max-width: 767px) {
  #top .sec3 .inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}
#top .sec3 .inner .schedule {
  margin: 30px auto 80px;
}
@media only screen and (max-width: 767px) {
  #top .sec3 .inner .schedule {
    margin-bottom: 60px;
  }
}
#top .sec3 .inner .schedule li {
  border-bottom: 1px solid #e6e6e6;
  padding: 15px 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #top .sec3 .inner .schedule li {
    padding-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #top .sec3 .inner .schedule li p.radius-r {
    margin-top: 12px;
  }
}
#top .sec3 .inner .schedule li p .radius {
  color: #FF8787;
  border: 1px solid #FF8787;
  padding: 5px 14px 4px;
  border-radius: 30px;
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  #top .sec3 .inner .schedule li p .radius {
    margin-left: 0;
  }
}
#top .sec3 .inner .schedule li p::after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
#top .sec3 .inner .schedule li > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top .sec3 .inner .schedule .badge {
  padding: 3px 0 2px;
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 15px;
  color: white;
  font-weight: 500;
  min-width: 100px;
}
#top .sec3 .inner .schedule .period {
  font-size: 15px;
}
#top .sec3 .inner .schedule p {
  margin-top: 8px;
  font-size: 15px;
  font-weight: bold;
}
#top .sec3 .inner .schedule .bg-color2 {
  background-color: #A23833;
}
#top .sec3 .inner .schedule .bg-color4 {
  background-color: #C0A209;
}
#top .sec3 .illu-left {
  max-width: 130px;
  width: 9.2857142857vw;
  left: 0;
  top: 10%;
}
#top .sec3 .illu-right-1 {
  max-width: 213px;
  width: 21.4285714286vw;
  right: 100px;
  top: -20px;
}
#top .sec3 .illu-right-2 {
  max-width: 226px;
  width: 14.2857142857vw;
  right: -5%;
  top: 35%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width: 768px) {
  #top .sec4 {
    padding-right: 80px;
    padding-left: 80px;
    padding-bottom: 200px;
  }
}
@media only screen and (max-width: 767px) {
  #top .sec4 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
#top .sec4 .illu-left {
  max-width: 238px;
  width: 17vw;
  left: 1%;
  top: 2%;
}
#top .sec4 .illu-right {
  max-width: 355px;
  width: 25.3571428571vw;
  right: -3%;
  top: -2%;
}
@media only screen and (min-width: 768px) {
  #top .sec5 {
    padding-bottom: 200px;
  }
}
@media only screen and (max-width: 767px) {
  #top .sec5 {
    padding-left: 8px;
    padding-right: 8px;
  }
}
#top .sec5 .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#top .sec5 .flex .item {
  width: 47%;
  margin: 20px auto;
  border: unset;
  border-radius: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
#top .sec5 .flex .item:hover {
  opacity: 0.85;
}
@media only screen and (max-width: 767px) {
  #top .sec5 .flex .item {
    width: 100%;
    margin: 10px auto;
    padding: 22px 35px;
  }
}
#top .sec5 .flex .item .img {
  max-width: 180px;
}
@media only screen and (max-width: 767px) {
  #top .sec5 .flex .item .img {
    display: none;
  }
}
#top .sec5 .flex .item p {
  color: white;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  #top .sec5 .flex .item p {
    padding-left: 20px;
    padding-right: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  #top .sec5 .flex .item p {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 18px;
  }
}
#top .sec5 .flex .item p i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}
#top .sec5 .illu-left1 {
  max-width: 150px;
  width: 10.7142857143vw;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#top .sec5 .illu-left2 {
  max-width: 181px;
  width: 100%;
  left: 9%;
  top: -90px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#top .sec5 .illu-right1 {
  max-width: 170px;
  width: 22.6428571429vw;
  right: 0;
  top: 0;
}
#top .sec5 .illu-right2 {
  max-width: 178px;
  width: 100%;
  right: 5%;
  top: 80px;
}
#top .sec6 {
  background-color: #FEFAF3;
}
@media only screen and (max-width: 767px) {
  #top .sec6 {
    margin-top: 50px;
  }
}
#top .sec6::before {
  content: url("../img/bg-1.png");
  position: absolute;
  top: 10px;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  left: 50%;
}
@media only screen and (max-width: 420px) {
  #top .sec6::before {
    content: url("../img/bg-1-sp.png");
  }
}
#top .sec6 .inner {
  position: relative;
  margin-top: 100px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  #top .sec6 .inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #top .sec6 .inner {
    padding-bottom: 40px;
  }
}
#top .sec6 .inner .sub-title {
  width: 100%;
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#top .sec6 .inner .title {
  width: 100%;
  position: absolute;
  left: 50%;
  top: -20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#top .sec6 .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #top .sec6 .flex {
    padding-top: 40px;
    padding-left: 35px;
    padding-right: 35px;
  }
}
#top .sec6 .flex .item {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 30%;
  background-color: white;
  -webkit-box-shadow: 2px 2px 20px #f1e4ce;
          box-shadow: 2px 2px 20px #f1e4ce;
}
@media only screen and (max-width: 992px) {
  #top .sec6 .flex .item {
    width: 47%;
  }
}
@media only screen and (max-width: 767px) {
  #top .sec6 .flex .item {
    width: 47%;
  }
}
@media only screen and (max-width: 600px) {
  #top .sec6 .flex .item {
    width: 100%;
  }
}
@media only screen and (max-width: 420px) {
  #top .sec6 .flex .item {
    width: 100%;
    margin: 20px auto;
  }
}
#top .sec6 .flex .item a {
  padding: 10px;
  display: block;
  font-size: 15px;
}
@media only screen and (max-width: 992px) {
  #top .sec6 .flex .item a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  #top .sec6 .flex .item a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 420px) {
  #top .sec6 .flex .item a {
    margin: 0 auto;
  }
}
#top .sec6 .flex .item a:hover {
  opacity: 0.8;
}
#top .sec6 .flex .item a .img {
  width: 100%;
  position: relative;
}
#top .sec6 .flex .item a .img .ribbon {
  padding-right: 5px;
  width: 210px;
  height: 35px;
  background-image: url("../img/ribbon2023_01.png");
  background-repeat: no-repeat;
  position: absolute;
  left: -10px;
  top: 20px;
  font-size: 14px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
}
@media only screen and (max-width: 1000px) {
  #top .sec6 .flex .item a .img .ribbon {
    top: 15px;
  }
}
#top .sec6 .flex .item a .detail {
  margin-top: 10px;
  padding: 10px 10px 23px;
}
#top .sec6 .flex .item a .detail > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#top .sec6 .flex .item a .detail p {
  margin: 10px auto;
  font-weight: bold;
}
#top .sec6 .flex .item a .badge {
  padding: 3px 0 2px;
  width: 100px;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-weight: 500;
  font-size: 15px;
}
#top .sec6 .flex .item a i {
  position: absolute;
  bottom: 15px;
  right: 15px;
}
#top .sec6 .illu-left {
  max-width: 240px;
  width: 17.1428571429vw;
  left: 5%;
  top: -75px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
#top .sec6 .illu-right {
  max-width: 260px;
  width: 17.8571428571vw;
  right: 7%;
  top: -50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#top .sec6 .illu-bottom-left {
  max-width: 216px;
  width: 22.8571428571vw;
  left: 6%;
  bottom: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
#top .sec6 .illu-bottom-right {
  max-width: 120px;
  width: 8.5714285714vw;
  right: 3%;
  bottom: 3%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
#top .sec7 {
  padding: 190px 0 200px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 25px;
  color: #1D1D1D;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width: 1000px) {
  #top .sec7 {
    padding: 140px 0 150px;
  }
}
@media only screen and (max-width: 767px) {
  #top .sec7 {
    padding: 100px 0 110px;
  }
}
@media only screen and (min-width: 1200px) {
  #top .sec7 {
    font-size: 15px;
  }
}
#top .sec7 img {
  max-width: 100%;
  width: 100%;
}
#top .sec7 html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
}
#top .sec7 .sub-title {
  color: #FF8787;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
}
@media only screen and (max-width: 767px) {
  #top .sec7 .sub-title {
    font-size: 17px;
  }
}
#top .sec7 .title {
  color: #FF8787;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  margin: 10px auto 70px;
}
@media only screen and (max-width: 767px) {
  #top .sec7 .title {
    margin-bottom: 50px;
    font-size: 28px;
  }
}
@media only screen and (max-width: 420px) {
  #top .sec7 .title {
    font-size: 25px;
  }
}
#top .sec7 p {
  margin-top: 15px;
  padding-right: 25px;
  font-weight: bold;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #top .sec7 p {
    padding-right: 0;
  }
}
#top .sec7 p i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
}
#top .sec7 .slider {
  width: 115%;
}
@media only screen and (max-width: 767px) {
  #top .sec7 .slider {
    width: 100%;
  }
}
#top .sec7 .slider .item {
  padding-left: 15px;
  padding-right: 15px;
}
#top .sec7 .slider a {
  display: block;
}
#top .sec7 .slider img {
  border-radius: 10px;
}
#top .sec7 .slick-nav-arrows {
  position: absolute;
  bottom: 308px;
  right: 13%;
  padding: 10px;
}
@media only screen and (min-width: 1200px) {
  #top .sec7 .slick-nav-arrows {
    right: 13%;
  }
}
@media only screen and (max-width: 767px) {
  #top .sec7 .slick-nav-arrows {
    right: 13%;
    bottom: 224px;
  }
}
#top .sec7 .slick-nav-arrows .slick-prev:before,
#top .sec7 .slick-nav-arrows .slick-next:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #1d1d1d;
  border-right: 2px solid #1d1d1d;
}
#top .sec7 .slick-nav-arrows .slick-prev::after,
#top .sec7 .slick-nav-arrows .slick-next::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  border: 1px solid #1d1d1d;
  border-radius: 50%;
}
#top .sec7 .slick-nav-arrows .slick-prev::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: 50%;
  left: 55%;
}
#top .sec7 .slick-nav-arrows .slick-next::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
  left: 40%;
}
#top .sec7 .btn-more {
  margin-top: 120px;
}
@media only screen and (max-width: 767px) {
  #top .sec7 .btn-more {
    margin-top: 92px;
  }
}
#top .sec7 .illu-bottom-left {
  max-width: 220px;
  width: 15.7142857143vw;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#top .sec8 {
  max-width: 1260px;
}
@media only screen and (max-width: 1000px) {
  #top .sec8 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#top .sec8 .inner {
  padding: 50px 50px 60px;
  border: 4px solid #B93728;
  border-radius: 8px;
  position: relative;
  background: #FFFAF9;
}
@media only screen and (max-width: 767px) {
  #top .sec8 .inner {
    padding: 40px 6px 30px;
  }
}
#top .sec8 .inner .title {
  margin: 30px auto 42px;
  font-size: 35px;
  font-weight: bold;
  color: #B93728;
  line-height: 40px;
}
@media only screen and (max-width: 767px) {
  #top .sec8 .inner .title {
    padding-left: 14px;
    padding-right: 14px;
    margin: 15px auto 30px;
    font-size: 25px;
  }
}
@media screen and (max-width: 399px) {
  #top .sec8 .inner .title {
    font-size: 23px;
  }
}
#top .sec8 .inner > p {
  margin-bottom: 58px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #top .sec8 .inner > p {
    padding-left: 14px;
    padding-right: 14px;
    margin-bottom: 30px;
    font-size: 15px;
  }
}
#top .sec8 .inner .flex {
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  margin-top: 20px;
  margin-bottom: 72px;
}
@media only screen and (max-width: 767px) {
  #top .sec8 .inner .flex {
    padding-left: 14px;
    padding-right: 14px;
    margin-bottom: 50px;
  }
}
#top .sec8 .inner .flex > div {
  width: calc(50% - 20px);
}
@media only screen and (max-width: 900px) {
  #top .sec8 .inner .flex > div {
    width: 100%;
  }
}
#top .sec8 .inner .flex > div .campaign {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  #top .sec8 .inner .flex > div .campaign {
    margin-top: 27px;
    display: block;
  }
}
#top .sec8 .inner .flex > div .campaign a {
  position: relative;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  padding-left: 30px;
  margin-right: 20px;
  width: 330px;
  height: 60px;
  border-radius: 5px;
  background: #B93728;
}
@media only screen and (max-width: 767px) {
  #top .sec8 .inner .flex > div .campaign a {
    margin-right: auto;
    margin-left: auto;
    width: 310px;
  }
}
#top .sec8 .inner .flex > div .campaign a:after {
  content: url(../img/icons/external-link.svg);
  position: absolute;
  top: 16px;
  right: 20px;
}
#top .sec8 .inner .flex > div .campaign > div {
  max-width: 100px;
}
@media only screen and (max-width: 767px) {
  #top .sec8 .inner .flex > div .campaign > div {
    margin: 25px auto 0;
  }
}
#top .sec8 .inner .flex > div .flex1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 425px;
  margin: auto;
}
@media only screen and (max-width: 900px) {
  #top .sec8 .inner .flex > div .flex1 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 350px;
  }
}
#top .sec8 .inner .flex > div .flex1 .qr-code {
  width: 130px;
  height: 130px;
  margin-right: 20px;
  background: white;
  border: 1px solid #707070;
}
@media only screen and (max-width: 900px) {
  #top .sec8 .inner .flex > div .flex1 .qr-code {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
#top .sec8 .inner .flex > div .flex1 p {
  font-weight: bold;
  font-size: 16px;
}
@media only screen and (max-width: 900px) {
  #top .sec8 .inner .flex > div .flex1 p {
    width: 100%;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
#top .sec8 .inner .flex ul li {
  margin-bottom: 15px;
}
#top .sec8 .inner .flex ul li .title1 {
  margin-bottom: 5px;
  font-size: 15px;
  color: #B93728;
  font-weight: bold;
}
#top .sec8 .inner .flex ul li p:nth-of-type(2) {
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 500;
}
#top .sec8 .inner .flex ul li .note {
  font-size: 13px;
}
#top .sec8 .inner .detail {
  margin: 10px auto;
  font-weight: bold;
}
#top .sec8 .inner .illu-left {
  max-width: 183px;
  min-width: 100px;
  width: 12.1428571429vw;
  left: 3%;
  top: 0;
  -webkit-transform: translate(-50%, -30%);
          transform: translate(-50%, -30%);
}
@media only screen and (max-width: 767px) {
  #top .sec8 .inner .illu-left {
    max-width: 100px;
    display: none;
  }
}
#top .sec8 .inner .illu-right {
  max-width: 164px;
  min-width: 120px;
  width: 12.1428571429vw;
  right: 4%;
  top: 10px;
  -webkit-transform: translate(50%, -30%);
          transform: translate(50%, -30%);
}
@media only screen and (max-width: 767px) {
  #top .sec8 .inner .illu-right {
    max-width: 100px;
    display: none;
  }
}
#top .sec8 .inner .illu-right-bottom {
  max-width: 310px;
  min-width: 175px;
  width: 22.1428571429vw;
  right: -30px;
  bottom: -30px;
}
@media only screen and (max-width: 767px) {
  #top .sec8 .inner .illu-right-bottom {
    max-width: 160px;
    display: block;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}
#top .sec8 .illu-right {
  max-width: 170px;
  width: 12.1428571429vw;
  right: 0;
  top: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
#top .banner-btn {
  position: relative;
  display: block;
  padding: 17px 30px 18px;
  max-width: 330px;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  border-radius: 5px;
}
@media only screen and (max-width: 767px) {
  #top .banner-btn {
    max-width: 310px;
  }
}
#top .banner-btn:after {
  content: url(../img/icons/external-link.svg);
  position: absolute;
  top: 17px;
  right: 20px;
}
#top .sec9 {
  position: relative;
  max-width: 1260px;
}
@media only screen and (max-width: 1000px) {
  #top .sec9 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#top .sec9 .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 35px;
     -moz-column-gap: 35px;
          column-gap: 35px;
  padding: 70px 35px;
  border: 4px solid #B93728;
  border-radius: 10px;
  background: #FFFAF9;
}
@media only screen and (max-width: 767px) {
  #top .sec9 .inner {
    display: block;
    padding: 25px 10px 30px 30px;
  }
}
#top .sec9 .inner .image-block {
  width: 51%;
}
@media only screen and (max-width: 767px) {
  #top .sec9 .inner .image-block {
    max-width: 417px;
    width: 100%;
    margin: 0 auto;
  }
}
#top .sec9 .inner .image-block > div {
  max-width: 417px;
}
@media only screen and (max-width: 767px) {
  #top .sec9 .inner .image-block > div {
    margin-bottom: 20px;
  }
}
#top .sec9 .inner .text-block {
  width: 52%;
}
@media only screen and (max-width: 767px) {
  #top .sec9 .inner .text-block {
    width: 100%;
    text-align: center;
    padding-right: 20px;
  }
}
#top .sec9 .inner .note {
  margin-bottom: 15px;
  font-size: 11px;
  font-weight: 500;
  color: #B93728;
}
#top .sec9 .inner h3 {
  padding-bottom: 15px;
  display: block;
  font-weight: bold;
  font-size: 35px;
  color: #B93728;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  #top .sec9 .inner h3 {
    font-size: 25px;
  }
}
@media screen and (max-width: 399px) {
  #top .sec9 .inner h3 {
    font-size: 22px;
  }
}
#top .sec9 .inner .period {
  max-width: 88%;
  margin-bottom: 5px;
  padding: 6px 10px 7px;
  text-align: center;
  border: 1px solid #B93728;
  font-size: 18px;
  font-weight: bold;
  color: #B93728;
}
@media only screen and (max-width: 767px) {
  #top .sec9 .inner .period {
    margin: 0 auto 10px;
    padding: 1px 10px 2px;
    max-width: 310px;
    font-size: 15px;
  }
}
@media screen and (max-width: 399px) {
  #top .sec9 .inner .period {
    font-size: 14px;
    padding: 1px 8px 2px;
  }
}
#top .sec9 .inner .period-note {
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  color: #B93728;
}
@media only screen and (max-width: 767px) {
  #top .sec9 .inner .period-note {
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 330px;
    font-size: 13px;
  }
}
#top .sec9 .inner .sentence {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #top .sec9 .inner .sentence {
    font-size: 15px;
  }
}
#top .sec9 .inner .banner-btn {
  margin: 46px 0 0 auto;
  background: #B93728;
}
@media only screen and (max-width: 767px) {
  #top .sec9 .inner .banner-btn {
    margin: 19px auto 0;
    text-align: left;
  }
}
#top .sec9 .illu-left {
  max-width: 183px;
  min-width: 100px;
  width: 12.1428571429vw;
  left: 3%;
  top: 0;
  -webkit-transform: translate(-50%, -30%);
          transform: translate(-50%, -30%);
}
@media only screen and (max-width: 767px) {
  #top .sec9 .illu-left {
    max-width: 100px;
    display: none;
  }
}
#top .sec9 .illu-right {
  max-width: 164px;
  min-width: 120px;
  width: 12.1428571429vw;
  right: 4%;
  top: 10px;
  -webkit-transform: translate(50%, -30%);
          transform: translate(50%, -30%);
}
@media only screen and (max-width: 767px) {
  #top .sec9 .illu-right {
    max-width: 100px;
    display: none;
  }
}
#top .sec9 .illu-right-bottom {
  max-width: 310px;
  min-width: 175px;
  width: 22.1428571429vw;
  right: -30px;
  bottom: -30px;
}
@media only screen and (max-width: 767px) {
  #top .sec9 .illu-right-bottom {
    max-width: 160px;
    display: block;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}
#top .sec10 {
  max-width: 1260px;
}
@media only screen and (max-width: 1000px) {
  #top .sec10 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#top .sec10 .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  padding: 70px 50px;
  border: 4px solid #FF8787;
  border-radius: 10px;
  background: #FFF9F3;
}
@media only screen and (max-width: 767px) {
  #top .sec10 .inner {
    display: block;
    padding: 25px 10px 30px 30px;
  }
}
#top .sec10 .inner .image-block {
  position: absolute;
  left: -5%;
  max-width: 463px;
}
@media screen and (max-width: 1100px) {
  #top .sec10 .inner .image-block {
    left: 0;
    max-width: 400px;
  }
}
@media only screen and (max-width: 767px) {
  #top .sec10 .inner .image-block {
    position: static;
    width: 100%;
    margin: 0 auto;
  }
}
#top .sec10 .inner .image-block img {
  width: 100%;
  height: auto;
}
#top .sec10 .inner .image-block > div {
  max-width: 417px;
  margin-bottom: 5px;
}
#top .sec10 .inner .text-block {
  width: 59%;
  margin-left: auto;
}
@media screen and (max-width: 1100px) {
  #top .sec10 .inner .text-block {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  #top .sec10 .inner .text-block {
    width: 100%;
    text-align: center;
    padding-right: 20px;
  }
}
#top .sec10 .inner .text-block > div {
  max-width: 516px;
  margin: 0 auto 12px;
}
@media only screen and (max-width: 767px) {
  #top .sec10 .inner .text-block > div {
    max-width: 370px;
  }
}
#top .sec10 .inner h3 {
  padding-bottom: 15px;
  font-size: 35px;
  font-weight: bold;
  line-height: 1.2;
  color: #FF8787;
}
@media only screen and (max-width: 767px) {
  #top .sec10 .inner h3 {
    font-size: 25px;
  }
}
@media screen and (max-width: 399px) {
  #top .sec10 .inner h3 {
    font-size: 23px;
  }
}
#top .sec10 .inner .sentence {
  margin-bottom: 35px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #top .sec10 .inner .sentence {
    font-size: 15px;
  }
}
#top .sec10 .inner .banner-btn {
  margin: 49px 0 0 auto;
  background: #FF8787;
}
@media only screen and (max-width: 767px) {
  #top .sec10 .inner .banner-btn {
    margin: 19px auto 0;
    text-align: left;
  }
}
@media only screen and (max-width: 1000px) {
  #top .sec11 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
#top .sec11 .inner .title {
  margin-bottom: 70px;
}
#top .sec11 .inner .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto -16.5px;
}
@media screen and (min-width: 1000px) {
  #top .sec11 .inner .flex {
    margin-bottom: -22.5px;
    max-width: none;
  }
}
#top .sec11 .inner li {
  width: 21%;
  max-width: 120px;
  margin-right: 4.5945945946%;
  margin-bottom: 16.5px;
}
#top .sec11 .inner li:nth-of-type(4n) {
  margin-right: 0;
}
@media screen and (min-width: 1000px) {
  #top .sec11 .inner li:nth-of-type(4n) {
    margin-right: 3.6666666667%;
  }
}
@media screen and (min-width: 1000px) {
  #top .sec11 .inner li {
    width: 11.1111111111%;
    margin-right: 3.6666666667%;
    margin-bottom: 22.5px;
  }
  #top .sec11 .inner li:nth-of-type(7n) {
    margin-right: 0;
  }
}
#top .sec11 .inner li a {
  display: block;
  width: 100%;
}
#top .sec11 .inner li a img {
  width: 100%;
}

@media only screen and (min-width: 1200px) {
  #route .container {
    padding: 60px 130px;
  }
}
@media only screen and (max-width: 767px) {
  #route .container {
    padding: 40px 0 35px;
  }
}
#route .bg-color1.link-detail {
  border: none;
}
#route .bg-color2.link-detail {
  border: none;
}
#route .bg-color3.link-detail {
  border: none;
}
#route .bg-color4.link-detail {
  border: none;
}
#route .bg-color5.link-detail {
  border: none;
}
#route .bg-color6.link-detail {
  border: none;
}
#route .bg-color7.link-detail {
  border: none;
}
#route .banner {
  background-color: #fefaf3;
}
@media only screen and (min-width: 768px) {
  #route .banner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
#route .banner .inner {
  position: relative;
}
@media only screen and (min-width: 1200px) {
  #route .banner .inner {
    padding: 90px 130px;
  }
}
@media only screen and (min-width: 768px) {
  #route .banner .inner {
    padding: 90px 0;
  }
}
@media only screen and (max-width: 767px) {
  #route .banner .inner {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 420px) {
  #route .banner .inner {
    padding: 25px 0;
  }
}
#route .banner .inner .icon-left {
  height: 100%;
  width: auto;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  #route .banner .inner .icon-left {
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
  }
}
#route .banner .inner .icon-left img {
  height: 100%;
  width: auto;
}
#route .banner .inner .icon-right {
  height: 100%;
  width: auto;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  #route .banner .inner .icon-right {
    -webkit-transform: translateX(30%);
            transform: translateX(30%);
  }
}
#route .banner .inner .icon-right img {
  height: 100%;
  width: auto;
}
@media only screen and (min-width: 768px) {
  #route .sec4 {
    padding-right: 80px;
    padding-left: 80px;
  }
}
@media only screen and (max-width: 767px) {
  #route .sec4 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
#route .sec6 {
  padding-left: 15px;
  padding-right: 15px;
}
#route .sec6 .flex {
  margin: 80px auto;
}
@media only screen and (max-width: 767px) {
  #route .sec6 .flex {
    margin: 50px auto;
  }
}
@media only screen and (max-width: 420px) {
  #route .sec6 .flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#route .sec6 .flex .item {
  width: calc(20% - 25px);
  margin-right: 25px;
  margin-bottom: 25px;
}
#route .sec6 .flex .item:nth-child(5) {
  margin-right: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #route .sec6 .flex .item {
    width: calc(25% - 25px);
  }
  #route .sec6 .flex .item:nth-child(5) {
    margin-right: 25px;
  }
  #route .sec6 .flex .item:nth-child(4) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  #route .sec6 .flex .item {
    width: calc(50% - 10px);
    margin-bottom: 20px;
    margin-right: 0;
    font-size: 13px;
  }
  #route .sec6 .flex .item:nth-child(even) {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 420px) {
  #route .sec6 .flex .item {
    width: calc(50% - 7px);
  }
  #route .sec6 .flex .item:nth-child(even) {
    margin-left: 14px;
  }
}
#route .sec6 .flex .item a {
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 8px;
  padding: 16px;
  display: block;
  width: 100%;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 420px) {
  #route .sec6 .flex .item a {
    padding: 12px;
  }
}
#route .sec6 .flex .item i {
  margin-left: 5px;
}
#route .sec6 .download {
  background: #fff8f8;
  margin: 100px auto;
  max-width: 640px;
}
#route .sec6 .download .inner {
  text-align: center;
  padding: 47px 20px 45px;
}
@media only screen and (max-width: 767px) {
  #route .sec6 .download .inner {
    padding: 35px 20px 33px;
  }
}
#route .sec6 .download .link {
  font-size: 20px;
  color: #FF8787;
  font-weight: bold;
  border-bottom: 1px solid #FF8787;
}
@media only screen and (max-width: 767px) {
  #route .sec6 .download .link {
    font-size: 16px;
  }
}
#route .sec6 .download .text {
  font-size: 15px;
  margin-top: 13px;
}
#route .sec6 .detail {
  border: 1px solid #ff8787;
  padding: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  #route .sec6 .detail {
    padding: 30px;
  }
}
#route .sec6 .detail .text {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  #route .sec6 .detail .text {
    width: 100%;
  }
}
#route .sec6 .detail .text .title1 {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 15px;
  color: #FF8787;
}
#route .sec6 .route {
  margin-top: 115px;
}
#route .sec6 .route i {
  margin-left: 5px;
  margin-right: 5px;
  font-size: 26px;
  color: #777;
  vertical-align: middle;
}
#route .sec6 .route .badge {
  display: inline-block;
  background-color: #e6e6e6;
  padding: 10px 30px;
  font-weight: bold;
}
@media screen and (max-width: 470px) {
  #route .sec6 .route .badge {
    margin-top: 10px;
  }
}
#route .sec6 .route .badge.bg-color1 {
  color: white;
  background-color: #979386;
}
#route .sec6 .route .badge.bg-color2 {
  color: white;
  background-color: #C0A209;
}
#route .sec6 .route .badge.bg-color3 {
  color: white;
  background-color: #2D3751;
}
#route .sec6 .route .badge.bg-color4 {
  color: white;
  background-color: #A23833;
}
#route .sec6 .route .badge.bg-color5 {
  color: white;
  background-color: #9FB100;
}
#route .sec6 .route .badge.bg-color6 {
  color: white;
  background-color: #7BA6B9;
}
#route .sec6 .route .badge.bg-color7 {
  color: white;
  background-color: #649B77;
}
#route .sec6 .route a {
  margin-left: 20px;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  #route .sec6 .route a {
    margin-left: 0;
    display: block;
    margin-top: 26px;
  }
}
#route .sec6 .route .way {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#route .sec6 .route .way .on-car {
  width: 48%;
}
#route .sec6 .route .way .on-train {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  #route .sec6 .route .way .on-car {
    width: 100%;
    margin: 15px auto;
  }
  #route .sec6 .route .way .on-train {
    width: 100%;
    margin: 15px auto;
  }
}
#route .sec6 .route .way .text {
  margin-top: 30px;
  border-top: 1px solid #ff8787;
  border-bottom: 1px solid #ff8787;
  padding: 15px 15px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff8f8;
}
@media only screen and (max-width: 767px) {
  #route .sec6 .route .way .text {
    font-size: 13px;
    margin-top: 10px;
  }
}
#route .sec6 .route .way .text .title1 {
  font-size: 15px;
  font-weight: bold;
  color: #FF8787;
}
@media only screen and (max-width: 767px) {
  #route .sec6 .route .way .text .title1 {
    font-size: 15px;
  }
}
#route .sec6 .route .way .text .title1 .icon {
  max-width: 24px;
  margin-right: 8px;
  display: inline-block;
}
#route .sec6 .route .way .img {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  max-width: 150px;
  margin: auto;
}
#route .sec6 .route .way .img.way2 {
  max-width: 340px;
}
#route .sec6 .route .way .img img {
  width: inherit;
}
#route .sec6 .route .way .img > p {
  padding-top: 5px;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  #route .sec5 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
#route .sec5 .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#route .sec5 .flex .item {
  width: 47%;
  margin: 20px auto;
  border: unset;
  border-radius: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  #route .sec5 .flex .item {
    width: 100%;
    margin: 10px auto;
    padding: 15px;
  }
}
#route .sec5 .flex .item .img {
  max-width: 180px;
  width: 38%;
}
@media only screen and (max-width: 767px) {
  #route .sec5 .flex .item .img {
    display: none;
  }
}
#route .sec5 .flex .item p {
  padding-left: 30px;
  padding-right: 30px;
  width: 62%;
  color: white;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #route .sec5 .flex .item p {
    padding-left: 10px;
    padding-right: 10px;
    width: 90%;
  }
}
#route .sec5 .flex .item p i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}
#route .sec5 .flex .item:hover {
  opacity: 0.85;
}
#route .sec-pdf .inner {
  max-width: 640px;
  width: 100%;
  height: 150px;
  margin: auto;
  padding: 40px;
  background: #fff8f8;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #route .sec-pdf .inner {
    height: 106px;
    padding: 25px;
  }
}
#route .sec-pdf .inner p {
  font-weight: 500;
  font-size: 15px;
}
@media only screen and (max-width: 420px) {
  #route .sec-pdf .inner p {
    font-size: 11px;
  }
}
#route .sec-pdf .inner p.sub-title {
  margin-bottom: 5px;
  font-size: 20px;
  text-decoration: underline;
}
@media only screen and (max-width: 420px) {
  #route .sec-pdf .inner p.sub-title {
    margin-bottom: 0;
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  #model .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
#model .sec1 p {
  letter-spacing: 1px;
  text-align: justify;
  text-justify: inter-ideograph;
  /* IE用 */
}
#model .sec1 .top {
  margin-bottom: 50px;
  padding: 60px;
  background: #fff8f8;
}
@media only screen and (max-width: 767px) {
  #model .sec1 .top {
    padding: 30px 10px 30px;
  }
}
#model .sec1 .top .sub-title {
  color: #FF8787;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
}
@media only screen and (max-width: 767px) {
  #model .sec1 .top .sub-title {
    font-size: 14px;
  }
}
#model .sec1 .top h4 {
  margin: 0 auto;
  font-size: 25px;
  font-weight: bold;
  line-height: 35px;
  text-align: center;
  letter-spacing: 2px;
}
@media only screen and (max-width: 767px) {
  #model .sec1 .top h4 {
    font-size: 20px;
  }
}
#model .sec1 .top .flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#model .sec1 .top .flex .badge {
  padding: 3px 0 2px;
  margin: 20px 15px 0 0;
  width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  font-weight: bold;
}
#model .sec1 .inner {
  background-image: url("../img/model/background.png");
}
#model .sec1 .bg-rgba {
  background: rgba(255, 255, 255, 0.6);
  padding: 60px 150px 60px 60px;
}
@media only screen and (min-width: 1200px) {
  #model .sec1 .bg-rgba {
    padding: 80px 150px 80px 80px;
  }
}
@media only screen and (max-width: 767px) {
  #model .sec1 .bg-rgba {
    padding: 50px 10px 30px 22px;
  }
}
#model .sec1 .schedule {
  max-width: 940px;
  margin: auto;
  border-left: 4px dotted #FF8787;
  padding-left: 60px;
}
@media only screen and (max-width: 767px) {
  #model .sec1 .schedule {
    padding-left: 39px;
  }
}
#model .sec1 .schedule .mt-80 {
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  #model .sec1 .schedule .mt-80 {
    margin-top: 50px;
  }
}
#model .sec1 .schedule .mt-100 {
  margin-top: 100px;
}
@media only screen and (max-width: 767px) {
  #model .sec1 .schedule .mt-100 {
    margin-top: 80px;
  }
}
#model .sec1 .schedule .block {
  margin-bottom: 50px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #model .sec1 .schedule .block {
    margin-bottom: 30px;
  }
}
#model .sec1 .schedule .block p {
  font-size: 15px;
}
#model .sec1 .schedule .block .date {
  position: absolute;
  left: -60px;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: white;
  background-color: #FF8787;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  #model .sec1 .schedule .block .date {
    left: -40px;
    width: 50px;
    height: 50px;
  }
}
#model .sec1 .schedule .block .date span {
  font-weight: bold;
}
#model .sec1 .schedule .block .direction {
  font-size: 20px;
  color: #FF8787;
  padding-bottom: 20px;
}
#model .sec1 .schedule .block .direction span {
  font-weight: bold;
}
#model .sec1 .schedule .block .time {
  font-weight: 500;
  font-size: 20px;
  color: #FF8787;
}
@media only screen and (max-width: 767px) {
  #model .sec1 .schedule .block .time {
    font-size: 18px;
  }
}
#model .sec1 .schedule .block .title {
  text-align: left;
  font-weight: bold;
  font-size: 25px;
  margin: 10px auto 25px;
}
@media only screen and (max-width: 767px) {
  #model .sec1 .schedule .block .title {
    margin: 7px auto 17px;
    font-size: 18px;
    line-height: 30px;
  }
}
#model .sec1 .schedule .block .detail {
  margin: 0 auto 20px;
  font-size: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  #model .sec1 .schedule .block .detail {
    font-size: 18px;
  }
}
#model .sec1 .schedule .block .img {
  display: inline-block;
  margin: 30px auto 15px;
  padding: 8px;
  background: #fff;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 767px) {
  #model .sec1 .schedule .block .img {
    margin: 15px auto 15px;
  }
}
#model .sec1 .schedule .block .img img {
  width: inherit;
}
#model .sec1 .schedule .block .img_w01 img {
  max-width: 480px;
  width: 100%;
}
#model .sec1 .schedule .block .img_w02 img {
  max-width: 320px;
  width: 100%;
}
#model .sec1 .schedule .block .img-link {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #1D1D1D;
  text-decoration: underline;
}
#model .sec1 .schedule .block .img-link:hover {
  color: #FF8787;
}
#model .sec6 {
  background-color: #fefaf3;
  margin-bottom: -140px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  #model .sec6 {
    margin-top: 50px;
    padding-left: 0;
    padding-right: 0;
  }
}
#model .sec6 .inner {
  margin-top: 100px;
  padding-top: 200px;
}
@media only screen and (max-width: 1000px) {
  #model .sec6 .inner {
    padding-right: 0;
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  #model .sec6 .inner {
    margin-top: 50px;
    padding-top: 140px;
  }
}
#model .sec6 .inner .sub-title {
  width: 100%;
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#model .sec6 .inner .title {
  width: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 120px;
}
@media only screen and (max-width: 767px) {
  #model .sec6 .inner .title {
    font-size: 25px;
    top: 80px;
  }
}
#model .sec6 .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 0 0;
}
@media only screen and (max-width: 1000px) {
  #model .sec6 .flex {
    padding: 70px 15px 0;
  }
}
#model .sec6 .flex .item {
  width: 30%;
  margin-top: 15px;
  margin-bottom: 30px;
  padding: 30px 10px 0;
  background-color: white;
  position: relative;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 40px #f1e4ce;
          box-shadow: 0px 0px 40px #f1e4ce;
}
@media only screen and (max-width: 767px) {
  #model .sec6 .flex .item {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 420px) {
  #model .sec6 .flex .item {
    width: 100%;
  }
}
#model .sec6 .flex .item .title1 {
  padding-left: 20px;
  font-size: 16px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #model .sec6 .flex .item .title1 {
    font-size: 15px;
  }
}
#model .sec6 .flex .item .detail {
  padding: 10px 20px 25px;
}
#model .sec6 .flex .item .detail > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#model .sec6 .flex .item .detail .badge {
  padding-bottom: 1px;
}
#model .sec6 .flex .item .detail p {
  margin: 10px auto;
  font-weight: bold;
  font-size: 15px;
}
#model .sec6 .flex .item .badge {
  padding: 5px 0 4px;
  margin-right: 6px;
  width: 100px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 2px;
}
#model .sec6 .flex .item .bg-color1 {
  background-color: #C0A209;
}
#model .sec6 .flex .item .bg-color2 {
  background-color: #A23833;
}
#model .sec6 .flex .item .bg-color3 {
  background-color: #9FB100;
}
#model .sec6 .flex .item .bg-color4 {
  background-color: #2D3751;
}
#model .sec6 .flex .item .bg-color5 {
  background-color: #979386;
}
#model .sec6 .flex .item .bg-color6 {
  background-color: #7BA6B9;
}
#model .sec6 .flex .item .bg-color7 {
  background-color: #649B77;
}
#model .sec6 .flex .item i {
  position: absolute;
  bottom: 15px;
  right: 15px;
}
#model .sec6 .illu-left {
  max-width: 240px;
  width: 17.1428571429vw;
  left: 0;
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
#model .sec6 .illu-right {
  max-width: 250px;
  width: 17.8571428571vw;
  right: 0;
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#model .sec6 .illu-bottom-left {
  max-width: 320px;
  width: 22.8571428571vw;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
#model .sec6 .illu-bottom-right {
  max-width: 120px;
  width: 8.5714285714vw;
  right: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

#tourists .sec1.container {
  padding-top: 150px;
}
#tourists .banner {
  background-color: #fefaf3;
}
@media only screen and (min-width: 768px) {
  #tourists .banner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
#tourists .banner .inner {
  position: relative;
}
@media only screen and (min-width: 1200px) {
  #tourists .banner .inner {
    padding: 100px 130px;
  }
}
#tourists .banner .inner .icon-left {
  height: 100%;
  width: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 30%;
}
@media only screen and (max-width: 767px) {
  #tourists .banner .inner .icon-left {
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
  }
}
#tourists .banner .inner .icon-left img {
  height: 100%;
  width: auto;
}
#tourists .banner .inner .icon-right {
  height: 100%;
  width: auto;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 30%;
}
@media only screen and (max-width: 767px) {
  #tourists .banner .inner .icon-right {
    -webkit-transform: translateX(30%);
            transform: translateX(30%);
  }
}
#tourists .banner .inner .icon-right img {
  height: 100%;
  width: auto;
}
#tourists .sec1 {
  padding-left: 10px;
  padding-right: 10px;
}
#tourists .sec1 .flex {
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
}
@media only screen and (max-width: 767px) {
  #tourists .sec1 .flex {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
@media only screen and (max-width: 420px) {
  #tourists .sec1 .flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#tourists .sec1 .flex .item {
  width: calc(33.3333333333% - 32px);
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  #tourists .sec1 .flex .item {
    width: calc(50% - 24px);
  }
}
@media only screen and (max-width: 767px) {
  #tourists .sec1 .flex .item {
    width: calc(50% - 15px);
  }
}
@media only screen and (max-width: 420px) {
  #tourists .sec1 .flex .item {
    width: 96%;
  }
}
#tourists .sec1 .flex .item .img {
  width: 100%;
}
#tourists .sec1 .flex .item .title1 {
  margin: 15px auto;
  font-size: 16px;
  font-weight: bold;
}
#tourists .sec1 .flex .item .link {
  margin-left: 5px;
  word-wrap: break-word;
  color: rgba(165, 165, 165, 0.6470588235);
  text-decoration: underline;
}
#tourists .sec1 .flex .item .link:hover {
  color: #FF8787;
}

/*---------------------------------------------- end main ------------------------------------------*/
/*---------------------------------------------- start single ------------------------------------------*/
#single img {
  max-width: 100%;
  width: auto;
}
#single .content {
  /* ==========================================================================
  HTML5 display definitions
  ========================================================================== */
  /*
  * Corrects `block` display not defined in IE6/7/8/9 & FF3.
  */
  /*
  * Corrects `inline-block` display not defined in IE6/7/8/9 & FF3.
  */
  /*
  * Addresses styling for `hidden` attribute not present in IE7/8/9, FF3, S4.
  * Known issue: no IE6 support.
  */
  /* ==========================================================================
  Base
  ========================================================================== */
  /*
  * 1. Corrects text resizing oddly in IE6/7 when body `font-size` is set using
  *    `em` units.
  * 2. Prevents iOS text size adjust after orientation change, without disabling
  *    user zoom.
  */
  /*
  * Addresses `font-family` inconsistency between `textarea` and other form
  * elements.
  */
  /*
  * Addresses margins handled incorrectly in IE6/7.
  */
  /* ==========================================================================
  Links
  ========================================================================== */
  /*
  * Addresses `outline` inconsistency between Chrome and other browsers.
  */
  /*a:focus {
      outline: thin dotted;
  }*/
  /*
  * Improves readability when focused and also mouse hovered in all browsers.
  * people.opera.com/patrickl/experiments/keyboard/test
  */
  /*a:active,
  a:hover {
      outline: 0;
  }*/
  /* ==========================================================================
  Typography
  ========================================================================== */
  /*
  * Addresses font sizes and margins set differently in IE6/7.
  * Addresses font sizes within `section` and `article` in FF4+, Chrome, S5.
  */
  /*
  * Addresses styling not present in IE7/8/9, S5, Chrome.
  */
  /*
  * Addresses style set to `bolder` in FF3+, S4/5, Chrome.
  */
  /*
  * Addresses styling not present in S5, Chrome.
  */
  /*
  * Addresses styling not present in IE6/7/8/9.
  */
  /*
  * Addresses margins set differently in IE6/7.
  */
  /*
  * Corrects font family set oddly in IE6, S4/5, Chrome.
  * en.wikipedia.org/wiki/User:Davidgothberg/Test59
  */
  /*
  * Improves readability of pre-formatted text in all browsers.
  */
  /*
  * Addresses CSS quotes not supported in IE6/7.
  */
  /*
  * Addresses `quotes` property not supported in S4.
  */
  /*
  * Prevents `sub` and `sup` affecting `line-height` in all browsers.
  * gist.github.com/413930
  */
  /* ==========================================================================
  Lists
  ========================================================================== */
  /*
  * Addresses margins set differently in IE6/7.
  */
  /*
  * Addresses paddings set differently in IE6/7.
  */
  /*
  * Corrects list images handled incorrectly in IE7.
  */
  /* ==========================================================================
  Embedded content
  ========================================================================== */
  /*
  * 1. Removes border when inside `a` element in IE6/7/8/9, FF3.
  * 2. Improves image quality when scaled in IE7.
  *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
  */
  /*
  * Corrects overflow displayed oddly in IE9.
  */
  /* ==========================================================================
  Figures
  ========================================================================== */
  /*
  * Addresses margin not present in IE6/7/8/9, S5, O11.
  */
  /* ==========================================================================
  Forms
  ========================================================================== */
  /*
  * Corrects margin displayed oddly in IE6/7.
  */
  /*
  * Define consistent border, margin, and padding.
  */
  /*
  * 1. Corrects color not being inherited in IE6/7/8/9.
  * 2. Corrects text not wrapping in FF3.
  * 3. Corrects alignment displayed oddly in IE6/7.
  */
  /*
  * 1. Corrects font size not being inherited in all browsers.
  * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome.
  * 3. Improves appearance and consistency in all browsers.
  */
  /*
  * Addresses FF3/4 setting `line-height` on `input` using `!important` in the
  * UA stylesheet.
  */
  /*
  * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  *    and `video` controls.
  * 2. Corrects inability to style clickable `input` types in iOS.
  * 3. Improves usability and consistency of cursor style between image-type
  *    `input` and others.
  * 4. Removes inner spacing in IE7 without affecting normal text inputs.
  *    Known issue: inner spacing remains in IE6.
  */
  /*
  * Re-set default cursor for disabled elements.
  */
  /*
  * 1. Addresses box sizing set to content-box in IE8/9.
  * 2. Removes excess padding in IE8/9.
  * 3. Removes excess padding in IE7.
  *    Known issue: excess padding remains in IE6.
  */
  /*
  * 1. Addresses `appearance` set to `searchfield` in S5, Chrome.
  * 2. Addresses `box-sizing` set to `border-box` in S5, Chrome (include `-moz`
  *    to future-proof).
  */
  /*
  * Removes inner padding and search cancel button in S5, Chrome on OS X.
  */
  /*
  * Removes inner padding and border in FF3+.
  */
  /*
  * 1. Removes default vertical scrollbar in IE6/7/8/9.
  * 2. Improves readability and alignment in all browsers.
  */
  /* ==========================================================================
  Tables
  ========================================================================== */
  /*
  * Remove most spacing between table cells.
  */
  /* ==========================================================================
  hr
  ========================================================================== */
  /* ==========================================================================
  hr
  ========================================================================== */
}
#single .content article,
#single .content aside,
#single .content details,
#single .content figcaption,
#single .content figure,
#single .content footer,
#single .content header,
#single .content hgroup,
#single .content nav,
#single .content section,
#single .content summary {
  display: block;
}
#single .content audio,
#single .content canvas,
#single .content video {
  display: inline-block;
}
#single .content A audio:not([controls]) {
  display: none;
  height: 0;
}
#single .content [hidden] {
  display: none;
}
#single .content html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}
#single .content body {
  margin: 0;
}
#single .content img {
  vertical-align: top;
}
#single .content h1,
#single .content h2,
#single .content h3,
#single .content h4,
#single .content h5,
#single .content h6 {
  font-size: 1em;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
#single .content abbr[title] {
  border-bottom: 1px dotted;
}
#single .content b,
#single .content strong {
  font-weight: bold;
}
#single .content blockquote {
  margin: 1em 40px;
}
#single .content dfn {
  font-style: italic;
}
#single .content mark {
  background: #ff0;
  color: #000;
}
#single .content p,
#single .content pre {
  margin: 0;
  padding: 0;
}
#single .content code,
#single .content kbd,
#single .content pre,
#single .content samp {
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em;
}
#single .content pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
#single .content q {
  quotes: none;
}
#single .content q:before,
#single .content q:after {
  content: "";
  content: none;
}
#single .content small {
  font-size: 75%;
}
#single .content sub,
#single .content sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
#single .content sup {
  top: -0.5em;
}
#single .content sub {
  bottom: -0.25em;
}
#single .content dl,
#single .content menu,
#single .content ol,
#single .content ul {
  margin: 0;
}
#single .content dd {
  margin: 0;
}
#single .content menu,
#single .content ol,
#single .content ul {
  padding: 0;
}
#single .content ul,
#single .content ol {
  list-style: none;
  list-style-image: none;
}
#single .content img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
  margin: 0;
  padding: 0;
}
#single .content svg:not(:root) {
  overflow: hidden;
}
#single .content figure {
  margin: 0;
}
#single .content form {
  margin: 0;
}
#single .content fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
#single .content legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
}
#single .content button,
#single .content input,
#single .content select,
#single .content textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
}
#single .content button,
#single .content input {
  line-height: normal;
}
#single .content button,
#single .content html input[type=button],
#single .content input[type=reset],
#single .content input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
#single .content button[disabled],
#single .content input[disabled] {
  cursor: default;
}
#single .content input[type=checkbox],
#single .content input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
#single .content input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}
#single .content input[type=search]::-webkit-search-cancel-button,
#single .content input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
#single .content button::-moz-focus-inner,
#single .content input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
#single .content textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}
#single .content table {
  border-collapse: collapse;
  border-spacing: 0;
}
#single .content hr {
  visibility: hidden;
}
#single .content a {
  outline: none;
}
#single .content a,
#single .content a:link {
  outline: none;
}
#single .content a:visited {
  outline: none;
}

/*---------------------------------------------- start footer ------------------------------------------*/
footer {
  background-color: #84C254;
  padding-top: 50px;
  padding-bottom: 20px;
  margin-top: 140px;
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 35px 20px 20px 20px;
  }
}
footer p {
  color: white !important;
  font-weight: 500;
}
footer p.title {
  font-size: 18px;
  font-weight: bold;
  line-height: 40px;
}
@media only screen and (max-width: 767px) {
  footer p.title {
    font-size: 15px;
  }
}
footer p.contact {
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  footer p.contact {
    font-size: 13px;
  }
}
footer p.copyright {
  font-weight: 500;
  font-size: 13px;
}
@media only screen and (max-width: 767px) {
  footer p.copyright {
    font-size: 11px;
  }
}

/*---------------------------------------------- end footer ------------------------------------------*/
/* アクセス */
.mt-auto {
  margin-top: auto;
}

.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.column::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 1px;
  height: 100%;
  z-index: -1;
  margin: auto;
  background-color: #707070;
}
.column div {
  background-color: #FFF;
  padding: 11px 10px 10px;
  margin-bottom: 20px;
  border: 1px solid #707070;
  text-align: center;
  width: 150px;
}
.column div.first {
  margin-top: 20px;
}
.column div.last {
  background-color: #FFF;
  margin-bottom: 0;
}
.column div.wide {
  width: 340px;
}
.column div:nth-of-type(odd) {
  background: #F2F2F2;
}
.column div:nth-of-type(even) {
  background: #FFF;
}
.column div p {
  font-size: 16px;
  font-weight: 500;
}
.column div p span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.one-colmun {
  margin-right: auto;
  margin-left: auto;
}

.two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.column-middle div:nth-of-type(odd) {
  background: #FFF !important;
}
.column-middle div:nth-of-type(even) {
  background: #F2F2F2 !important;
}

.two-column-lastone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.two-column-lastone .two-column,
.two-column-lastone .column {
  margin-top: 0;
}