@charset "UTF-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/****************************************

          $breakpoint

*****************************************/
/****************************************

					GENERAL SETTING

*****************************************/
*, *:before, *:after {
  box-sizing: border-box;
}

html,
body {
  color: #333;
  font-family: "Roboto", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "游ゴシック体", "Source Sans Pro", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 3vw;
  }
}

a {
  text-decoration: none;
  transition: 0.4s;
}
a:link {
  color: #333;
}
a:hover {
  color: #333;
}
a:visited {
  color: #333;
}
a:active {
  color: #333;
}

a.fade {
  transition: 0.4s;
}
a.fade:hover {
  opacity: 0.7;
}

img {
  vertical-align: top;
  max-width: 100%;
  max-height: 100%;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .pc_inline {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .pc_inline {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .sp_inline {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp_inline {
    display: inline;
  }
}

.align_center {
  text-align: center !important;
}

.align_right {
  text-align: right !important;
}

.align_left {
  text-align: left !important;
}

#wrap {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  #wrap {
    display: block;
  }
}
#wrap #nav {
  width: 200px;
  min-width: 200px;
}
@media screen and (max-width: 768px) {
  #wrap #nav {
    width: auto;
  }
}
#wrap #content {
  width: calc(100% - 200px);
}
@media screen and (max-width: 768px) {
  #wrap #content {
    width: auto;
  }
}

#nav {
  background: #FFF;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #nav {
    position: fixed;
    width: 100% !important;
    height: 16vw;
    padding: 2vw;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
  }
}
#nav .head_wrap {
  background: #fff;
  box-shadow: 7px 0px 15px -14px #777777;
  position: fixed;
  left: 0;
  width: 200px;
  top: 0;
  padding-top: 15px;
  height: 100%;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #nav .head_wrap {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    padding-top: 0;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
