@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Cormorant+Infant:400,500");
@import url("https://fonts.googleapis.com/css?family=Cormorant:400,500");
@import url("https://fonts.googleapis.com/earlyaccess/hannari.css");
/*
.example{
    @include widtnPercent(960, 300);
}
*/
/*
.example{
    @include heightPercent(500, 300);
}
*/
/*
.example{
    @include marginPercent(500, 20, 5, 20, 5);
}
*/
/*
.example{
    @include paddingPercent(500, 20, 5, 20, 5);
}
*/
/* IEハック用mixin */
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: 400;
  font-style: normal;
  vertical-align: baseline;
  background: transparent;
  font-size: 10px;
}

@media print, screen and (min-width: 767px) and (max-width: 959px) {
  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 {
    font-size: 10px;
  }
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  color: #000000;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}
a:hover {
  opacity: .5;
}

::-moz-selection {
  background: #5899B4;
}

::selection {
  background: #5899B4;
}

::-moz-selection {
  background: #5899B4;
}

input, select {
  vertical-align: middle;
  border: none;
}

textarea {
  resize: none;
}

/* スクロールバーの有無によるズレ対策 */
html {
  overflow-x: hidden;
  overflow-y: scroll;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  min-height: 100vh;
  color: #000000;
  line-height: 1;
  word-break: normal;
  word-wrap: break-word;
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  letter-spacing: 2px;
  -webkit-text-size-adjust: 100%;
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

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

th, td {
  vertical-align: middle;
}

hr {
  display: block;
  border: 0;
  margin: 0;
  padding: 0;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/* リンク要素:初期設定
 ---------------------------------------- */
a {
  text-decoration: none;
}

/* 確認線 */
.test {
  border: solid 1px red;
}

/* フロート */
.left {
  float: left;
}

.right {
  float: right;
}

/* フロート解除 clerfix
 ---------------------------------------- */
.clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
  clear: both;
}

/* ブロック要素にする */
.block {
  display: block;
}

/* インライン要素にする */
.inline {
  display: inline;
}

/* BOX */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
header .header_area {
  display: -webkit-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(white 0%, rgba(255, 255, 255, 0) 100%);
}
header .header_area.on {
  background: #ffffff;
}
header .header_area h1 {
  margin-right: auto;
}
header nav {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px #5899B4 solid;
}
header nav .info {
  color: #ffffff;
  text-align: center;
  background: #5899B4;
}

@media print, screen and (min-width: 768px) {
  br.pc {
    display: block;
  }

  br.sp {
    display: none;
  }

  header .header_area {
    padding: 20px;
  }
  header .header_area h1 {
    width: 80px;
  }
  header .header_area .menu_btn {
    width: 92px;
    height: 32px;
    background: #5899B4;
    position: relative;
    cursor: pointer;
  }
  header .header_area .menu_btn span {
    position: absolute;
    z-index: 9;
    left: 0;
    width: 33px;
    height: 2px;
    -webkit-transition: .3s;
    transition: .3s;
    background-color: #fff;
  }
  header .header_area .menu_btn span:nth-child(1) {
    top: 10px;
    left: 10px;
  }
  header .header_area .menu_btn.active span:nth-child(1) {
    -webkit-transform: translateY(6px) rotate(-35deg);
    transform: translateY(6px) rotate(-35deg);
  }
  header .header_area .menu_btn span:nth-of-type(2) {
    top: 15px;
    left: 10px;
  }
  header .header_area .menu_btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  header .header_area .menu_btn span:nth-of-type(3) {
    top: 20px;
    left: 10px;
  }
  header .header_area .menu_btn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-5px) rotate(35deg);
    transform: translateY(-5px) rotate(35deg);
  }
  header .header_area .menu_btn small {
    position: absolute;
    font-size: .8rem;
    font-weight: 500;
    line-height: 1;
    top: 11px;
    right: 6px;
    margin: auto;
    display: block;
    text-align: center;
    color: #fff;
  }
  header .header_area .tel {
    font-size: 2.4rem;
    line-height: 1.4;
    margin: 0 14px 0 0;
  }
  header .header_area .tel a {
    color: #5899B4;
    font-family: 'Cormorant Infant','Cormorant';
  }
  header .header_area .tel a img {
    vertical-align: middle;
    width: 22px;
    margin: 0 10px 0 0;
  }
  header .header_area .btn {
    margin: 0 10px 0 0;
    padding: 0 10px;
    height: 32px;
    font-size: 1.2rem;
    text-align: center;
    background: #ffffff;
    border: 1px #5899B4 solid;
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .header_area .btn a {
    padding: 0 10px;
    color: #5899B4;
    display: block;
  }
  header nav .inner {
    margin: 0 auto;
    padding: 73px 0 25px 0;
    max-width: 1060px;
  }
  header nav .inner .flex {
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header nav .inner .flex ul li {
    font-size: 19px;
    line-height: 2.2;
  }
  header nav .inner .flex ul li ul {
    margin: 0 0 0 1rem;
  }
  header nav .inner .flex ul li ul li {
    font-size: 15px;
  }
  header nav .inner .btns {
    margin: 30px 0;
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    -ms-flex-align: space-evenly;
    -webkit-box-align: space-evenly;
    align-items: space-evenly;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  header nav .inner .btns .tel {
    padding: 0 0 0 36px;
    width: 28%;
    color: #5899B4;
    font-family: 'Cormorant Infant','Cormorant';
    font-size: 3rem;
    line-height: 2;
    background: url(../../../../img/tel.png) no-repeat 0 center;
    background-size: 26px;
  }
  header nav .inner .btns .btn {
    padding: 10px 0;
    width: 30%;
    color: #ffffff;
    font-size: 1.9rem;
    line-height: 1.2;
    text-align: center;
    background: #9CC2D3;
  }
  header nav .inner .btns .btn span {
    font-size: 1rem;
    display: block;
  }
  header nav .info {
    padding: 25px 0;
  }
  header nav .info p {
    font-size: 1.5rem;
    line-height: 2;
  }

  footer {
    margin: 40px 0 0 0;
  }
  footer .inner {
    margin: 0 auto;
    max-width: 1060px;
  }
  footer .btns {
    padding: 50px;
    background: url(../../../../img/bg_footer.jpg) no-repeat center 0;
    background-size: cover;
  }
  footer .btns .inner {
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
  }
  footer .btns .inner .tel {
    margin-right: auto;
  }
  footer .btns .inner .tel a {
    margin: 0 0 10px 0;
    padding: 0 0 0 30px;
    color: #5899B4;
    font-family: 'Cormorant Infant','Cormorant';
    font-size: 2.9rem;
    background: url(../../../../img/tel.png) no-repeat 0 center;
    background-size: 19px;
    display: block;
  }
  footer .btns .inner .tel p {
    color: #5899B4;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  footer .btns .inner .btn {
    margin: 0 0 0 20px;
    width: 25%;
    text-align: center;
    background: #ffffff;
    position: relative;
  }
  footer .btns .inner .btn a {
    padding: 20px 0 0 0;
    width: 100%;
    height: 100%;
    font-size: 1.6rem;
    line-height: 1.2;
    display: block;
  }
  footer .btns .inner .btn a span {
    font-size: 1.2rem;
    display: block;
  }
  footer .btns .inner .btn a:before {
    content: '';
    width: 98%;
    height: 94%;
    display: block;
    border: 1px #cccccc solid;
    position: absolute;
    top: 3%;
    left: 1%;
  }
  footer .btns .inner .btn.fair {
    margin: 0;
    background: #f8f8ee;
  }
  footer .btns .inner .btn.fair a {
    color: #5899B4;
  }
  footer .btns .inner .btn.fair a:before {
    border: 1px #5899b4 solid;
  }
  footer .sp_utilities {
    display: none;
  }
  footer .flex {
    padding: 40px 0;
  }
  footer .flex .inner {
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    -ms-flex-align: space-between;
    -webkit-box-align: space-between;
    align-items: space-between;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .flex .inner ul li {
    margin: 20px 0;
    font-size: 1.5rem;
    line-height: 1.2;
  }
  footer .flex .inner ul li ul {
    padding: 0 0 0 1rem;
  }
  footer .flex .inner ul li ul li {
    padding: 0 0 0 1.8rem;
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 1.2rem;
    position: relative;
  }
  footer .flex .inner ul li ul li:before {
    content: '';
    width: 10px;
    height: 1px;
    background: #5899B4;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
/*
  footer .flex .inner ul li.recruit_link {}

  footer .flex .inner ul li ul.recruit_list {}
*/
  footer .flex .inner ul li.recruit_link ul.recruit_list li {
    margin: 10px 0 0 0;
    line-height: 1.1em;
  }


  footer .btm_area {
    padding: 40px 0;
    background: #5899B4;
  }
  footer .btm_area .inner {
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    vertical-align: middle;
  }
  footer .btm_area .inner .sns {
    margin-right: auto;
    vertical-align: middle;
  }
  footer .btm_area .inner .sns li {
    margin: 0 6px 0 0;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    display: inline-block;
  }
  footer .btm_area .inner .sns li img {
    max-height: 100%;
  }

  footer .btm_area .sns li.lineSend {display: none;}

  footer .btm_area .inner small {
    color: #ffffff;
  }

  #p2t {
    display: none;
  }

  #sp_btns {
    display: none;
  }
}
@media print, screen and (min-width: 767px) and (max-width: 959px) {
  header nav .inner {
    padding: 25px 0 0 0;
  }
  header nav .inner .flex {
    padding: 0 15px;
  }
  header nav .inner .flex ul li {
    font-size: 1.4rem;
  }
  header nav .inner .flex ul li ul li {
    font-size: 1.2rem;
  }
  header nav .inner .btns .tel {
    font-size: 2.2rem;
  }

  footer {
    margin: 30px auto 0 auto;
  }
  footer .flex .inner {
    padding: 0 20px;
  }
  footer .flex .inner ul li {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
  footer .btm_area {
    padding: 30px 20px;
  }
}
@media print, screen and (max-width: 767px) {
  br.pc {
    display: none;
  }

  br.sp {
    display: block;
  }

  header .header_area {
    padding: 10px;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(white 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .header_area h1 {
    width: 60px;
  }
  header .header_area .tel {
    display: none;
  }
  header .header_area .btn {
    margin: -10px 10px 0 0;
    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;
  }
  header .header_area .btn a {
    padding: 5px 10px;
    color: #5899B4;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    border: 1px #5899B4 solid;
    background: rgba(255, 255, 255, 0.8);
    display: block;
  }
  header .header_area .btn.fair {
    display: none;
  }
  header .header_area .menu_btn {
    width: 38px;
    height: 36px;
    border-radius: 3px;
    position: relative;
  }
  header .header_area .menu_btn span {
    position: absolute;
    z-index: 9;
    left: 0;
    width: 100%;
    height: 1px;
    -webkit-transition: .3s;
    transition: .3s;
    background-color: #5899B4;
  }
  header .header_area .menu_btn span:nth-child(1) {
    top: 5px;
  }
  header .header_area .menu_btn.active span:nth-child(1) {
    -webkit-transform: translateY(6px) rotate(-35deg);
    transform: translateY(6px) rotate(-35deg);
  }
  header .header_area .menu_btn span:nth-of-type(2) {
    top: 12px;
  }
  header .header_area .menu_btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  header .header_area .menu_btn span:nth-of-type(3) {
    top: 19px;
  }
  header .header_area .menu_btn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(35deg);
    transform: translateY(-8px) rotate(35deg);
  }
  header .header_area .menu_btn small {
    position: absolute;
    font-size: .8rem;
    line-height: 1;
    bottom: 1px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    text-align: center;
    color: #5899B4;
  }
  header nav {
    overflow-y: scroll;
  }
  header nav .inner {
    padding: 0 20px 20px 20px;
  }
  header nav .inner ul {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  header nav .inner ul li {
    font-size: 1.6rem;
    line-height: 1;
  }
  header nav .inner ul li a {
    padding: 20px 0;
    border-bottom: 1px #cccccc solid;
    display: block;
    position: relative;
  }
  header nav .inner ul li a br {
    display: none;
  }
  header nav .inner ul li a.plus:before {
    content: '';
    width: 1px;
    height: 10px;
    background: #000000;
    display: block;
    position: absolute;
    top: 50%;
    right: 9px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  header nav .inner ul li a.plus:after {
    content: '';
    width: 10px;
    height: 1px;
    background: #000000;
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  header nav .inner ul li a.minus:before {
    display: none;
  }
  header nav .inner ul li a.minus:after {
    content: '';
    width: 10px;
    height: 1px;
    background: #000000;
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  header nav .inner ul li > ul {
    display: none;
  }
  header nav .inner ul li > ul li a {
    text-indent: 1.8rem;
  }
  header nav .btns {
    margin: 20px 0 0 0;
    text-align: center;
  }
  header nav .btns a {
    margin: 0 0 10px 0;
    padding: 10px 0;
    color: #5899B4;
    font-size: 3rem;
    display: block;
  }
  header nav .btns a.btn {
    color: #ffffff;
    font-size: 1.9rem;
    line-height: 1.6;
    background: #9CC2D3;
  }
  header nav .btns a.btn span {
    display: block;
  }
  header nav .btns a:first-child {
    padding-left: 30px;
    background: url(../../../../img/tel.png) no-repeat 0 center;
    background-size: 20px;
    display: inline-block;
  }
  header nav .btns a:last-child {
    margin: 0;
  }
  header nav .info {
    padding: 10px;
    font-size: 1.2rem;
    line-height: 1.6;
  }

  footer {
    margin: 25px auto 0 auto;
    padding: 0 0 70px 0;
  }
  footer .btns .tel {
    margin: 0 0 15px 0;
    padding: 20px 0;
    text-align: center;
    background: url(../../../../img/bg_footer.jpg) no-repeat center 0;
  }
  footer .btns .tel a {
    margin: 0 0 6px 0;
    padding: 0 0 0 18px;
    color: #5899B4;
    font-size: 2rem;
    background: url(../../../../img/tel.png) no-repeat 0 center;
    background-size: 12px;
    display: inline-block;
  }
  footer .btns .tel p {
    color: #5899B4;
    font-size: 1rem;
    line-height: 1.4;
  }
  footer .btns .btn {
    margin: 0 auto;
    width: 70%;
    text-align: center;
    background: #ffffff;
    position: relative;
  }
  footer .btns .btn a {
    padding: 15px 0;
    width: 100%;
    height: 100%;
    font-size: 1.4rem;
    line-height: 1.4;
    display: block;
  }
  footer .btns .btn a span {
    font-size: 1rem;
    display: block;
  }
  footer .btns .btn a:before {
    content: '';
    width: 98%;
    height: 94%;
    display: block;
    border: 1px #cccccc solid;
    position: absolute;
    top: 3%;
    left: 1%;
  }
  footer .btns .btn.fair {
    margin: 0 auto 10px auto;
    background: #f8f8ee;
  }
  footer .btns .btn.fair a {
    color: #5899B4;
  }
  footer .btns .btn.fair a:before {
    border: 1px #5899b4 solid;
  }
  footer .sp_utilities {
    margin: 25px 0 20px 0;
  }
  footer .sp_utilities ul {
    margin: 0 auto;
    padding: 0 0 20px 0;
    width: 85%;
    text-align: center;
    border-bottom: 1px #cccccc solid;
  }
  footer .sp_utilities ul li {
    display: inline-block;
  }
  footer .sp_utilities ul li:last-child:before {
    margin: 0 10px;
    content: '|';
  }
  footer .flex {
    display: none;
  }

/*
  footer .btm_area .sns {
    display: none;
  }
*/

  footer .btm_area .sns {
    width: 68%;
    margin: 0 auto;
    padding: 1.0rem 0 3.4rem 0;
    text-align: center;
  }

  footer .btm_area .sns li {
    width: 12%;
    display: inline-block;
    text-align: center;
  }

  footer .btm_area .sns li img {
    width: auto;
    height: 22px;
  }

  footer .btm_area .sns li.lineSend {
    width: auto;
    display: block;
    padding: 0 0 2.6rem 0;
  }

  footer .btm_area .sns li.lineSend a {
    width: 100%;
    height: 36px;
    display: block;
    line-height: 36px;
    color: #fff;
    background: #00B900 url(../../../../img/ico_line.png) no-repeat 15px 48%;;
    background-size: 22px auto;
    -webkit-background-size: 22px auto;/* Safari,Google Chrome */  
    -moz-background-size: 22px auto;/* Firefox */  
    -o-background-size: 22px auto;/* Opera */
  }

  footer .btm_area .sns li.lineSend a span {
    width: auto;
    font-size: 13px;
  }


  footer .btm_area small {
    text-align: center;
    display: block;
  }

  #p2t {
    width: 35px;
    position: fixed;
    bottom: 57px;
    right: 6px;
  }

  #sp_btns {
    background: #5899B4;
    position: fixed;
    bottom: 0;
    z-index: 10;
  }
  #sp_btns ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #sp_btns ul li {
    padding: 10px 0;
    width: calc(100vw / 3);
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
    border-right: 1px #ffffff solid;
  }
  #sp_btns ul li:last-child {
    border: 0;
  }
  #sp_btns ul li a {
    width: 100%;
    height: 100%;
    color: #ffffff;
    vertical-align: middle;
  }
  #sp_btns ul li a span {
    font-size: .8rem;
    display: block;
  }
  #sp_btns ul li a img {
    width: 10px;
  }
}
p.nodata {
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  .index__content #key {
    margin: 0 0 70px 0;
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  .index__content #key h2 {
    width: 100%;
    color: #ffffff;
    font-size: 2.8rem;
    line-height: 1.6;
    text-align: center;
    text-shadow: 0px 0px 10px #000;
    -moz-text-shadow: 0px 0px 10px #000;
    -webkit-text-shadow: 0px 0px 10px #000;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .index__content #key h2 span {
    font-size: 1.6rem;
    display: block;
  }
  .index__content #key ul {
    height: 100%;
  }
  .index__content #key ul li {
    height: 100vh;
    background-repeat: repeat;
    background-position: center center;
    background-size: cover;
  }
  .index__content #key ul li img {
    opacity: 0;
  }
  .index__content #key .gradient {
    width: 100%;
    height: 40vh;
    background: red;
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(#ffffff 0%, rgba(255, 255, 255, 0) 100%);
  }
  .index__content #key .scroll {
    width: 14px;
    position: absolute;
    bottom: 70px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .index__content #key .slick-dots {
    height: 10px;
    position: absolute;
    bottom: 40px;
  }
  .index__content #key .slick-dots li {
    height: 10px;
  }
  .index__content h3 {
    color: #5899B4;
    font-size: 2.1rem;
    text-align: center;
  }
  .index__content h3:after {
    margin: 15px auto;
    content: '';
    width: 40px;
    height: 1px;
    background: #5899B4;
    display: block;
  }
  .index__content h3 img {
    margin: 0 0 20px 0;
    width: 28px;
  }
  .index__content .title {
    margin: 0 0 40px 0;
    color: #868686;
    font-size: 1.3rem;
    text-align: center;
  }
  .index__content .btn_list {
    margin: 50px auto 0;
    padding: 14px 85px;
    color: #5899B4;
    font-size: 1.2rem;
    line-height: 1;
    text-align: center;
    border: 1px #5899B4 solid;
    display: inline-block;
  }
  .index__content .btn_detail {
    margin: 30px auto 0;
    padding: 12px 10px;
    color: #5899B4;
    font-size: 1.2rem;
    line-height: 1;
    text-align: center;
    border-bottom: 1px #5899B4 solid;
    display: inline-block;
  }
  .index__content .slick-slide img {
    -webkit-transition: .3s;
    transition: .3s;
  }
  .index__content .slick-slide:hover img {
    opacity: .5;
  }
  .index__content .block_pickup {
    margin: 0 0 80px 0;
    text-align: center;
  }
  .index__content .block_pickup ul {
    width: 100%;
    max-width: 1090px;
    padding: 0 5px;
    margin: 0 auto;
  }
  .index__content .block_pickup ul li {
    margin: 0 15px;
  }
  .index__content .block_pickup ul li a {
    outline: none;
  }
  .index__content .block_pickup ul li figure {
    margin: 0 0 20px 0;
    overflow: hidden;
    position: relative;
    padding-top: 64%;
  }
  .index__content .block_pickup ul li figure img {
    height: auto;
    position: absolute;
    left: 50%;
    top: 0;
    max-width: none;
    height: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .index__content .block_pickup ul li dl {
    padding: 0 15px;
    text-align: left;
  }
  .index__content .block_pickup ul li dl dt {
    margin: 0 0 10px 0;
    color: #5899B4;
    font-size: 1.5rem;
  text-align: center;
  }
  .index__content .block_pickup ul li dl dd {
    color: #888;
    font-size: 1.3rem;
    line-height: 1.5;
  text-align: center;
  }
  .index__content .block_topics {
    margin: 0 0 80px 0;
    text-align: center;
  }
  .index__content .block_topics ul {
    width: 100%;
    /*max-width: 1090px;*/
    max-width: 1000px;
    margin: 0 auto;
  }
  .index__content .block_topics ul li {
    /*margin: 0 20px;*/
    margin: 0 40px;
  }
  .index__content .block_topics ul li a {
    outline: none;
  }
  .index__content .block_topics ul li figure {
    margin: 0 0 20px 0;
    overflow: hidden;
    position: relative;
    padding-top: 45%;
  }
  .index__content .block_topics ul li figure img {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: none;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .index__content .block_topics ul li figure:after {
    content: '';
    width: 98%;
    height: 98%;
    border: 1px #ffffff solid;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .index__content .block_topics ul li p {
    color: #888;
    font-size: 2rem;
    line-height: 1.5;
  }
  .index__content .block_concept {
    margin: 0 0 120px 0;
    text-align: center;
  }
  .index__content .block_concept .inner {
    height: 417px;
    padding: 90px 0 0 0;
    background: url(../../../../img/concept.jpg) repeat-x 0 0;
    -webkit-animation: bgroop 500s linear infinite;
    animation: bgroop 500s linear infinite;
  }
  .index__content .block_concept .inner h4 {
    margin: 0 0 20px 0;
    color: #202020;
    font-size: 2.6rem;
    line-height: 1.7;
  }
  .index__content .block_concept .inner p {
    font-size: 1.4rem;
    line-height: 1.7;
  }
  .index__content .block_concept .inner a {
    margin: 20px auto 0;
  }
  @-webkit-keyframes bgroop {
    from {
      background-position: 0  0;
    }
    to {
      background-position: -10720px 0;
    }
  }
  @keyframes bgroop {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -10720px 0;
    }
  }
  .index__content .block_ceremony {
    margin: 0 0 120px 0;
    text-align: center;
  }
  .index__content .block_ceremony .catch {
    margin: -10px 0 20px 0;
    color: #202020;
    font-size: 2.1rem;
  }
  .index__content .block_ceremony .desc {
    margin: 0 0 60px 0;
    font-size: 1.4rem;
    line-height: 1.7;
  }
  .index__content .block_ceremony ul {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .index__content .block_ceremony ul li {
    width: 60%;
  }
  .index__content .block_ceremony ul li a {
    outline: none;
  }
  .index__content .block_ceremony ul li img {
    width: 100%;
    height: auto;
    margin: 0 0 30px 0;
  }
  .index__content .block_ceremony ul li img.img_pc {
    display: block;
  }
  .index__content .block_ceremony ul li img.img_sp {
    display: none;
  }
  .index__content .block_ceremony ul li dl dt {
    margin: 0 0 10px 0;
    color: #212121;
    font-size: 2.1rem;
  }
  .index__content .block_ceremony ul li dl dd {
    margin: 0 0 15px 0;
    color: #878787;
    font-size: 1.2rem;
  }
  .index__content .block_ceremony ul li p {
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .index__content .block_venue {
    text-align: center;
    background: #f8f8f5;
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .index__content .block_venue .box_txt {
    width: 50%;
    padding: 20px;
  }
  .index__content .block_venue .box_txt .catch {
    margin: 0 0 20px 0;
    color: #202020;
    font-size: 2.1rem;
  }
  .index__content .block_venue .box_txt .desc {
    font-size: 1.4rem;
    line-height: 1.7;
  }
  .index__content .block_venue .box_txt a {
    margin: 30px auto 0;
  }
  .index__content .block_venue .box_image {
    width: 50%;
  }
  .index__content .block_venue .box_image ul.col4 {
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .index__content .block_venue .box_image ul.col4 li {
    width: 50%;
  }
  .index__content .block_venue .box_image ul.col4 li a {
    display: block;
    position: relative;
  }
  .index__content .block_venue .box_image ul.col4 li a .img_pc {
    display: block;
  }
  .index__content .block_venue .box_image ul.col4 li a .img_sp {
    display: none;
  }
  .index__content .block_venue .box_image ul.col4 li a .inner {
    color: #fff;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    background: rgba(83, 118, 54, 0.8);
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    top: 7px;
    left: 7px;
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .index__content .block_venue .box_image ul.col4 li a .inner dl {
    width: 100%;
  }
  .index__content .block_venue .box_image ul.col4 li a .inner dl dt {
    margin: 0 0 10px 0;
    font-size: 2.2rem;
  }
  .index__content .block_venue .box_image ul.col4 li a .inner dl dd {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
  }
  .index__content .block_venue .box_image ul.col4 li a .inner p.txt {
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .index__content .block_venue .box_image ul.col4 li a .inner p.btn_detail {
    margin: 30px auto 0;
    padding: 12px 10px;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    text-align: center;
    border-bottom: 1px #fff solid;
    display: inline-block;
  }
  .index__content .block_venue .box_image ul.col4 li a:hover {
    opacity: 1;
  }
  .index__content .block_venue .box_image ul.col4 li a:hover div {
    opacity: 1;
  }
  .index__content .block_venue .box_image ul.col3 {
    width: 100%;
  }
  .index__content .block_venue .box_image ul.col3 li {
    height: 200px;
    overflow: hidden;
  }
  .index__content .block_venue .box_image ul.col3 li a {
    display: block;
    position: relative;
  }
  .index__content .block_venue .box_image ul.col3 li a figure {
    overflow: hidden;
    position: relative;
    padding-top: 50%;
  }
  .index__content .block_venue .box_image ul.col3 li a figure img {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: none;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .index__content .block_venue .box_image ul.col3 li a figure img.img_pc {
    display: block;
  }
  .index__content .block_venue .box_image ul.col3 li a figure img.img_sp {
    display: none;
  }
  .index__content .block_venue .box_image ul.col3 li a .inner {
    color: #fff;
    width: calc(100% - 14px);
    height: calc(200px - 14px);
    background: rgba(88, 153, 153, 0.8);
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    top: 7px;
    left: 7px;
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .index__content .block_venue .box_image ul.col3 li a .inner dl {
    width: 100%;
  }
  .index__content .block_venue .box_image ul.col3 li a .inner dl dt {
    margin: 0 0 10px 0;
    font-size: 2.2rem;
  }
  .index__content .block_venue .box_image ul.col3 li a .inner dl dd {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
  }
  .index__content .block_venue .box_image ul.col3 li a .inner p.txt {
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .index__content .block_venue .box_image ul.col3 li a .inner p.btn_detail {
    margin: 30px auto 0;
    padding: 12px 10px;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    text-align: center;
    border-bottom: 1px #fff solid;
    display: inline-block;
  }
  .index__content .block_venue .box_image ul.col3 li a:hover {
    opacity: 1;
  }
  .index__content .block_venue .box_image ul.col3 li a:hover div {
    opacity: 1;
  }
  .index__content .block_venue .box_image ul.col2 {
    width: 100%;
  }
  .index__content .block_venue .box_image ul.col2 li {
    height: 300px;
    overflow: hidden;
  }
  .index__content .block_venue .box_image ul.col2 li a {
    display: block;
    position: relative;
  }
  .index__content .block_venue .box_image ul.col2 li a figure {
    overflow: hidden;
    position: relative;
    padding-top: 55%;
  }
  .index__content .block_venue .box_image ul.col2 li a figure img {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: none;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .index__content .block_venue .box_image ul.col2 li a figure img.img_pc {
    display: block;
  }
  .index__content .block_venue .box_image ul.col2 li a figure img.img_sp {
    display: none;
  }
  .index__content .block_venue .box_image ul.col2 li a .inner {
    color: #fff;
    width: calc(100% - 14px);
    height: calc(300px - 14px);
    background: rgba(88, 153, 153, 0.8);
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    top: 7px;
    left: 7px;
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .index__content .block_venue .box_image ul.col2 li a .inner dl {
    width: 100%;
  }
  .index__content .block_venue .box_image ul.col2 li a .inner dl dt {
    margin: 0 0 10px 0;
    font-size: 2.2rem;
  }
  .index__content .block_venue .box_image ul.col2 li a .inner dl dd {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
  }
  .index__content .block_venue .box_image ul.col2 li a .inner p.txt {
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .index__content .block_venue .box_image ul.col2 li a .inner p.btn_detail {
    margin: 30px auto 0;
    padding: 12px 10px;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    text-align: center;
    border-bottom: 1px #fff solid;
    display: inline-block;
  }
  .index__content .block_venue .box_image ul.col2 li a:hover {
    opacity: 1;
  }
  .index__content .block_venue .box_image ul.col2 li a:hover div {
    opacity: 1;
  }
  .index__content .block_cuisine {
    text-align: center;
    background: #f8f8f5;
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .index__content .block_cuisine .box_txt {
    width: 50%;
    padding: 20px;
    background: #f8f8f5;
  }
  .index__content .block_cuisine .box_txt img {
    display: none;
  }
  .index__content .block_cuisine .box_txt .catch {
    margin: 0 0 20px 0;
    color: #202020;
    font-size: 2.1rem;
  }
  .index__content .block_cuisine .box_txt .desc {
    font-size: 1.4rem;
    line-height: 1.7;
  }
  .index__content .block_cuisine .box_txt a {
    margin: 30px auto 0;
  }
  .index__content .block_cuisine .box_image {
    width: 50%;
  }
  .index__content .block_dress {
    text-align: center;
    background: #f8f8f5;
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .index__content .block_dress.sp {
    display: none;
  }
  .index__content .block_dress .box_txt {
    width: 50%;
    padding: 20px;
    background: #f8f8f5;
  }
  .index__content .block_dress .box_txt img {
    display: none;
  }
  .index__content .block_dress .box_txt .catch {
    margin: 0 0 18px 0;
    color: #202020;
    font-size: 2.1rem;
    line-height: 1.6;
  }
  .index__content .block_dress .box_txt .desc {
    font-size: 1.4rem;
    line-height: 1.7;
  }
  .index__content .block_dress .box_txt a {
    margin: 30px auto 0;
  }
  .index__content .block_dress .box_image {
    width: 50%;
  }
  .index__content .block_fair {
    width: 100%;
    margin: 0 0 60px 0;
    padding: 60px 0;
    text-align: center;
    background: url(../../../../img/bg_fair.jpg) no-repeat center center/cover;
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
  }
  .index__content .block_fair h3 {
    margin: 0 0 10px 0;
  }
  .index__content .block_fair h3:after {
    display: none;
  }
  .index__content .block_fair .title {
    margin: 0 0 30px 0;
  }
  .index__content .block_fair .title:after {
    margin: 15px auto;
    content: '';
    width: 40px;
    height: 1px;
    background: #5899B4;
    display: block;
  }
  .index__content .block_fair .pickup {
    width: 50%;
    padding: 0 5%;
    border-right: 1px solid #aaa;
  }
  .index__content .block_fair .pickup .slick-arrow {
    display: none !important;
  }
  .index__content .block_fair .pickup a {
    outline: none;
  }
  .index__content .block_fair .pickup figure {
    margin: 0 0 20px 0;
    overflow: hidden;
    position: relative;
    padding-top: 50%;
  }
  .index__content .block_fair .pickup figure img {
    height: auto;
    position: absolute;
    left: 50%;
    top: 0;
    max-width: none;
    height: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .index__content .block_fair .pickup dl dt {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .index__content .block_fair .pickup dl dd {
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .index__content .block_fair .calendar {
    width: 50%;
    padding: 0 5%;
  }
  .index__content .block_fair .calendar ul {
    margin: 0 0 25px 0;
    padding: 0 5%;
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .index__content .block_fair .calendar ul.sp {
    display: none;
  }
  .index__content .block_fair .calendar ul li.prev {
    margin: 10px 0 0 0;
    padding: 0 0 0 15px;
    font-size: 1.2rem;
    position: relative;
  }
  .index__content .block_fair .calendar ul li.prev span {
    font-size: 1.7rem;
  }
  .index__content .block_fair .calendar ul li.prev:after {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-left: 1px solid #5899B4;
    border-bottom: 1px solid #5899B4;
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
    transform: rotate(45deg) translate(-50%, -50%);
  }
  .index__content .block_fair .calendar ul li.next {
    margin: 10px 0 0 0;
    padding: 0 15px 0 0;
    font-size: 1.2rem;
    position: relative;
  }
  .index__content .block_fair .calendar ul li.next span {
    font-size: 1.7rem;
  }
  .index__content .block_fair .calendar ul li.next:after {
    content: "";
    position: absolute;
    right: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #5899B4;
    border-right: 1px solid #5899B4;
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
    transform: rotate(45deg) translate(-50%, -50%);
  }
  .index__content .block_fair .calendar ul li.current {
    padding: 0 10px;
    font-size: 1.4rem;
  }
  .index__content .block_fair .calendar ul li.current span {
    font-size: 3rem;
  }
  .index__content .block_fair .calendar table {
    width: 100%;
  }
  .index__content .block_fair .calendar table th:nth-child(6),
  .index__content .block_fair .calendar table td:nth-child(6) a {
    color: #0059b2;
  }
  .index__content .block_fair .calendar table th:nth-child(7),
  .index__content .block_fair .calendar table td:nth-child(7) a,
  .index__content .block_fair .calendar table td.holiday a,
  .index__content .block_fair .calendar table td.holiday {
    color: #d90000;
  }
  .index__content .block_fair .calendar table th {
    padding: 15px 0;
    font-size: 1.2rem;
  }
  .index__content .block_fair .calendar table td {
    padding: 15px 0;
    font-size: 1.6rem;
  }
  .index__content .block_fair .calendar table td a {
    text-decoration: underline;
  }
  .index__content .block_plan {
    margin: 0 0 80px 0;
    text-align: center;
  }
  .index__content .block_plan ul {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
  .index__content .block_plan ul li {
    margin: 0 20px;
  }
  .index__content .block_plan ul li a {
    outline: none;
  }
  .index__content .block_plan ul li figure {
    margin: 0 0 20px 0;
    overflow: hidden;
    position: relative;
    padding-top: 68%;
  }
  .index__content .block_plan ul li figure img {
    height: auto;
    position: absolute;
    left: 50%;
    top: 0;
    max-width: none;
    height: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .index__content .block_plan ul li dl dt {
    margin: 0 0 10px 0;
    color: #9CC2D3;
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .index__content .block_plan ul li dl dd {
    font-size: 1.6rem;
  }
  .index__content .block_plan ul li p {
    display: none;
  }
  .index__content .block_link {
    margin: 0 0 80px 0;
    text-align: center;
  }
  .index__content .block_link ul {
    width: 100%;
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 20px;
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
  }
  .index__content .block_link ul li {
    width: 49.5%;
  }
  .index__content .block_link ul li:nth-child(2n) {
    margin: 0 0 0 1%;
  }
  .index__content .block_link ul li img {
    width: 100%;
    height: auto;
    margin: 0 0 30px 0;
  }
  .index__content .block_link ul li dl dt {
    margin: 0 0 10px 0;
    color: #5899B4;
    font-size: 2rem;
  }
  .index__content .block_link ul li dl dd {
    margin: 0 0 20px 0;
    color: #888;
    font-size: 1.2rem;
  }
  .index__content .block_link ul li p.txt {
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .index__content .block_link ul li p.btn_detail {
    -webkit-transition: .3s;
    transition: .3s;
  }
  .index__content .block_link ul li p.btn_detail:hover {
    opacity: .5;
  }
  .index__content .block_banner {
    margin: 0 0 80px 0;
    text-align: center;
  }
  .index__content .block_banner ul {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 40px;
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
  }
  .index__content .block_banner ul li {
    width: 45%;
  }

  .index__content .block_banner ul li:nth-child(2n) {
    margin: 0 0 0 10%;
  }
  .index__content .block_banner ul li img {
    width: 100%;
    height: auto;
  }


/* **************** insta ******************** */
  .index__content div.insta_container {
    width: auto;
  }

  .index__content div.insta_container div.insta_wrapp {
    width: auto;
  }

  .index__content div.insta_container div.insta_wrapp div.insta_block {
    width: 1100px;
    margin: 0 auto;
    padding: 25px 0 50px 0;
    overflow: hidden;
  }

  .index__content div.insta_container div.insta_wrapp div.insta_block ul.insta-card {
    width: 1100px;
    margin: 0 auto;
    overflow: hidden;
  }

  .index__content div.insta_container div.insta_wrapp div.insta_block ul.insta-card li {
    display: none;
  }

  .index__content div.insta_container div.insta_wrapp div.insta_block ul.insta-card li:nth-child(1),
  .index__content div.insta_container div.insta_wrapp div.insta_block ul.insta-card li:nth-child(2),
  .index__content div.insta_container div.insta_wrapp div.insta_block ul.insta-card li:nth-child(3),
  .index__content div.insta_container div.insta_wrapp div.insta_block ul.insta-card li:nth-child(4),
  .index__content div.insta_container div.insta_wrapp div.insta_block ul.insta-card li:nth-child(5) {
    width: 220px;
    height: 220px;
    display: block;
    overflow: hidden;
    text-align: center;
    float: left;
  }


  .index__content div.insta_container div.insta_wrapp div.insta_block ul.insta-card li span {
    width: auto;
    height: 100%;
    display: block;
    padding: 10px;
    overflow: hidden;
    text-align: center;
  }

  .index__content div.insta_container div.insta_wrapp div.insta_block ul.insta-card li img {
    width: 100%;
    height: 210px;
    object-fit: cover;
  }
/* **************** insta ******************** */


}/* close pc */




@media print, screen and (max-width: 767px) {
  .index__content #key {
    height: 70vh;
    overflow: hidden;
    position: relative;
  }
  .index__content #key h2 {
    width: 100%;
    color: #ffffff;
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: center;
    text-shadow: 0px 0px 10px #000;
    -moz-text-shadow: 0px 0px 10px #000;
    -webkit-text-shadow: 0px 0px 10px #000;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .index__content #key h2 span {
    font-size: 1.2rem;
    display: block;
  }
  .index__content #key ul {
    height: 100%;
  }
  .index__content #key ul li {
    height: 70vh;
    background-repeat: repeat;
    background-position: center center;
    background-size: cover;
  }
  .index__content #key ul li img {
    opacity: 0;
  }
  .index__content #key .gradient {
    width: 100%;
    height: 30vh;
    background: red;
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(#ffffff 0%, rgba(255, 255, 255, 0) 100%);
  }
  .index__content #key .scroll {
    display: none;
  }
  .index__content #key .slick-dots {
    height: 10px;
    position: absolute;
    bottom: 15px;
  }
  .index__content #key .slick-dots li {
    height: 10px;
  }
  .index__content h3 {
    color: #5899B4;
    font-size: 1.4rem;
    text-align: center;
  }
  .index__content h3:after {
    margin: 15px auto;
    content: '';
    width: 40px;
    height: 1px;
    background: #5899B4;
    display: block;
  }
  .index__content h3 img {
    margin: 0 0 20px 0;
    width: 28px;
  }
  .index__content .title {
    margin: 0 0 20px 0;
    color: #868686;
    font-size: 1.1rem;
    text-align: center;
  }
  .index__content .catch {
    font-size: 1.6rem;
    line-height: 2;
    text-align: center;
  }
  .index__content .btn_list {
    margin: 25px auto 0;
    padding: 13px 0;
    width: 50%;
    color: #5899B4;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    border: 1px #5899B4 solid;
    display: inline-block;
  }
  .index__content .btn_detail {
    margin: 25px auto 0;
    padding: 13px 0;
    width: 50%;
    color: #5899B4;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    border: 1px #5899B4 solid;
    display: inline-block;
  }
  .index__content .slick-slide img {
    -webkit-transition: .3s;
    transition: .3s;
  }
  .index__content .slick-slide:hover img {
    opacity: .5;
  }
  .index__content .block_pickup {
    padding: 40px 30px;
    text-align: center;
  }
  .index__content .block_pickup ul {
    width: 100%;
    margin: 0 auto;
  }
  .index__content .block_pickup ul li {
    padding: 0 5px;
  }
  .index__content .block_pickup ul li a {
    outline: none;
  }
  .index__content .block_pickup ul li figure {
    margin: 0 0 15px 0;
    padding-top: 72%;
    overflow: hidden;
    position: relative;
    border: 5px solid #fff;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  .index__content .block_pickup ul li figure img {
    height: auto;
    position: absolute;
    left: 50%;
    top: 0;
    max-width: none;
    height: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .index__content .block_pickup ul li dl {
    text-align: left;
  }
  .index__content .block_pickup ul li dl dt {
    margin: 0 0 10px 0;
    color: #5899B4;
    font-size: 1.5rem;
    text-align: center;
  }
  .index__content .block_pickup ul li dl dd {
    color: #888;
    font-size: 1.3rem;
    line-height: 1.5;
  text-align: center;
  }
  .index__content .block_pickup .slick-next {
    top: 35%;
  }
  .index__content .block_pickup .slick-prev {
    top: 35%;
  }
  .index__content .block_topics {
    padding: 40px 30px;
    text-align: center;
    background: #f8f8f6;
  }
  .index__content .block_topics ul {
    width: 100%;
  }
  .index__content .block_topics ul li {
    padding: 5px;
  }
  .index__content .block_topics ul li a {
    outline: none;
  }
  .index__content .block_topics ul li figure {
    margin: 0 0 20px 0;
    padding-top: 72%;
    overflow: hidden;
    position: relative;
    border: 5px solid #fff;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  .index__content .block_topics ul li figure img {
    position: absolute;
    left: 50%;
    top: 0;
    max-width: none;
    height: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .index__content .block_topics ul li p {
    color: #888;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .index__content .block_topics .slick-next {
    top: 35%;
  }
  .index__content .block_topics .slick-prev {
    top: 35%;
  }
  .index__content .block_concept {
    padding: 40px 0 0 0;
    text-align: center;
  }
  .index__content .block_concept .inner {
    padding: 20px 10px 50px 10px;
    background: url(../../../../img/concept_sp.jpg) no-repeat center top/cover;
  }
  .index__content .block_concept .inner h4 {
    margin: 0 0 20px 0;
    color: #202020;
    font-size: 1.6rem;
    line-height: 1.7;
  }
  .index__content .block_concept .inner p {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    line-height: 1.7;
    letter-spacing: 1px;
  }
  .index__content .block_ceremony {
    padding: 40px 0;
    text-align: center;
  }
  .index__content .block_ceremony .catch {
    margin: 0 10px 20px 10px;
    color: #202020;
    font-size: 1.6rem;
  }
  .index__content .block_ceremony .desc {
    margin: 0 10px 20px 10px;
    font-size: 1.2rem;
    line-height: 1.7;
    display: none;
  }
  .index__content .block_ceremony ul {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
  }
  .index__content .block_ceremony ul li {
    width: 33.33%;
  }
  .index__content .block_ceremony ul li a {
    outline: none;
  }
  .index__content .block_ceremony ul li img {
    width: 100%;
    height: auto;
    margin: 0 0 30px 0;
  }
  .index__content .block_ceremony ul li img.img_pc {
    display: none;
  }
  .index__content .block_ceremony ul li img.img_sp {
    display: block;
  }
  .index__content .block_ceremony ul li dl dt {
    margin: 0 0 10px 0;
    color: #212121;
    font-size: 1.8rem;
  }
  .index__content .block_ceremony ul li dl dd {
    margin: 0 0 15px 0;
    color: #878787;
    font-size: 1.2rem;
  }
  .index__content .block_ceremony ul li p {
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .index__content .block_venue {
    padding: 40px 0;
    text-align: center;
    background: #f8f8f5;
  }
  .index__content .block_venue .box_txt {
    padding: 0 20px 30px 20px;
  }
  .index__content .block_venue .box_txt .catch {
    margin: 0 0 20px 0;
    color: #202020;
    font-size: 1.6rem;
  }
  .index__content .block_venue .box_txt .desc {
    font-size: 1.2rem;
    line-height: 1.7;
    display: none;
  }
  .index__content .block_venue .box_txt a {
    margin: 0 auto;
  }
  .index__content .block_venue .box_image ul li a {
    display: block;
    position: relative;
    outline: none;
  }
  .index__content .block_venue .box_image ul li a img {
    width: 100%;
    height: auto;
  }
  .index__content .block_venue .box_image ul li a img.img_pc {
    display: none;
  }
  .index__content .block_venue .box_image ul li a img.img_sp {
    display: block;
  }
  .index__content .block_venue .box_image ul li a .inner {
    margin: 20px 0 0 0;
  }
  .index__content .block_venue .box_image ul li a .inner dl {
    width: 100%;
  }
  .index__content .block_venue .box_image ul li a .inner dl dt {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
  }
  .index__content .block_venue .box_image ul li a .inner dl dd {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
  }
  .index__content .block_venue .box_image ul li a .inner p.txt {
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .index__content .block_venue .box_image ul li a:hover {
    opacity: 1;
  }
  .index__content .block_venue .box_image ul li a:hover div {
    opacity: 1;
  }
  .index__content .block_cuisine {
    padding: 40px 0;
    text-align: center;
  }
  .index__content .block_cuisine .box_txt img {
    margin: 0 0 20px 0;
  }
  .index__content .block_cuisine .box_txt .catch {
    margin: 0 20px 20px 20px;
    color: #202020;
    font-size: 1.6rem;
  }
  .index__content .block_cuisine .box_txt .desc {
    margin: 0 20px;
    font-size: 1.2rem;
    line-height: 1.7;
  }
  .index__content .block_cuisine .box_txt a {
    margin: 30px auto 0;
  }
  .index__content .block_cuisine .box_image {
    display: none;
  }
  .index__content .block_dress {
    padding: 40px 0;
    text-align: center;
  }
  .index__content .block_dress.pc {
    display: none;
  }
  .index__content .block_dress.sp {
    display: block;
  }
  .index__content .block_dress .box_txt img {
    margin: 0 0 20px 0;
  }
  .index__content .block_dress .box_txt .catch {
    margin: 0 20px 20px 20px;
    color: #202020;
    font-size: 1.6rem;
  }
  .index__content .block_dress .box_txt .desc {
    margin: 0 20px;
    font-size: 1.2rem;
    line-height: 1.7;
  }
  .index__content .block_dress .box_txt a {
    margin: 30px auto 0;
  }
  .index__content .block_dress .box_image {
    display: none;
  }
  .index__content .block_fair {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    background: #f8f8f5;
  }
  .index__content .block_fair .pickup {
    padding: 0 30px 50px 30px;
  }
  .index__content .block_fair .pickup ul {
    width: 100%;
  }
  .index__content .block_fair .pickup ul li {
    padding: 0 5px;
  }
  .index__content .block_fair .pickup ul li a {
    outline: none;
  }
  .index__content .block_fair .pickup ul li figure {
    margin: 0 0 20px 0;
    padding-top: 72%;
    overflow: hidden;
    position: relative;
    border: 5px solid #fff;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  .index__content .block_fair .pickup ul li figure img {
    position: absolute;
    left: 50%;
    top: 0;
    max-width: none;
    height: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .index__content .block_fair .pickup ul li dl dt {
    margin: 0 0 10px 0;
    color: #5899B4;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .index__content .block_fair .pickup ul li dl dd {
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: left;
  }
  .index__content .block_fair .pickup .slick-next {
    top: 35%;
  }
  .index__content .block_fair .pickup .slick-prev {
    top: 35%;
  }
  .index__content .block_fair .calendar {
    margin: 0 20px;
  }
  .index__content .block_fair .calendar ul.pc li em {
    display: none;
  }
  .index__content .block_fair .calendar ul.pc li.next {
    display: none;
  }
  .index__content .block_fair .calendar ul.pc li.prev {
    display: none;
  }
  .index__content .block_fair .calendar ul.pc li.current {
    color: #9CC2D3;
    font-size: 1.2rem;
  }
  .index__content .block_fair .calendar ul.pc li.current span {
    font-size: 2rem;
  }
  .index__content .block_fair .calendar ul.sp {
    padding: 10px 0;
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .index__content .block_fair .calendar ul.sp li.prev {
    margin: 5px 0 0 0;
    padding: 0 0 0 15px;
    color: #5899B4;
    font-size: 1rem;
    position: relative;
  }
  .index__content .block_fair .calendar ul.sp li.prev span {
    font-size: 1.4rem;
  }
  .index__content .block_fair .calendar ul.sp li.prev:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 8px;
    height: 8px;
    border-left: 1px solid #5899B4;
    border-bottom: 1px solid #5899B4;
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
    transform: rotate(45deg) translate(-50%, -50%);
  }
  .index__content .block_fair .calendar ul.sp li.next {
    margin: 5px 0 0 0;
    padding: 0 15px 0 0;
    color: #5899B4;
    font-size: 1rem;
    position: relative;
  }
  .index__content .block_fair .calendar ul.sp li.next span {
    font-size: 1.4rem;
  }
  .index__content .block_fair .calendar ul.sp li.next:after {
    content: "";
    position: absolute;
    right: 4px;
    top: 8px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #5899B4;
    border-right: 1px solid #5899B4;
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
    transform: rotate(45deg) translate(-50%, -50%);
  }
  .index__content .block_fair .calendar ul.sp li.current {
    padding: 0 10px;
    font-size: 1.2rem;
    display: none;
  }
  .index__content .block_fair .calendar ul.sp li.current span {
    font-size: 2rem;
  }
  .index__content .block_fair .calendar table {
    width: 100%;
  }
  .index__content .block_fair .calendar table th:nth-child(6),
  .index__content .block_fair .calendar table td:nth-child(6) a {
    color: #0059b2;
  }
  .index__content .block_fair .calendar table th:nth-child(7),
  .index__content .block_fair .calendar table td:nth-child(7) a,
  .index__content .block_fair .calendar table td.holiday a,
  .index__content .block_fair .calendar table td.holiday {
    color: #d90000;
  }
  .index__content .block_fair .calendar table th {
    padding: 15px 0;
    font-size: 1.2rem;
  }
  .index__content .block_fair .calendar table td {
    padding: 10px 0;
    font-size: 1.6rem;
  }
  .index__content .block_fair .calendar table td a {
    text-decoration: underline;
  }
  .index__content .block_plan {
    padding: 40px 30px;
    text-align: center;
  }
  .index__content .block_plan ul {
    width: 100%;
  }
  .index__content .block_plan ul li {
    padding: 5px;
  }
  .index__content .block_plan ul li a {
    outline: none;
  }
  .index__content .block_plan ul li figure {
    margin: 0 0 20px 0;
    padding-top: 72%;
    overflow: hidden;
    position: relative;
    border: 5px solid #fff;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  .index__content .block_plan ul li figure img {
    position: absolute;
    left: 50%;
    top: 0;
    max-width: none;
    height: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .index__content .block_plan ul li dl dt {
    margin: 0 0 10px 0;
    color: #9CC2D3;
    font-size: 1.3rem;
    line-height: 1.5;
    text-align: left;
  }
  .index__content .block_plan ul li dl dd {
    color: #9CC2D3;
    font-size: 1.6rem;
    text-align: left;
  }
  .index__content .block_plan ul li .stroke {
    margin: 10px 0 0 0;
    padding: 5px 12px;
    color: #9CC2D3;
    font-size: 1.3rem;
    text-align: left;
    border: 1px #9CC2D3 solid;
    display: table;
  }
  .index__content .block_plan ul li .txt {
    margin: 15px 0 0 0;
    padding: 15px 0 0 0;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: left;
    border-top: 1px #dddddd solid;
  }
  .index__content .block_link {
    text-align: center;
  }
  .index__content .block_link ul {
    width: 100%;
    padding: 40px 20px 10px 20px;
  }
  .index__content .block_link ul li {
    margin: 0 0 30px 0;
  }
  .index__content .block_link ul li img {
    width: 100%;
    height: auto;
  }
  .index__content .block_link ul li .inner {
    margin: -25px 20px 0 20px;
    padding: 15px 10px 20px 10px;
    background: #f8f8f6;
    position: relative;
    z-index: 2;
  }
  .index__content .block_link ul li .inner dl dt {
    margin: 0 0 10px 0;
    color: #5899B4;
    font-size: 1.6rem;
  }
  .index__content .block_link ul li .inner dl dd {
    margin: 0 0 20px 0;
    color: #888;
    font-size: 1.2rem;
  }
  .index__content .block_link ul li .inner p.txt {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .index__content .block_banner {
    padding: 0 20px 20px;
    text-align: center;
  }
  .index__content .block_banner ul {
    width: 100%;
  }
  .index__content .block_banner ul li {
    margin: 0 0 20px 0;
  }

  .index__content .block_banner ul li img {
    width: 100%;
    height: auto;
  }



/* **************** insta ******************** */
  .index__content div.insta_container {
    width: auto;
    padding: 25px 0 0 0;
  }

  .index__content div.insta_container div.insta_wrapp {
    width: auto;
  }

  .index__content div.insta_container div.insta_wrapp div.insta_block {
    width: 90%;
    margin: 0 auto;
    padding: 15px 0 50px 0;
    overflow: hidden;
  }

  .index__content div.insta_container div.insta_wrapp div.insta_block ul.insta-card {
    width: auto;
    margin: 0 auto;
    overflow: hidden;
  }

  .index__content div.insta_container div.insta_wrapp div.insta_block ul.insta-card li {
    display: none;
  }

  .index__content div.insta_container div.insta_wrapp div.insta_block ul.insta-card li:nth-child(1),
  .index__content div.insta_container div.insta_wrapp div.insta_block ul.insta-card li:nth-child(2),
  .index__content div.insta_container div.insta_wrapp div.insta_block ul.insta-card li:nth-child(3),
  .index__content div.insta_container div.insta_wrapp div.insta_block ul.insta-card li:nth-child(4) {
    width: 48%;
    /*height: auto;*/
    display: block;
    margin: 0 0 15px 0;
    padding: 48% 0 0 0;
    overflow: hidden;
    text-align: center;
    position: relative;
  }

  .index__content div.insta_container div.insta_wrapp div.insta_block ul.insta-card li:nth-child(odd) {
    float: left;
  }

  .index__content div.insta_container div.insta_wrapp div.insta_block ul.insta-card li:nth-child(even) {
    float: right;
  }

  .index__content div.insta_container div.insta_wrapp div.insta_block ul.insta-card li span {
    width: auto;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }

  .index__content div.insta_container div.insta_wrapp div.insta_block ul.insta-card li img {
    width: auto;
    height: 100%;
    object-fit: cover;
  }
/* **************** insta ******************** */



}/* close sp */


@media print, screen and (min-width: 768px) {

/*
  .index__content div.block_pickup.indexB {
    margin-top: 80px;
  }
*/

  .index__content div.block_topics.indexB {
    margin-top: 80px;
  }


  .index__content div.block_plan.indexB {
    margin-top: 80px;
  }


  .index__content div.block_pickup.indexC {
    margin-top: 80px;
  }

}




@media print, screen and (max-width: 767px) {

  .index__content div.block_topics.indexB {
    background-color: #fff;
  }

  .index__content div.block_dress.sp {
    background-color: #F8F8F6;
  }

  .index__content div.block_topics.bg_gray.indexB {
    background-color: #F8F8F6;
  }

  .index__content div.block_banner.indexB {
    margin-top: 40px;
  }



}



#index .block_venue div.sp_btnone {display: block;}

@media print, screen and (max-width: 767px) {
  #index .block_venue div.sp_btnone {display: none;}

  #index .block_venue .box_txt {
    padding: 0;
  }
}


@media print, screen and (min-width: 768px) {
  .area {
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  .area .site {
    position: relative;
  }
  .area .site:nth-of-type(1) {
    background: url(../../../../img/image_1.jpg) no-repeat center center;
    background-size: cover;
  }
  .area .site:nth-of-type(2) {
    background: url(../../../../img/image_2.jpg) no-repeat center center;
    background-size: cover;
  }
  .area .site:nth-of-type(3) {
    background: url(https://www.ikk-wed.jp/hiroshima/assets/images/area/image_3.jpg) no-repeat center center;
    background-size: cover;
  }
  .area .site:nth-of-type(4) {
    background: url(https://www.ikk-wed.jp/hiroshima/assets/images/area/image_4.jpg) no-repeat center center;
    background-size: cover;
  }
  .area .site figure {
    overflow: hidden;
    position: relative;
    height: 100%;
  }
  .area .site figure img {
    /*position: absolute;
    left: 50%;
    top: 50%;
    max-width: none;
    transform: translate(-50%,-50%);*/
    display: none;
  }
  .area .site figure:after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  .area .site .txt {
    color: #ffffff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .area .site .txt h2 {
    font-size: 2.5rem;
  }
  .area .site .txt h2 span {
    font-size: 1.2rem;
  }
  .area .site .txt a {
    margin: 15px auto 0 auto;
    padding: 15px 80px;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1;
    border: 1px #ffffff solid;
    display: table;
  }
  .area .logo {
    width: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 1001;
  }
  .area .logo.pc {
    display: block;
  }
  .area .logo.sp {
    display: none;
  }

  .area_col2 {
    overflow: hidden;
  }
  .area_col2 .site {
    width: 50%;
    height: 100vh;
    float: right;
  }

  .area_col3 {
    overflow: hidden;
  }
  .area_col3 .site {
    width: 50%;
    height: 50%;
    float: left;
  }
  .area_col3 .site:first-of-type {
    width: 100%;
    float: none;
  }

  .area_col4 {
    overflow: hidden;
  }
  .area_col4 .site {
    width: 50%;
    height: 50%;
    float: left;
  }
}
@media print, screen and (max-width: 767px) {
  .area {
    width: 100vw;
    height: 100vh;
    background: #e6e6e6;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  .area .site {
    padding: 10px 10px 0 10px;
    height: calc((100vh - 82px) / 2);
    background: #e6e6e6;
    position: relative;
  }
  .area .site:last-child {
    padding: 10px;
  }
  .area .site figure {
    padding-top: 84%;
    overflow: hidden;
    position: relative;
  }
  .area .site figure img {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: none;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .area .site figure:after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  .area .site .txt {
    color: #ffffff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .area .site .txt h2 {
    font-size: 2.5rem;
  }
  .area .site .txt h2 span {
    font-size: 1.2rem;
  }
  .area .site .txt a {
    margin: 15px auto 0 auto;
    padding: 10px 30px;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1;
    border: 1px #ffffff solid;
    display: table;
  }
  .area .logo {
    padding: 10px 0;
    background: #ffffff;
    text-align: center;
  }
  .area .logo.pc {
    display: none;
  }
  .area .logo.sp {
    display: block;
  }
  .area .logo img {
    width: 150px;
  }
}














/**************** 2019.08 AB test ***************** */

@media print, screen and (min-width: 768px) {

  .abtempl08b div.index__content div.insta_container {
    padding: 0 0 80px 0;
  }

  .abtempl08c div.index__content div.block_link {
    padding: 80px 0 0 0;
  }


}/* close pc */



@media print, screen and (max-width: 767px) {

  .abtempl08b .index__content div.insta_container {
    padding: 0;
  }

  .abtempl08c div.index__content div.block_link {
    padding: 2.0rem 0 0 0;
  }


}/* close sp */
/**************** 2019.08 AB test ***************** */











@media (min-width:768px){
  .visible_pc {display: block;}
  .visible_sp {display: none;}

  .display_pc {display: inline;}
  .display_sp {display: none;}
}


@media (max-width:767px){
  .visible_sp {display: block;}
  .visible_pc {display: none;}
  .hidden_sp {display: none;}

  .display_pc {display: none;}
  .display_sp {display: inline;}
}







@media print, screen and (min-width: 768px) {




  /* popup */

  #index #popbanner>div{
    position:fixed;
    left: 10px;
    bottom: 0;
    width: 400px;
    background: #fff;
    border: 1px solid  #eee;
    padding: 10px;
    box-sizing: border-box;
    z-index: 10;
  }
  #index #popbanner img{
    max-width: 100%;
  }

  #index #popbanner .note strong{
    display: block;
    font-weight: normal;
    letter-spacing: .2em;
    line-height: 1;
    font-family:"游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E","ＭＳ Ｐ明朝", "MS PMincho", serif;
  }


/*----------------------------------------
	Open
------------------------------------------*/
  #index #popbanner .open{
    -webkit-transition:transform .3s ease-out,opacity .3s ease-out ;
    -moz-transition:transform .3s ease-out, opacity .3s ease-out;
    -ms-transition:transform .3s ease-out, opacity .3s ease-out;
    transition:transform .3s ease-out, opacity .3s ease-out;
  }

  #index #popbanner .open.hide{
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%);
  }

  #index #popbanner .open p{
    text-align: center;
  }

  #index #popbanner .open .banner{
    margin-bottom: 15px;
  }

  #index #popbanner .open .note{
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.5;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", 'Noto Serif JP', "MS P明朝", "MS PMincho", serif;
  }

  #index #popbanner .open .note strong{
    margin-bottom: 10px;
    font-size: 13px;
    color: #AE8B35;
  }

  #index #popbanner .open .note em {
    color: #E75C60;
    font-size: 13px;
  }


  #index #popbanner .open .view a{
    display: block;
    width: 90%;
    border: 1px solid  #5899B4;
    margin: 0 auto;
    padding: 10px;
    font-size: 13px;
    letter-spacing: .1em;
    line-height: 1;
    color: #5899B4;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", 'Noto Serif JP', "MS P明朝", "MS PMincho", serif;
  }

  #index #popbanner .open .view a::after{
    content:"";
    display:inline-block;
    width:5px;height:5px;
    border-top:1px solid #5899B4;
    border-right:1px solid #5899B4;
    -webkit-transform:translateY(-40%) rotate(45deg) ;
    -moz-transform:translateY(-40%) rotate(45deg) ;
    transform:translateY(-40%) rotate(45deg) ;
    margin-left: 10px;
  }

  #index #popbanner .open .close{
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
    background: #5899B4;
    text-indent: -9999px;
    font-size: 0;
  }

  #index #popbanner .open .close::before,
  #index #popbanner .open .close::after{
    content: "";
    display: block;
    width: 1px;
    height: 15px;
    background: #fff;
    position:absolute;
    left:50%;
    top:50%;
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
    opacity: .7;
  }

  #index #popbanner .open .close::before{
    -webkit-transform:translate(-50%,-50%) rotate(45deg);
    -moz-transform:translate(-50%,-50%) rotate(45deg);
    transform:translate(-50%,-50%) rotate(45deg);
  }

  #index #popbanner .open .close::after{
    -webkit-transform:translate(-50%,-50%) rotate(-45deg);
    -moz-transform:translate(-50%,-50%) rotate(-45deg);
    transform:translate(-50%,-50%) rotate(-45deg);
  }

  #index #popbanner .open .close:hover{
    cursor: pointer;
  }


/*----------------------------------------
	Thumbnail
------------------------------------------*/
  #index #popbanner .thumb {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition:transform .3s ease-out,opacity .3s ease-out ;
    -moz-transition:transform .3s ease-out, opacity .3s ease-out;
    -ms-transition:transform .3s ease-out, opacity .3s ease-out;
    transition:transform .3s ease-out, opacity .3s ease-out;
  }

  #index #popbanner .thumb.show{
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  #index #popbanner .thumb .banner{
    position: relative;
  }

  #index #popbanner .thumb .banner::before{
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.50);
  }

  #index #popbanner .thumb .note{
    position: absolute;
    width: 90%;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 12px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", 'Noto Serif JP', "MS P明朝", "MS PMincho", serif;
  }

  #index #popbanner .thumb .note strong{
    font-size: 11px;
    margin: 0 0 3px 0;
    line-height: 1.8em;
    font-family:"游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E","ＭＳ Ｐ明朝", "MS PMincho", serif;
  }



  #index #popbanner .thumb p{
    color: #fff;
  }


  #index #popbanner .thumb .view{
    width: 22px;
    height: 22px;
    background: #5899B4;
    position: absolute;
    top: 10px;
    right: 10px;
    text-indent: -9999px;
    font-size: 0;
  }

  #index #popbanner .thumb .view::before{
    display: inline-block;
    content: "\025b2";
    position:absolute;
    left:50%;
    top:50%;
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
    text-indent: 0;
    font-size: 8px;
    line-height: 1;
    color: #fff;
  }

  #index #popbanner .thumb:hover{
    cursor: pointer;
  }


  /* popup */




}/* close pc */