#nav h1 {
  padding: 0 13px;
}
@media screen and (max-width: 768px) {
  #nav h1 {
    padding: 0;
    width: 18vw;
  }
}
@media screen and (max-width: 768px) {
  #nav .nav .btn-gnavi {
    padding: 1vw;
  }
}
#nav .nav .btn-gnavi span {
  background: #fff;
}
@media screen and (max-width: 768px) {
  #nav .nav .btn-gnavi span {
    position: absolute;
    width: 80%;
    height: 1px;
    transition: 0.4s;
  }
  #nav .nav .btn-gnavi span:nth-child(1) {
    top: 2.5vw;
  }
  #nav .nav .btn-gnavi span:nth-child(2) {
    top: 5vw;
  }
  #nav .nav .btn-gnavi span:nth-child(3) {
    top: 7.5vw;
  }
}
@media screen and (max-width: 768px) {
  #nav .nav .btn-gnavi {
    position: relative;
    width: 10vw;
    height: 10vw;
    z-index: 5;
    background: #73bdc8;
    cursor: pointer;
  }
  .open #nav .nav .btn-gnavi span {
    background: #fff;
    transition: all 0.5s;
    transition: 0.4s;
  }
  .open #nav .nav .btn-gnavi span:nth-of-type(1) {
    -webkit-transform: translateY(2.5vw) rotate(-45deg);
    transform: translateY(2.5vw) rotate(-45deg);
    top: 2.5;
  }
  .open #nav .nav .btn-gnavi span:nth-of-type(2) {
    opacity: 0;
    top: 5vw;
  }
  .open #nav .nav .btn-gnavi span:nth-of-type(3) {
    -webkit-transform: translateY(-2.5vw) rotate(45deg);
    transform: translateY(-2.5vw) rotate(45deg);
    top: 7.5vw;
  }
}
#nav .nav nav {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  #nav .nav nav {
    background: #fff;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  #nav .nav nav {
    display: none;
    position: fixed;
    top: 14vw;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
  }
}
#nav .nav nav > ul {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 0 13px;
}
@media screen and (max-width: 768px) {
  #nav .nav nav > ul {
    font-size: 4.6vw;
    display: block;
    padding: 0;
    background: url(../img/sp_bglogo.png) center center no-repeat;
    background-size: 80% auto;
  }
}
#nav .nav nav > ul li {
  letter-spacing: -0.05em;
  border-bottom: 1px solid #e4e4e4;
}
@media screen and (max-width: 768px) {
  #nav .nav nav > ul li {
    letter-spacing: 0;
  }
}
#nav .nav nav > ul li.nolink a {
  color: #d0d0d0;
  pointer-events: none;
}
#nav .nav nav > ul li a {
  display: block;
  color: #333;
  padding: 10px 0;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #nav .nav nav > ul li a {
    padding: 4vw 0;
  }
}
@media screen and (max-width: 768px) {
  .open #nav .nav nav {
    display: block;
    transition: 0.4s;
  }
  .open #nav .nav nav > ul {
    text-align: center;
  }
  .open #nav .nav nav > ul li a {
    display: block;
  }
  .open #nav .nav nav > ul li:first-child a {
    border-top: 1px solid #fff;
  }
}
#nav .nav nav .banners {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #nav .nav nav .banners {
    margin-top: 6vw;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-end;
  }
}
#nav .nav nav .banners .banner01 {
  width: 79.5%;
  margin: 12px auto 0;
}
@media screen and (max-width: 768px) {
  #nav .nav nav .banners .banner01 {
    width: 40vw;
    margin: 6vw 0 0;
  }
}
#nav .nav nav .banners .banner02 {
  width: 62%;
  margin: 12px auto 0;
  border-top: none;
}
@media screen and (max-width: 768px) {
  #nav .nav nav .banners .banner02 {
    width: 31.2vw;
    margin: 0 2vw;
  }
}
#nav .nav nav .banners .banner03 {
  width: 58.5%;
  margin: 12px auto 0;
}
@media screen and (max-width: 768px) {
  #nav .nav nav .banners .banner03 {
    width: 29.3vw;
    margin: 6vw 0 0;
  }
}
#nav .nav nav .copy {
  font-size: 12px;
  color: #717171;
  text-align: center;
  line-height: 1.2;
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  main {
    padding-top: 16vw;
  }
}
main section {
  min-width: 990px;
}
@media screen and (max-width: 768px) {
  main section {
    min-width: 0;
  }
}
main p {
  letter-spacing: 0.04em;
  /*0.05em edit*/
}
main img {
  image-rendering: -webkit-optimize-contrast;
}
main .inner {
  width: 990px;
  margin: 0 auto;
  transition: width 0.4s ease 0s;
}
@media screen and (max-width: 768px) {
  main .inner {
    width: auto;
    padding: 5vw 4vw;
  }
}
main .hero .hero_top {
  position: relative;
  overflow: hidden;
}
main .hero .hero_top .hero_ttl {
  position: absolute;
  top: 2.96%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  width: 95.92%;
}
@media screen and (max-width: 768px) {
  main .hero .hero_top .hero_ttl {
    width: 95.6%;
  }
}
main .hero .hero_top .hero_ttl img {
  width: 100%;
}
main .hero .hero_fade {
  opacity: 0;
  transition: 0.4s;
  clip-path: inset(0 4.07% 0 0 round 0 0 100px 0);
}
main .hero .hero_fade.slick-initialized {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  main .hero .hero_fade {
    clip-path: inset(0 0 0 0 round 0 0 12vw 0);
    height: 92.13vw;
    width: 100%;
  }
  main .hero .hero_fade .slick-list, main .hero .hero_fade .slick-track {
    height: 100%;
  }
  main .hero .hero_fade .slick-img {
    width: 100%;
    height: 100%;
  }
  main .hero .hero_fade img {
    height: 100%;
    max-width: none;
    width: auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
main .hero .hero_slider {
  margin-top: 1px;
  opacity: 0;
  transition: 0.4s;
  height: 230px;
}
main .hero .hero_slider.slick-initialized {
  opacity: 1;
}
main .hero .hero_slider .slick-slide {
  width: 347px !important;
  height: 230px;
}
main .hero .hero_slider .slick-img {
  margin: 1px;
}
main .hero .hero_slider .slick-img img {
  width: 100%;
}
main .hero .box {
  width: 870px;
  margin: 80px auto 0;
  border: 4px solid #73bdc8;
  background: #fff;
  border-radius: 0 60px 0 60px;
  padding: 50px 48px 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .hero .box {
    width: auto;
    padding: 9vw 5vw 5vw;
    margin: 8vw 3vw 0;
  }
}
main .hero .box .day {
  color: #fff;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.15em;
  background: #73bdc8;
  position: absolute;
  padding: 10px 26px;
  border-radius: 10px;
  top: -1em;
  left: -60px;
  margin-right: -50%;
}
@media screen and (max-width: 768px) {
  main .hero .box .day {
    font-size: 3.5vw;
    padding: 2.5vw 3vw;
    left: -2vw;
  }
}
main .hero .box .day:before {
  content: "";
  position: absolute;
  top: -18px;
  right: 60px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 18px 18px;
  border-color: transparent transparent #73bdc8 transparent;
}
main .hero .box .day span.num {
  font-family: "Roboto Condensed", "Roboto", "Noto Sans JP", "游ゴシック", YuGothic, "游ゴシック体", "Source Sans Pro", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", sans-serif;
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  main .hero .box .day span.num {
    font-size: 6vw;
  }
}
main .hero .box .day span.sm {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  main .hero .box .day span.sm {
    font-size: 3.5vw;
  }
}
main .hero .box p {
  font-size: 18px;
  text-align: left;
  text-align: justify;
  line-height: 2;
  margin-top: 1em;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 575.98px) {
  main .hero .box p {
    font-size: 3.5vw;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  main .hero .box p {
    font-size: 2.2vw;
  }
}
main .hero .box p:first-of-type {
  margin-top: 0;
}
main .hero .btn01 {
  display: table;
  margin: 35px auto 0;
  transition: 0.4s;
}
main .hero .btn01:hover {
  opacity: 0.8;
}
main .hero .btn01 .t1 {
  display: block;
  background: #fff;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding: 0.1em 0;
}
@media screen and (max-width: 575.98px) {
  main .hero .btn01 .t1 {
    font-size: 3.3vw;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  main .hero .btn01 .t1 {
    font-size: 2.2vw;
  }
}
main .hero .btn01 .t1:before {
  content: "";
  display: inline-block;
  border-left: 5px solid transparent;
  border-right: 5px solid #e65a14;
  border-top: 5px solid transparent;
  border-bottom: 5px solid #e65a14;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%) rotate(-45deg);
}
main .hero .btn01 .t2 {
  display: block;
  background: #e9e9e9;
  color: #686868;
  font-size: 12px;
  padding: 0.1em 18px;
}
main .map {
  background: #fff;
  text-align: center;
}
main .map .inner {
  padding: 50px 0 75px;
}
@media screen and (max-width: 768px) {
  main .map .inner {
    padding: 5vw 3vw;
  }
}
main #miryoku {
  position: relative;
}
main #miryoku .miryoku_ttl {
  text-align: right;
}
main #miryoku .inner {
  position: relative;
}
main #miryoku .miryoku_txt {
  font-size: 16.2px;
  letter-spacing: 0;
  line-height: 2.235;
}
main #miryoku .miryoku_txt p {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  main #miryoku .miryoku_txt p {
    font-size: 3.2vw;
    text-align: justify;
    margin-top: 1.2em;
  }
}
main #miryoku .miryoku_txt p:first-child {
  margin-top: 0;
}
main #miryoku .miryoku_img_pc {
  position: absolute;
  top: 338px;
  right: 30px;
}
main #miryoku .miryoku_img_sp01 {
  margin-top: 3vw;
}
main #miryoku .miryoku_img_sp02 {
  margin-top: 4vw;
}
main #miryoku .miryoku_img_sp03 {
  margin-top: 20px;
}
main #miryoku .miryoku_img_sp03 img {
  display: block;
}
@media screen and (max-width: 768px) {
  main #miryoku .miryoku_img_sp03 {
    margin-top: 4vw;
  }
}
main #miryoku .txt01 {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  main #miryoku .txt01 {
    margin-top: 2vw;
  }
}
main #miryoku .txt02 {
  width: 530px;
  margin-top: 270px;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  main #miryoku .txt02 {
    width: auto;
    margin-top: 3vw;
  }
}
main #miryoku .btn {
  margin: 0 auto;
  margin-top: 50px;
  display: table;
  color: #98c15e;
  border-radius: 31.5px;
  background: #fff;
  border: 2px solid #98c15e;
  font-weight: 700;
  font-size: 17px;
  padding: 0.8em 1.8em 0.7em;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  main #miryoku .btn {
    font-size: 3vw;
    margin-top: 8vw;
  }
}
main #miryoku .btn:hover {
  opacity: 0.7;
  transition: 0.4s;
}
main #miryoku .btn span:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 17px;
  background: url(../img/arrow.png) 0 0 no-repeat;
  background-size: contain;
  margin-left: 1em;
  position: relative;
  top: 1px;
}
@media screen and (max-width: 768px) {
  main #miryoku .btn span:after {
    width: 4vw;
    height: 3vw;
    background-size: contain;
  }
}
main .home_photocon {
  text-align: center;
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  main .home_photocon {
    margin-top: 8vw;
  }
}
main .home_photocon .txt {
  font-size: 18px;
  margin: 34px 0 30px;
}
@media screen and (max-width: 768px) {
  main .home_photocon .txt {
    text-align: left;
    text-align: justify;
  }
}
main .home_photocon .day {
  display: table;
  margin: 40px auto 0;
  font-weight: 700;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  border-radius: 10px;
  letter-spacing: 0.15em;
  background: #72bbc6;
  padding: 10px 26px;
}
@media screen and (max-width: 768px) {
  main .home_photocon .day {
    font-size: 3.5vw;
    padding: 2.5vw 3vw;
  }
}
main .home_photocon .day span.num {
  font-family: "Roboto Condensed", "Roboto", "Noto Sans JP", "游ゴシック", YuGothic, "游ゴシック体", "Source Sans Pro", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", sans-serif;
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  main .home_photocon .day span.num {
    font-size: 6vw;
  }
}
main .home_photocon .day span.sm {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  main .home_photocon .day span.sm {
    font-size: 3.5vw;
  }
}
main .home_photocon .btn {
  margin: 0 auto;
  margin-top: 50px;
  display: table;
  color: #98c15e;
  border-radius: 31.5px;
  background: #fff;
  border: 2px solid #98c15e;
  font-weight: 700;
  font-size: 17px;
  padding: 0.8em 1.8em 0.7em;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  main .home_photocon .btn {
    font-size: 3vw;
    margin-top: 8vw;
  }
}
main .home_photocon .btn:hover {
  opacity: 0.7;
  transition: 0.4s;
}
main .home_photocon .btn span:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 17px;
  background: url(../img/arrow.png) 0 0 no-repeat;
  background-size: contain;
  margin-left: 1em;
  position: relative;
  top: 1px;
}
@media screen and (max-width: 768px) {
  main .home_photocon .btn span:after {
    width: 4vw;
    height: 3vw;
    background-size: contain;
  }
}
main .home_photocon .btnArea {
  display: table;
  margin: 40px auto 0;
  text-align: left;
  text-align: justify;
  margin-top: 42px;
}
main .home_photocon .btnArea a {
  font-size: 17px;
  background: #f5b90a;
  border-radius: 6px;
  padding: 14px 20px 14px 40px;
  position: relative;
  z-index: 1;
  margin-left: 1em;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  main .home_photocon .btnArea a {
    margin-left: 0;
    font-size: 3.1vw;
    margin-right: 1vw;
    margin-bottom: 3vw;
    padding: 2vw 1.5vw 2vw 6vw;
  }
}
main .home_photocon .btnArea a:hover {
  opacity: 0.8;
}
main .home_photocon .btnArea a:first-of-type {
  margin-left: 0;
}
main .home_photocon .btnArea a:before {
  content: "";
  display: inline-block;
  border-left: 5px solid transparent;
  border-right: 5px solid #e65a14;
  border-top: 5px solid transparent;
  border-bottom: 5px solid #e65a14;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  main .home_photocon .btnArea a:before {
    left: 1vw;
  }
}
main .home_photocon .btnArea a:after {
  content: "";
  background: #4e3a01;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 6px;
}
main .tour {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  main .tour {
    margin-top: 8vw;
  }
}
main .tour .inner {
  padding: 70px 30px 0;
}
@media screen and (max-width: 768px) {
  main .tour .inner {
    padding: 0 4vw;
  }
}
@media screen and (max-width: 768px) {
  main .tour .sTtl img {
    width: 30vw;
  }
}
main .tour .bTtl {
  font-size: 20px;
  color: #98c15e;
}
main .tour .bTtl span {
  background: linear-gradient(transparent 40%, #f6f6c0 40%);
}
main .tour .blockWrap {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -30px;
  margin-left: -15px;
  margin-right: -15px;
}
@media screen and (max-width: 768px) {
  main .tour .blockWrap {
    margin: 0;
  }
}
main .tour .blockWrap .block {
  padding-bottom: 120px;
  position: relative;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  border: 1px solid #a1c66f;
  background: #fffff0;
  width: 450px;
  margin-top: 30px;
  margin-left: 15px;
  margin-right: 15px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  main .tour .blockWrap .block {
    margin-top: 6vw;
    margin-left: 0;
    margin-right: 0;
    width: auto;
  }
}
main .tour .blockWrap .block .txt {
  padding: 20px 20px 0;
  text-align: left;
  text-align: justify;
}
main .tour .blockWrap .block .txt .in .bTtl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  main .tour .blockWrap .block .txt .in .bTtl {
    font-size: 4vw;
  }
}
main .tour .blockWrap .block .txt .in p {
  font-size: 15px;
  margin-top: 1em;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  main .tour .blockWrap .block .txt .in p {
    font-size: 3.2vw;
  }
}
main .tour .blockWrap .block .txt .in p a {
  text-decoration: underline;
}
main .tour .blockWrap .block .btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  margin-right: -50%;
  display: table;
  color: #fff;
  border-radius: 31.5px;
  background: #73bdc8;
  font-weight: 700;
  font-size: 17px;
  padding: 0.8em 1.8em 0.7em;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  main .tour .blockWrap .block .btn {
    font-size: 3vw;
  }
}
main .tour .blockWrap .block .btn:hover {
  opacity: 0.7;
  transition: 0.4s;
}
main .tour .blockWrap .block .btn span:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 17px;
  background: url(../img/arrow_w.png) 0 0 no-repeat;
  background-size: contain;
  margin-left: 1em;
  position: relative;
  top: 1px;
}
@media screen and (max-width: 768px) {
  main .tour .blockWrap .block .btn span:after {
    width: 4vw;
    height: 3vw;
    background-size: contain;
  }
}
main .btn02wrap {
  margin-left: 100px;
  margin-right: 100px;
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  main .btn02wrap {
    margin-left: auto;
    margin-right: auto;
    padding: 0 5vw;
  }
}
main .btn02wrap p {
  font-size: 16px;
  margin-top: 0.5em;
}
@media screen and (max-width: 575.98px) {
  main .btn02wrap p {
    font-size: 3vw;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  main .btn02wrap p {
    font-size: 2.2vw;
  }
}
main .contact_block {
  padding: 70px 0 70px;
}
@media screen and (max-width: 768px) {
  main .contact_block {
    padding: 6vw 0;
  }
}
main .contact_block .inner {
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  main .contact_block .inner {
    padding: 5vw;
  }
}
main .contact_block .contact {
  text-align: center;
  display: table;
  border: 2px solid #acacac;
  border-radius: 10px;
  padding: 20px 80px;
  margin: 0 auto;
}
main .contact_block .contact .ttl {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.3em;
}
@media screen and (max-width: 768px) {
  main .contact_block .contact .ttl {
    font-size: 3.2vw;
  }
}
main .contact_block .contact p {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  main .contact_block .contact p {
    font-size: 3.2vw;
  }
}
main .credit {
  background: #f5f5f5;
  font-size: 14px;
}
main .credit .inner {
  padding: 20px 60px;
}
main .sTtl {
  display: table;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  main .sTtl.ttl01 {
    margin: 12vw auto 0;
    width: 50%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  main .sTtl.ttl02 {
    margin: 12vw auto 0;
    width: 50%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  main .sTtl.ttl03 {
    margin: 12vw auto 0;
    width: 50%;
    text-align: center;
  }
}
main .btn02 {
  margin-top: 1em;
  color: #fff;
  background: #e65a14;
  border: 1px solid #181818;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  padding: 5px;
  display: block;
  text-align: center;
  position: relative;
  transition: 0.4s;
}
main .btn02:hover {
  opacity: 0.8;
}
main .btn02.big {
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  main .btn02.big {
    font-size: 5vw;
  }
}
main .btn02:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 15px;
  height: 15px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translate(0, -50%) rotate(-45deg);
}
main .btn02-n {
  opacity: 0.3;
  font-size: 26px;
  margin-top: 1em;
  color: #fff;
  background: #e65a14;
  border: 1px solid #181818;
  border-radius: 50px;
  font-weight: 700;
  padding: 5px;
  display: block;
  text-align: center;
  position: relative;
  -moz-transition: ease 0.4s;
  -o-transition: ease 0.4s;
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
}
main .btn02-n.big {
  font-size: 26px;
}
@media screen and (max-width: 575.98px) {
  main .btn02.big {
    font-size: 5vw;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  main .btn02.big {
    font-size: 2.8vw;
  }
}
main .btnArea {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
main .btnArea .btn {
  margin: 0 auto;
  display: table;
  color: #98c15e;
  border-radius: 31.5px;
  background: #fff;
  border: 2px solid #98c15e;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 16px;
  padding: 0.8em 1.2em 0.7em;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  main .btnArea .btn {
    font-size: 3vw;
  }
}
main .btnArea .btn:hover {
  opacity: 0.7;
  transition: 0.4s;
}
main .btnArea .btn span:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 17px;
  background: url(../img/arrow.png) 0 0 no-repeat;
  background-size: contain;
  margin-left: 1em;
  position: relative;
  top: 1px;
}
@media screen and (max-width: 768px) {
  main .btnArea .btn span:after {
    width: 4vw;
    height: 3vw;
    background-size: contain;
  }
}
main .copy_list {
  text-align: right;
  padding: 20px;
  font-size: 14px;
}
main .photocon {
  text-align: center;
}
main .photocon .inner {
  padding: 50px 0 0;
}
@media screen and (max-width: 768px) {
  main .photocon .inner {
    padding: 8vw 5vw 0;
  }
}
main .photocon .lead {
  text-align: center;
  font-size: 17px;
  margin: 34px 0 30px;
  padding: 0 40px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  main .photocon .lead {
    font-size: 3.2vw;
    margin: 6vw 0 0;
    padding: 0;
    text-align: left;
    text-align: justify;
  }
}
main .photocon .day {
  display: table;
  margin: 40px auto 0;
  font-weight: 700;
  color: #fff;
  font-size: 24px;
  border-radius: 10px;
  line-height: 1;
  letter-spacing: 0.05em;
  background: #72bbc6;
  padding: 10px 26px;
}
@media screen and (max-width: 768px) {
  main .photocon .day {
    font-size: 3.5vw;
    padding: 2.5vw 3vw;
    margin-top: 4vw;
  }
}
main .photocon .day span.num {
  font-family: "Roboto Condensed", "Roboto", "Noto Sans JP", "游ゴシック", YuGothic, "游ゴシック体", "Source Sans Pro", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", sans-serif;
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  main .photocon .day span.num {
    font-size: 6vw;
  }
}
main .photocon .day span.sm {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  main .photocon .day span.sm {
    font-size: 3.5vw;
  }
}
main .photocon .box {
  text-align: left;
  text-align: justify;
  width: 760px;
  margin: 40px auto 0;
  background: #f9f4ef;
  border-radius: 15px;
  padding: 35px 35px;
}
@media screen and (max-width: 768px) {
  main .photocon .box {
    width: auto;
    margin: 6vw auto 0;
    padding: 5vw;
  }
}
main .photocon .box .boxttl {
  line-height: 1;
  font-weight: 700;
  font-size: 24px;
  border-left: 5px solid #73bdc8;
  padding-left: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  main .photocon .box .boxttl {
    font-size: 4.2vw;
    margin-bottom: 2vw;
  }
}
main .photocon .box > div {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  main .photocon .box > div {
    margin-top: 4vw;
  }
}
main .photocon .box > div:first-child {
  margin-top: 0;
}
main .photocon .box > div p, main .photocon .box > div ul {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  main .photocon .box > div p, main .photocon .box > div ul {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 768px) {
  main .photocon .box .btnArea {
    flex-direction: column;
    margin-top: 0;
  }
  main .photocon .box .btnArea a {
    margin-top: 3vw;
    min-width: 70vw;
    text-align: center;
  }
}
main .photocon_area {
  padding: 40px 0 40px;
}
@media screen and (max-width: 768px) {
  main .photocon_area {
    padding: 6vw 0;
  }
}
main .photocon_area .boxttl {
  line-height: 1;
  font-weight: 700;
  font-size: 24px;
  border-left: 5px solid #73bdc8;
  padding-left: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  main .photocon_area .boxttl {
    font-size: 4.2vw;
    margin-bottom: 2vw;
  }
}
main .instagram_box .inner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  padding: 0 40px 80px;
}
@media screen and (max-width: 768px) {
  main .instagram_box .inner {
    display: block;
    padding: 0 5vw 8vw;
  }
}
main .instagram_box .inner > div {
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  main .instagram_box .inner > div {
    margin: 0;
    margin-top: 5vw;
  }
  main .instagram_box .inner > div:first-child {
    margin-top: 0;
  }
}
main .photocon_detail {
  padding: 40px 0 80px;
}
main .photocon_detail .inner {
  padding: 0;
}
@media screen and (max-width: 768px) {
  main .photocon_detail .inner {
    padding: 0 4vw;
  }
}
main .photocon_detail .photocon_ttl_fukidashi {
  position: relative;
  display: table;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.1em;
  background: #73bdc8;
  padding: 0.4em 1.2em 0.3em;
  border-radius: 10px;
  margin-bottom: 42px;
}
@media screen and (max-width: 768px) {
  main .photocon_detail .photocon_ttl_fukidashi {
    font-size: 5.5vw;
    padding: 2.5vw 3vw 2vw;
    left: -2vw;
  }
}
main .photocon_detail .photocon_ttl_fukidashi:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 60px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 18px 18px 0;
  border-color: transparent #73bdc8 transparent transparent;
}
main .photocon_detail .photocon_ttl {
  font-weight: 700;
  font-size: 28px;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  main .photocon_detail .photocon_ttl {
    margin-bottom: 5vw;
  }
}
@media screen and (max-width: 768px) {
  main .photocon_detail .photocon_ttl._01 img {
    width: 60vw;
  }
}
@media screen and (max-width: 768px) {
  main .photocon_detail .photocon_ttl._02 img {
    width: 62vw;
  }
}
main .photocon_detail .dotlist li {
  position: relative;
  padding-left: 1.2em;
  list-style: none;
}
main .photocon_detail .dotlist li:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #515151;
  border-radius: 50%;
}
main .photocon_detail .photocon_table {
  letter-spacing: 0;
  font-size: 16px;
  padding: 0 80px;
}
main .photocon_detail .photocon_table._02 {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  main .photocon_detail .photocon_table._02 {
    margin-top: 10vw;
  }
}
@media screen and (max-width: 768px) {
  main .photocon_detail .photocon_table {
    font-size: 3.2vw;
    padding: 0;
  }
}
main .photocon_detail .photocon_table .btn {
  margin-top: 1.4em;
  display: table;
  color: #98c15e;
  border-radius: 31.5px;
  background: #fff;
  border: 2px solid #98c15e;
  font-weight: 700;
  font-size: 17px;
  padding: 0.8em 1.8em 0.7em;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  main .photocon_detail .photocon_table .btn {
    font-size: 3vw;
    margin-top: 3vw;
  }
}
main .photocon_detail .photocon_table .btn:hover {
  opacity: 0.7;
  transition: 0.4s;
}
main .photocon_detail .photocon_table .btn span:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 17px;
  background: url(../img/arrow.png) 0 0 no-repeat;
  background-size: contain;
  margin-left: 1em;
  position: relative;
  top: 1px;
}
@media screen and (max-width: 768px) {
  main .photocon_detail .photocon_table .btn span:after {
    width: 4vw;
    height: 3vw;
    background-size: contain;
  }
}
main .photocon_detail .photocon_table .block {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  main .photocon_detail .photocon_table .block {
    display: block;
    margin-top: 5vw;
  }
}
main .photocon_detail .photocon_table .block:first-child {
  margin-top: 0;
}
main .photocon_detail .photocon_table .block ul.disc {
  list-style: disc;
  padding-left: 1.2em;
}
main .photocon_detail .photocon_table .block .attention {
  margin-top: 2em;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  main .photocon_detail .photocon_table .block .attention {
    font-size: 2.8vw;
  }
}
main .photocon_detail .photocon_table .block > div:first-child {
  width: 15%;
  padding-right: 20px;
  font-weight: 700;
  border-right: 1px solid #73bdc8;
}
@media screen and (max-width: 768px) {
  main .photocon_detail .photocon_table .block > div:first-child {
    width: 100%;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid #73bdc8;
    padding-bottom: 1vw;
  }
}
main .photocon_detail .photocon_table .block > div:last-child {
  width: 85%;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  main .photocon_detail .photocon_table .block > div:last-child {
    width: 100%;
    padding-left: 0;
    padding-top: 1vw;
  }
}
main .photocon_detail .photocon_table .block > div:last-child p {
  margin-bottom: 1em;
}
main .photocon_detail .photocon_table .block > div:last-child p:last-child {
  margin-bottom: 0;
}
main .photocon_detail .photocon_table .block > div:last-child p.dttl {
  font-weight: 700;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  main .photocon_detail .photocon_table .block > div:last-child .lineb {
    margin-top: 1vw;
  }
}
main .photocon_detail .photocon_table .block > div:last-child .lineb span {
  display: inline-block;
  position: relative;
  z-index: 1;
  line-height: 1;
  position: relative;
}
main .photocon_detail .photocon_table .block > div:last-child .lineb span:before {
  content: "";
  width: 100%;
  height: 8px;
  background: #b2ddff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
main .photocon_detail .photocon_table .block > div:last-child .lineb:before {
  background: #b2ddff;
}
@media screen and (max-width: 768px) {
  main .photocon_detail .photocon_table .block > div:last-child .lineg {
    margin-top: 1vw;
  }
}
main .photocon_detail .photocon_table .block > div:last-child .lineg span {
  display: inline-block;
  position: relative;
  z-index: 1;
  line-height: 1;
  position: relative;
}
main .photocon_detail .photocon_table .block > div:last-child .lineg span:before {
  content: "";
  width: 100%;
  height: 8px;
  background: #b2ddff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
main .photocon_detail .photocon_table .block > div:last-child .lineg span:before {
  background: #b5edba;
}
main .photocon_detail .photocon_table .block > div > div {
  margin-bottom: 40px;
}
main .photocon_detail .photocon_table .block > div > div:last-child {
  margin-bottom: 0;
}
main .photocon_detail .w_box {
  margin: 84px 80px 0;
  padding: 40px;
  border: 1px solid #e8e8e8;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  main .photocon_detail .w_box {
    margin: 8vw 0 0;
    padding: 6vw;
  }
}
main .photocon_detail .w_box > div {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  main .photocon_detail .w_box > div {
    margin-top: 5vw;
  }
}
main .photocon_detail .w_box > div:first-child {
  margin-top: 0;
}
main .photocon_detail .w_box .t1 {
  font-size: 18px;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 768px) {
  main .photocon_detail .w_box .t1 {
    font-size: 3.6vw;
  }
}
main .photocon_detail .w_box .t2, main .photocon_detail .w_box .dotlist {
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  main .photocon_detail .w_box .t2, main .photocon_detail .w_box .dotlist {
    font-size: 3.2vw;
    text-align: justify;
  }
}
main .photo .inner {
  padding: 40px 0 40px;
}
@media screen and (max-width: 768px) {
  main .photo .inner {
    padding: 6vw 0;
  }
}

/* -------- 追記 ------- */
main .hero .lead_wrap {
  position: relative;
}

main .hero .lead_wrap .batch {
  position: absolute;
  top: 0;
  right: 0;
}

main .hero .lead_wrap .batch a {
  display: block;
}

@media screen and (max-width: 768px) {
  main .hero .lead_wrap .batch {
    width: 30vw;
    top: 1vw;
    right: -5vw;
  }
}
.movie_wrap {
  max-width: 800px;
  margin: 0 auto 40px;
}

@media screen and (max-width: 768px) {
  .movie_wrap {
    margin: 0 5vw 40px;
  }
}
.youtube_wrap {
  margin-bottom: 25px;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.column .columnTtlArea {
  background: url(../img/column/column_ttl_bg.jpg) center no-repeat;
  background-size: cover;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  padding: 54px 20px 36px;
}
@media screen and (max-width: 768px) {
  .column .columnTtlArea {
    padding: 6vw 3vw;
  }
}
.column .cbox .rpTtl {
  line-height: 1;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 25px;
  padding: 0 16px;
  border-left: 5px solid #05a5d5;
}  
@media screen and (max-width: 768px) {
.column .cbox .rpTtl {
  font-size: 4.6vw;
  padding: 0 1vw;
  margin-bottom: 2.4vw;
  border-left: 5px solid #05a5d5;
} 
}  
.column .columnTtlArea .ttl {
  color: #fff;
  background: #68c1b5;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  display: table;
  margin: 0 auto;
  padding: 2px 24px;
  font-size: 38px;
}
.column .columnTtlArea .ttl2 {
  color: #fff;
  background: #68c1b5;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  display: table;
  margin: 0 auto;
  padding: 2px 24px;
  font-size: 38px;
}
@media screen and (max-width: 768px) {
  .column .columnTtlArea .ttl {
    padding: 2vw 5vw;
    font-size: 6vw;
    line-height: 1.4;
  }
  .column .columnTtlArea .ttl2 {
    padding: 2vw 5vw;
    font-size: 6vw;
    line-height: 1.4;
  }    
}
.column .columnTtlArea .ttl span:before {
  content: "";
  width: 39px;
  height: 35px;
  display: inline-block;
  background: url(../img/column/column_icon.png) 0 0 no-repeat;
  background-size: cover;
  margin-right: 0.4em;
}
@media screen and (max-width: 768px) {
  .column .columnTtlArea .ttl span:before {
    width: 6.7vw;
    height: 6vw;
    margin-right: 0.1em;
  }
}
.column .columnTtlArea .lead {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
  font-weight: 700;
  font-size: 24px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .column .columnTtlArea .lead {
    font-size: 3.8vw;
    margin-top: 2vw;
  }
}
.column .cBoxWrap div:nth-child(odd) .cbTtl span.num {
  color: #05a5d5;
}
.column .cBoxWrap div:nth-child(odd) .advice .adTtl {
  color: #87d4eb;
}
.column .cBoxWrap div:nth-child(odd) .advice .adDiv {
  background: #bde9f6;
}
.column .cBoxWrap div:nth-child(even) .cbTtl span.num {
  color: #68c1b5;
}
.column .cBoxWrap div:nth-child(even) .advice .adTtl {
  color: #68c1b5;
}
.column .cBoxWrap div:nth-child(even) .advice .adDiv {
  background: #9deee3;
}
.column .cbox {
  width: 710px;
  margin: 0 auto;
  padding: 40px 0 40px;
}
@media screen and (max-width: 768px) {
  .column .cbox {
    width: auto;
    padding: 8vw 4vw;
  }
}
.column .cbox .cbTtl {
  line-height: 1;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 25px;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .column .cbox .cbTtl {
    font-size: 4.6vw;
    padding: 0 1vw;
    margin-bottom: 2.4vw;
  }
}
.column .cbox .cbTtl span.num {
  font-family: "Roboto", "Noto Sans JP", "游ゴシック", YuGothic, "游ゴシック体", "Source Sans Pro", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", sans-serif;
  font-size: 72px;
  font-weight: 600;
  margin-right: 0.2em;
}
@media screen and (max-width: 768px) {
  .column .cbox .cbTtl span.num {
    font-size: 12vw;
  }
}
.column .cbox .cbTtl span.spot {
  color: #f5a04e;
}
.column .cbox .img {
  border: 14px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.column .cbox .txt {
  font-size: 16px;
  padding: 0 16px;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .column .cbox .txt {
    font-size: 3.5vw;
    padding: 0 3vw;
    margin-top: 4vw;
  }
}
.column .cbox .advice {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .column .cbox .advice {
    margin-top: 6vw;
  }
}
.column .cbox .advice .adTtl {
  font-family: "Roboto", "Noto Sans JP", "游ゴシック", YuGothic, "游ゴシック体", "Source Sans Pro", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", sans-serif;
  line-height: 1;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: -0.16em;
}
@media screen and (max-width: 768px) {
  .column .cbox .advice .adTtl {
    font-size: 8vw;
  }
}
.column .cbox .advice .adDiv {
  font-size: 16px;
  padding: 20px 24px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .column .cbox .advice .adDiv {
    font-size: 3.5vw;
    padding: 3vw 4vw;
  }
}

.itempage .itempageTtlArea {
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .itempage .itempageTtlArea {
    padding-top: 10vw;
  }
}
.itempage .itempageTtlArea .iTttl {
  position: relative;
  font-family: "Noto Serif JP", serif;
  color: #333;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  padding-top: 38px;
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .itempage .itempageTtlArea .iTttl {
    font-size: 9vw;
    padding-top: 7vw;
    margin-bottom: 6vw;
  }
}
.itempage .itempageTtlArea .iTttl:before {
  content: "";
  display: inline-block;
  background: url(../img/item/ttl_deco01.png) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 42px;
  height: 29px;
}
@media screen and (max-width: 768px) {
  .itempage .itempageTtlArea .iTttl:before {
    width: 8vw;
    height: 5.6vw;
  }
}
.itempage .itempageTtlArea .iTttl span {
  position: relative;
}
.itempage .itempageTtlArea .iTttl span:before {
  content: "";
  display: inline-block;
  background: url(../img/item/ttl_deco02.png) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  top: 2px;
  left: -34px;
  width: 21px;
  height: 49px;
}
@media screen and (max-width: 768px) {
  .itempage .itempageTtlArea .iTttl span:before {
    width: 5vw;
    height: 12vw;
    top: 1vw;
    left: -7vw;
  }
}
.itempage .itempageTtlArea .iTttl span:after {
  content: "";
  display: inline-block;
  background: url(../img/item/ttl_deco03.png) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  top: 2px;
  right: -34px;
  width: 21px;
  height: 49px;
}
@media screen and (max-width: 768px) {
  .itempage .itempageTtlArea .iTttl span:after {
    width: 5vw;
    height: 12vw;
    top: 1vw;
    right: -7vw;
  }
}
.itempage .iBoxWrap {
  color: #555;
}
.itempage .iBox {
  width: 790px;
  margin: 0 auto;
  padding: 50px 0 50px;
}
@media screen and (max-width: 768px) {
  .itempage .iBox {
    width: auto;
    padding: 8vw 4vw;
  }
}
.itempage .iBox .iTsubttl {
  display: table;
  text-align: center;
  position: relative;
  height: 44px;
  line-height: 44px;
  padding: 0 26px;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .itempage .iBox .iTsubttl {
    height: 9vw;
    line-height: 9vw;
    padding: 0 3vw;
    font-size: 4vw;
    margin: 0 auto 6vw;
    min-width: 30vw;
  }
}
.itempage .iBox .iTsubttl span {
  display: table-cell;
  padding-top: 2px;
}
@media screen and (max-width: 768px) {
  .itempage .iBox .iTsubttl span {
    padding-top: 1vw;
  }
}
.itempage .iBox .iTsubttl.iTsub01 {
  background: #f5a04e;
}
.itempage .iBox .iTsubttl.iTsub01:before, .itempage .iBox .iTsubttl.iTsub01:after {
  border-color: #f5a04e transparent;
}
.itempage .iBox .iTsubttl.iTsub02 {
  background: #05a5d5;
}
.itempage .iBox .iTsubttl.iTsub02:before, .itempage .iBox .iTsubttl.iTsub02:after {
  border-color: #05a5d5 transparent;
}
.itempage .iBox .iTsubttl.iTsub03 {
  background: #68c1b5;
}
.itempage .iBox .iTsubttl.iTsub03:before, .itempage .iBox .iTsubttl.iTsub03:after {
  border-color: #68c1b5 transparent;
}
.itempage .iBox .iTsubttl:before {
  position: absolute;
  top: 0;
  left: -12px;
  width: 0px;
  height: 0px;
  border-width: 23px 0px 23px 12px;
  border-style: solid;
  content: "";
}
@media screen and (max-width: 768px) {
  .itempage .iBox .iTsubttl:before {
    left: -2vw;
    border-width: 5vw 0px 5vw 2vw;
  }
}
.itempage .iBox .iTsubttl:after {
  position: absolute;
  top: 0;
  right: -12px;
  width: 0px;
  height: 0px;
  border-width: 23px 12px 23px 0;
  border-style: solid;
  content: "";
}
@media screen and (max-width: 768px) {
  .itempage .iBox .iTsubttl:after {
    right: -2vw;
    border-width: 5vw 2vw 5vw 0;
  }
}
.itempage .iBox ul.itemList {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: -30px;
  margin-bottom: 30px;
}
.itempage .iBox ul.itemList.only {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .itempage .iBox ul.itemList {
    margin-top: -6vw;
    margin-bottom: 6vw;
  }
}
.itempage .iBox ul.itemList li {
  list-style: none;
  width: calc(50% - 15px);
  padding: 20px 14px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .itempage .iBox ul.itemList li {
    width: 100%;
    padding: 3vw 3vw;
    margin-top: 6vw;
  }
}
.itempage .iBox .prize {
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .itempage .iBox .prize {
    font-size: 4.2vw;
  }
}
.itempage .iBox .prize:before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 20px;
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  .itempage .iBox .prize:before {
    width: 5.7vw;
    height: 4vw;
    margin-right: 1vw;
  }
}
.itempage .iBox .prize.grade01 {
  color: #ddb437;
}
.itempage .iBox .prize.grade01:before {
  background: url(../img/item/icon01.png) 0 0 no-repeat;
  background-size: contain;
}
.itempage .iBox .prize.grade02 {
  color: #a1a1a1;
}
.itempage .iBox .prize.grade02:before {
  background: url(../img/item/icon02.png) 0 0 no-repeat;
  background-size: contain;
}
.itempage .iBox .prize.grade03 {
  color: #995a22;
}
.itempage .iBox .prize.grade03:before {
  background: url(../img/item/icon03.png) 0 0 no-repeat;
  background-size: contain;
}
.itempage .iBox .prize.grade04 {
  color: #68c1b5;
}
.itempage .iBox .prize.grade04:before {
  content: none;
}
.itempage .iBox .img {
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .itempage .iBox .img {
    margin: 3vw 0;
  }
}
.itempage .iBox .t1 {
  font-weight: 700;
  line-height: 1.5;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .itempage .iBox .t1 {
    font-size: 3.6vw;
  }
}
.itempage .iBox .t2 {
  color: #555;
  text-align: justify;
  line-height: 1.5;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .itempage .iBox .t2 {
    font-size: 3.4vw;
  }
}
.itempage .iBox .t3 {
  color: #555;
  font-size: 12px;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .itempage .iBox .t3 {
    font-size: 3.2vw;
  }
}
.itempage .iBox .t3 a {
  color: #ad831f;
}
.itempage .iBox .t3 a:hover {
  text-decoration: underline;
}
.itempage .iBox .brand {
  margin-top: 66px;
}
@media screen and (max-width: 768px) {
  .itempage .iBox .brand {
    margin-top: 8vw;
  }
}
.itempage .iBox .brand .name {
  color: #5a4513;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 0.4em;
}
@media screen and (max-width: 768px) {
  .itempage .iBox .brand .name {
    font-size: 4.6vw;
  }
}
/*FWのCSSコンフリクト解消*/
@media (min-width: 768px) {
	#container.container {
  display: block !important;
  }
}