@media print, screen and (max-width: 767px) {

  /* popup */
  #index #popbanner{
    display: none;
    width: 100%;
    height: 100vh;
    position:fixed;
    left: 0;top: 0;
    background: rgba(0,0,0,0.30);
    z-index: 9999;
  }


/*----------------------------------------
	Open
------------------------------------------*/
  #index #popbanner .open{
    width: 85%;
    position:absolute;
    left:50%;
    top:50%;
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
    background: #fff;
    border: 1px solid  #eee;
    padding: 10px;
    box-sizing: border-box;
  }

  #index #popbanner .open p{
    text-align: center;
  }

  #index #popbanner .open .banner{
    background: url(../../../../img/popbanner_sp.png) center top no-repeat;
    margin-bottom: 15px;
    padding-top: 100%;
    background-size: cover;
  }

  #index #popbanner .open .banner img{
    display: none;
  }

  #index #popbanner .open .note{
    margin-bottom: 15px;
    font-size: 11px;
    line-height: 1.5;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", 'Noto Serif JP', "MS P明朝", "MS PMincho", serif;
}
  #index #popbanner .open .note strong{
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: normal;
    font-family:"游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E","ＭＳ Ｐ明朝", "MS PMincho", serif;
    letter-spacing: .2em;
    line-height: 1;
    color: #5899B4;
  }

  #index #popbanner .open .note em {
    background-color: #E75C60;
    font-size: 13px;
  }



  #index #popbanner .open .view a{
    display: block;
    width: 90%;
    border: 1px solid  #5899B4;
    margin: 0 auto;
    padding: 10px;
    font-size: 13px;
    letter-spacing: .1em;
    line-height: 1;
    color: #5899B4;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", 'Noto Serif JP', "MS P明朝", "MS PMincho", serif;
  }

  #index #popbanner .open .view a::after{
    content:"";
    display:inline-block;
    width:5px;
    height:5px;
    border-top:1px solid #5899B4;
    border-right:1px solid #5899B4;
    -webkit-transform:translateY(-40%) rotate(45deg) ;
    -moz-transform:translateY(-40%) rotate(45deg) ;
    transform:translateY(-40%) rotate(45deg) ;
    margin-left: 10px;
  }

  #index #popbanner .open .close{
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
    background: #5899B4;
    text-indent: -9999px;
    font-size: 0;
  }

  #index #popbanner .open .close::before,
  #index #popbanner .open .close::after{
    content: "";
    display: block;
    width: 1px;
    height: 15px;
    background: #fff;
    position:absolute;
    left:50%;top:50%;
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
    opacity: .7;
  }

  #index #popbanner .open .close::before{
    -webkit-transform:translate(-50%,-50%) rotate(45deg);
    -moz-transform:translate(-50%,-50%) rotate(45deg);
     transform:translate(-50%,-50%) rotate(45deg);
  }

  #index #popbanner .open .close::after{
    -webkit-transform:translate(-50%,-50%) rotate(-45deg);
    -moz-transform:translate(-50%,-50%) rotate(-45deg);
     transform:translate(-50%,-50%) rotate(-45deg);
  }

  #index #popbanner .open .close:hover{
    cursor: pointer;
  }


  #index #popbanner .thumb {
    display: none;
  }

  /* popup */



}/* close sp */



