@charset "UTF-8";
/**scss共通***/
img {
  width: 100%;
}

img.climg {
  image-rendering: -webkit-optimize-contrast;
}
@media screen and (max-width:800px) {
  img.climg {
    image-rendering: auto;
  }
}

.test {
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  -webkit-transition: all 0.4s ease-out 0.01s;
  transition: all 0.4s ease-out 0.01s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transform: scale(1);
  transform: rotate(-45deg);
  border-radius: 50%;
  animation: Flash1 1s infinite;
  font-family: "Noto Serif JP", serif;
  background: linear-gradient(90deg, rgb(0, 72, 110) 0%, rgb(0, 120, 155) 100%);
}

@keyframes Flash1 {
  50% {
    opacity: 0;
  }
}
.test {
  content: "\f105";
  font-family: FontAwesome;
}

.shadow {
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4), 1px 3px 3px rgba(0, 0, 0, 0.4), 1px 2px 3px rgba(0, 0, 0, 0.4);
}

/**scss共通ここまで***/
.onmouse {
  -webkit-transition: all 0.4s ease-out 0.01s;
  transition: all 0.4s ease-out 0.01s;
}

.onmouse:hover {
  opacity: 0.6;
  cursor: pointer;
}
@media screen and (max-width:800px) {
  .onmouse:hover {
    opacity: 1;
  }
}

html {
  overflow-y: scroll;
}

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, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
}

img {
  border: 0;
  vertical-align: bottom;
}

nav ul {
  list-style: none;
}

ul li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
}

body {
  font-size: 14px;
  font-family: "Noto Sans JP", BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "游ゴシック  Medium", meiryo, sans-serif;
  text-align: left;
  line-height: 160%;
  color: #4D4D4D;
  font-feature-settings: "palt";
}

.fonts {
  font-family: "Open Sans";
}

.clearfix {
  zoom: 1;
  clear: both;
}

.clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
  clear: both;
}

/* link_nomal */
a {
  text-decoration: none;
  color: #000;
}

a:link {
  text-decoration: none;
  color: #000;
}

a:visited {
  text-decoration: none;
  color: #000;
}

a:hover {
  text-decoration: none;
  color: #000;
}

a:active {
  text-decoration: none;
  color: #000;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/**テキスト揃え**/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-just {
  text-align: justify;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

.pc_only_inline {
  display: inline-block;
}

.sp_only_inline {
  display: none;
}

@media screen and (max-width:800px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .pc_only_inline {
    display: none;
  }
  .sp_only_inline {
    display: inline-block;
  }
}
.fade__up {
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  opacity: 0;
  transform: translate(0%, 50px);
}
.fade__up.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.fade__in {
  -webkit-transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  opacity: 0;
  transform: translate(0%, 0px);
}
.fade__in.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.fade__in__start {
  -webkit-transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  opacity: 0;
  transform: translate(0%, 0px);
}
.fade__in__start.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.fade__big {
  -webkit-transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  opacity: 0;
  transform: scale(1.1);
}
.fade__big.active {
  opacity: 1;
  transform: scale(1);
}

.anime_a_time1 {
  clip-path: inset(0% 0% 100% 0 round 0px);
  transition: clip-path 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
}
@media screen and (max-width:800px) {
  .anime_a_time1 {
    transition: clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
  }
}
.anime_a_time1.active {
  clip-path: inset(0% 0% 0% 0 round 0px);
}

.anime_a_time2 {
  clip-path: inset(0% 100% 0% 0 round 0px);
  transition: clip-path 1.5s cubic-bezier(0.45, 0, 0.55, 1) 0.01s;
}
@media screen and (max-width:800px) {
  .anime_a_time2 {
    transition: clip-path 1s cubic-bezier(0.45, 0, 0.55, 1) 0.01s;
  }
}
.anime_a_time2.active {
  clip-path: inset(0% 0% 0% 0 round 0px);
}

.anime_a_time3 {
  clip-path: inset(0% 0% 0% 100% round 0px);
  transition: clip-path 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
}
@media screen and (max-width:800px) {
  .anime_a_time3 {
    transition: clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
  }
}
.anime_a_time3.active {
  clip-path: inset(0% 0% 0% 0 round 0px);
}

.delay1 {
  transition-delay: 0s;
}

.delay2 {
  transition-delay: 0.3s;
}

.delay3 {
  transition-delay: 0.6s;
}

.delay4 {
  transition-delay: 0.9s;
}

.delay5 {
  transition-delay: 1.2s;
}

.delay1sp {
  transition-delay: 0s;
}
@media screen and (max-width:800px) {
  .delay1sp {
    transition-delay: 0s;
  }
}

.delay2sp {
  transition-delay: 0.2s;
}
@media screen and (max-width:800px) {
  .delay2sp {
    transition-delay: 0s;
  }
}

.delay3sp {
  transition-delay: 0.4s;
}
@media screen and (max-width:800px) {
  .delay3sp {
    transition-delay: 0s;
  }
}

.delay4sp {
  transition-delay: 0.6s;
}
@media screen and (max-width:800px) {
  .delay4sp {
    transition-delay: 0s;
  }
}

.delay5sp {
  transition-delay: 0.8s;
}
@media screen and (max-width:800px) {
  .delay5sp {
    transition-delay: 0s;
  }
}

html.no-webp .backgrond_webp {
  background-image: url(../images/pc.jpg);
}
@media screen and (max-width:800px) {
  html.no-webp .backgrond_webp {
    background-image: url(../images/sp.jpg);
  }
}

.backgrond_webp {
  width: 100%;
  max-width: 680px;
  height: 420px;
  background-image: url(../images/pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width:800px) {
  .backgrond_webp {
    background-image: url(../images/sp.webp);
  }
}

/*****************************************/
.f60 {
  font-size: 60px;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  .f60 {
    font-size: 7.2vw;
  }
}

.f50 {
  font-size: 50px;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  .f50 {
    font-size: 8vw;
  }
}

.f40 {
  font-size: 40px;
  line-height: 135%;
}
@media screen and (max-width:800px) {
  .f40 {
    font-size: 7vw;
  }
}

.f38 {
  font-size: 38px;
  line-height: 115%;
}
@media screen and (max-width:800px) {
  .f38 {
    font-size: 7vw;
  }
}

.f36 {
  font-size: 36px;
  line-height: 115%;
}
@media screen and (max-width:800px) {
  .f36 {
    font-size: 6.5vw;
  }
}

.f34 {
  font-size: 34px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f34 {
    font-size: 6vw;
  }
}

.f32 {
  font-size: 32px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f32 {
    font-size: 5.7vw;
  }
}

.f30 {
  font-size: 30px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f30 {
    font-size: 5vw;
  }
}

.f28 {
  font-size: 28px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f28 {
    font-size: 4.9vw;
  }
}

.f26 {
  font-size: 26px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f26 {
    font-size: 4.8vw;
  }
}

.f24 {
  font-size: 24px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f24 {
    font-size: 4.6vw;
  }
}

.f22 {
  font-size: 22px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f22 {
    font-size: 4.2vw;
  }
}

.f21 {
  font-size: 21px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f21 {
    font-size: 4.1vw;
  }
}

.f20 {
  font-size: 20px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f20 {
    font-size: 4vw;
  }
}

.f19 {
  font-size: 19px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f19 {
    font-size: 3.8vw;
  }
}

.f18 {
  font-size: 18px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f18 {
    font-size: 3.5vw;
  }
}

.f16 {
  font-size: 16px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f16 {
    font-size: 3.4vw;
  }
}

.f15 {
  font-size: 15px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f15 {
    font-size: 3.2vw;
  }
}

.f14 {
  font-size: 14px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f14 {
    font-size: 3vw;
  }
}

.f12 {
  font-size: 12px;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  .f12 {
    font-size: 2.8vw;
  }
}

.f11 {
  font-size: 11px;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  .f11 {
    font-size: 2.4vw;
  }
}

.f10 {
  font-size: 10px;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  .f10 {
    font-size: 2vw;
  }
}

/*****************************************/
@media print {
  body {
    min-width: 1200px;
  }
  .fade__up {
    opacity: 1;
  }
  .fade__in {
    opacity: 1;
  }
}
/*********************************************/
.contents_blur {
  transition: all 0.6s ease-out 0.01s;
}
.contents_blur.blur__on {
  -ms-filter: blur(25px);
  filter: blur(25px);
}

.menuback_botan {
  width: 100%;
  height: 0%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 19998;
}
.menuback_botan.active {
  height: 100%;
}

header {
  position: fixed;
  width: 100%;
  height: 100px;
  z-index: 990;
  top: 0;
  left: 0;
}
@media screen and (max-width:800px) {
  header {
    height: 64px;
  }
}
header .header_back {
  position: absolute;
  z-index: 991;
  width: 100%;
  height: 100px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.69) 99%);
}
@media screen and (max-width:800px) {
  header .header_back {
    height: 64px;
  }
}
header .header_back_white {
  position: absolute;
  z-index: 991;
  width: 100%;
  height: 100px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.89) 99%);
}
@media screen and (max-width:800px) {
  header .header_back_white {
    height: 64px;
  }
}
header .header__in {
  width: calc(100% - 70px);
  height: 100px;
  display: flex;
  justify-content: space-between;
  /*align-items: flex-end;*/
  align-items: center;
  position: relative;
  z-index: 995;
  margin: 0 auto;
}
@media screen and (max-width:800px) {
  header .header__in {
    height: 64px;
    align-items: center;
    width: calc(100% - 8vw);
  }
}
header .header__in .menu_title {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  position: relative;
  align-items: center;
}
header .header__in .menu_title .langbt {
  display: block;
  width: 32px;
  margin-right: 20px;
}
@media screen and (max-width:800px) {
  header .header__in .menu_title .langbt {
    width: 28px;
    margin-right: 15px;
  }
}
header .header__in .menu_title .menubt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header .header__in .menu_title .menubt .bars {
  width: 27px;
  height: 7px;
  margin-right: 6px;
  position: relative;
}
@media screen and (max-width:800px) {
  header .header__in .menu_title .menubt .bars {
    width: 23px;
  }
}
header .header__in .menu_title .menubt .bars .line01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
header .header__in .menu_title .menubt .bars .line01.blacks {
  background-color: #4d4d4d;
}
header .header__in .menu_title .menubt .bars .line02 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
header .header__in .menu_title .menubt .bars .line02.blacks {
  background-color: #4d4d4d;
}
header .header__in .menu_title .menubt .texts {
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  line-height: 0;
}
header .header__in .menu_title .menubt .texts.blacks {
  color: #000;
}
header .header__in .menu_title .menubt .texts figure {
  width: 37px;
  line-height: 0;
}
header .header__in .logowaku {
  width: 50%;
  text-align: right;
}
header .header__in .logowaku figure {
  width: 133px;
  margin: 0 0 0 auto;
}
@media screen and (max-width:800px) {
  header .header__in .logowaku figure {
    width: 72px;
  }
}

footer {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #fff;
}
footer .footer__in {
  width: calc(100% - 40px);
  margin: 0 auto 0 auto;
  position: relative;
}
footer .footer__in.linestop {
  border-top: 1px solid #a5a5a5;
}
footer .footer__in .topback {
  display: block;
  width: 32px;
  position: absolute;
  top: 30px;
  right: 0;
}
footer .section__in {
  width: calc(100% - 60px);
  /*max-width: 1200px;*/
  margin: 0 auto 0 auto;
  padding: 125px 0 50px 0;
  font-weight: 400;
}
@media screen and (max-width:800px) {
  footer .section__in {
    width: 100%;
    padding: 19.5vw 0 10vw 0;
  }
}
footer .section__in figure.logofoot {
  width: 162px;
  margin-bottom: 38px;
}
@media screen and (max-width:800px) {
  footer .section__in figure.logofoot {
    width: 32%;
    margin-bottom: 7.5vw;
  }
}
footer .section__in .companyname {
  letter-spacing: 0.05em;
  margin-bottom: 0.75em;
}
@media screen and (max-width:800px) {
  footer .section__in .companyname {
    font-size: 4vw;
  }
}
footer .section__in .address {
  letter-spacing: 0.05em;
}
@media screen and (max-width:800px) {
  footer .section__in .address {
    font-size: 3.4vw;
  }
}
footer .section__in .footsublink {
  display: flex;
  justify-content: flex-start;
  margin-top: 50px;
  margin-bottom: 1em;
}
@media screen and (max-width:800px) {
  footer .section__in .footsublink {
    font-size: 3.8vw;
    margin-top: 10vw;
    margin-bottom: 5vw;
  }
}
footer .section__in .footsublink li {
  display: inline-block;
  margin-right: 3em;
}
@media screen and (max-width:800px) {
  footer .section__in .footsublink li {
    margin-right: 2em;
  }
}
footer .section__in .footsubsublink {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width:800px) {
  footer .section__in .footsubsublink {
    font-size: 3vw;
  }
}
footer .section__in .footsubsublink li {
  display: inline-block;
  padding: 0 1em;
  border-left: 1px solid #c5c5c5;
}
@media screen and (max-width:800px) {
  footer .section__in .footsubsublink li:nth-child(1) {
    width: 11em;
    padding: 0 0em;
    text-align: center;
    margin-bottom: 0.85em;
  }
}
@media screen and (max-width:800px) {
  footer .section__in .footsubsublink li:nth-child(2) {
    width: 12em;
    padding: 0 0em;
    border-right: 1px solid #c5c5c5;
    text-align: center;
    margin-bottom: 0.85em;
  }
}
footer .section__in .footsubsublink li:nth-child(3) {
  border-right: 1px solid #c5c5c5;
  width: 8em;
  padding: 0 0em;
  text-align: center;
  margin-right: 15em;
}
footer .copyright {
  text-align: center;
  padding-bottom: 1em;
}
footer .endline {
  width: 100%;
  height: 10px;
  background-color: #f89432;
}

nav {
  width: 810px;
  height: 100%;
  position: fixed;
  top: 0;
  right: -1000px;
  z-index: 19999;
  transition: all 0.6s cubic-bezier(0.45, 0, 0.55, 1) 0.01s;
  overflow: hidden;
}
@media screen and (max-width:800px) {
  nav {
    width: 100vw;
    right: -105vw;
  }
}
nav.active {
  right: 0;
}
nav .closebts {
  width: 44px;
  height: 44px;
  border: 2px solid #fff;
  border-radius: 5px;
  position: absolute;
  z-index: 28001;
  top: 12px;
  left: 0;
}
nav .closebts.blackswaku {
  border: 2px solid #4d4d4d;
}
@media screen and (max-width:800px) {
  nav .closebts.blackswaku {
    border: 0px solid #fff;
  }
}
nav .closebts.blackswaku .line01 {
  background-color: #4d4d4d;
}
@media screen and (max-width:800px) {
  nav .closebts.blackswaku .line01 {
    background-color: #fff;
  }
}
nav .closebts.blackswaku .line02 {
  background-color: #4d4d4d;
}
@media screen and (max-width:800px) {
  nav .closebts.blackswaku .line02 {
    background-color: #fff;
  }
}
@media screen and (max-width:800px) {
  nav .closebts {
    top: 10px;
    left: auto;
    right: 10px;
    border: 0px solid #fff;
    z-index: 25048;
  }
}
@media screen and (max-width:800px) {
  nav .closebts.blacks .line01 {
    background-color: #000;
  }
}
@media screen and (max-width:800px) {
  nav .closebts.blacks .line02 {
    background-color: #000;
  }
}
nav .closebts .line01 {
  width: 16px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width:800px) {
  nav .closebts .line01 {
    width: 30px;
  }
}
nav .closebts .line02 {
  width: 16px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width:800px) {
  nav .closebts .line02 {
    width: 30px;
  }
}
nav .closebts_sp {
  display: none;
}
@media screen and (max-width:800px) {
  nav .closebts_sp {
    display: block;
    width: 44px;
    height: 44px;
    position: absolute;
    z-index: 28001;
    left: 0;
    top: 10px;
    left: auto;
    right: 10px;
    z-index: 25048;
  }
}
nav .closebts_sp .line01 {
  width: 16px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #000;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width:800px) {
  nav .closebts_sp .line01 {
    width: 30px;
  }
}
nav .closebts_sp .line02 {
  width: 16px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #000;
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width:800px) {
  nav .closebts_sp .line02 {
    width: 30px;
  }
}
nav .sp_sub_close {
  display: none;
  width: 25px;
  position: absolute;
  z-index: 25048;
  top: 20px;
  left: 20px;
}
@media screen and (max-width:800px) {
  nav .sp_sub_close {
    display: block;
  }
}
nav .mainnavin {
  width: 370px;
  height: 100%;
  background: url(../images/menu_back.jpg) no-repeat center;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  right: 369px;
  z-index: 25010;
  color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width:800px) {
  nav .mainnavin {
    right: 0px;
    width: 100vw;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
  }
}
nav .mainnavin .contena__in {
  width: 100%;
  padding: 75px 40px 75px 40px;
}
@media screen and (max-width:800px) {
  nav .mainnavin .contena__in {
    padding: 25vw 7.5vw 75px 7.5vw;
  }
}
nav .mainnavin a.linkons {
  padding: 0.35em 10px 0.45em 10px;
  display: inline-block;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.95em;
  position: relative;
  transition: all 0.3s ease-out 0.01s;
}
@media screen and (max-width:800px) {
  nav .mainnavin a.linkons {
    font-size: 16px;
  }
}
nav .mainnavin a.linkons.active {
  background-color: #565656;
}
@media screen and (max-width:800px) {
  nav .mainnavin a.linkons.active {
    background-color: transparent;
  }
}
nav .mainnavin a.linkons:hover {
  background-color: #565656;
  cursor: pointer;
}
@media screen and (max-width:800px) {
  nav .mainnavin a.linkons:hover {
    background-color: transparent;
  }
}
nav .mainnavin a.linkons::after {
  content: "";
  width: 0.6em;
  height: 1em;
  background: url(../images/icon_yaji.svg) no-repeat center;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translate(0, -50%);
}
nav .subnavin {
  width: 370px;
  height: 100%;
  background-color: #fff;
  color: #000;
  position: absolute;
  top: 0;
  right: 0px;
  z-index: 22000;
  /*overflow-y: scroll;*/
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.6s cubic-bezier(0.45, 0, 0.55, 1) 0.01s;
  /*
  .sub__01{
    width: 370px;
    position: absolute;
    background-color: rgba(255,0,0,0.1);
    opacity: 0;
    padding: 75px 50px 75px 50px;
    top:0px;
    left:370px;
    @media screen and (max-width:800px){
      width: 100vw;
      padding: 75px 5vw 75px 5vw;
    }
    &.active{
      top:0px;
      left:0;
      opacity: 1;
      transition: all .3s ease-in-out 0.01s;
    }
    &.active2{
      position: absolute;
      left:-370px;
      transition: all .3s ease-in-out 0.01s;
    }
    .sub__in__in{
      width: 100%;
      display: none;
      &.on{
        display: block;
      }
    }
  }//sub__01

  */
}
@media screen and (max-width:800px) {
  nav .subnavin {
    width: 100vw;
    z-index: 25050;
    right: 110vw;
  }
}
@media screen and (max-width:800px) {
  nav .subnavin.subnavin_onside {
    right: 0vw;
  }
}
nav .subnavin .sub__01, nav .subnavin .sub__02, nav .subnavin .sub__03, nav .subnavin .sub__04, nav .subnavin .sub__05, nav .subnavin .sub__06, nav .subnavin .sub__07 {
  width: 370px;
  position: absolute;
  /*background-color: rgba(255,255,0,0.1);*/
  padding: 75px 40px 75px 40px;
  top: 0px;
  left: 370px;
  opacity: 0;
}
@media screen and (max-width:800px) {
  nav .subnavin .sub__01, nav .subnavin .sub__02, nav .subnavin .sub__03, nav .subnavin .sub__04, nav .subnavin .sub__05, nav .subnavin .sub__06, nav .subnavin .sub__07 {
    width: 100vw;
    padding: 25vw 7.5vw 75px 7.5vw;
  }
}
nav .subnavin .sub__01 a.linkons, nav .subnavin .sub__02 a.linkons, nav .subnavin .sub__03 a.linkons, nav .subnavin .sub__04 a.linkons, nav .subnavin .sub__05 a.linkons, nav .subnavin .sub__06 a.linkons, nav .subnavin .sub__07 a.linkons {
  padding: 0.35em 10px 0.45em 10px;
  display: inline-block;
  width: calc(100% - 0px);
  color: #000;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0em;
  margin-bottom: 1.2em;
  transition: all 0.3s ease-out 0.01s;
}
@media screen and (max-width:800px) {
  nav .subnavin .sub__01 a.linkons, nav .subnavin .sub__02 a.linkons, nav .subnavin .sub__03 a.linkons, nav .subnavin .sub__04 a.linkons, nav .subnavin .sub__05 a.linkons, nav .subnavin .sub__06 a.linkons, nav .subnavin .sub__07 a.linkons {
    width: 100%;
    font-size: 16px;
  }
}
nav .subnavin .sub__01 a.linkons.colorb:hover, nav .subnavin .sub__02 a.linkons.colorb:hover, nav .subnavin .sub__03 a.linkons.colorb:hover, nav .subnavin .sub__04 a.linkons.colorb:hover, nav .subnavin .sub__05 a.linkons.colorb:hover, nav .subnavin .sub__06 a.linkons.colorb:hover, nav .subnavin .sub__07 a.linkons.colorb:hover {
  /*background-color: rgba(86,86,86,0.2);*/
  background-color: #ead1bb;
}
@media screen and (max-width:800px) {
  nav .subnavin .sub__01 a.linkons.colorb:hover, nav .subnavin .sub__02 a.linkons.colorb:hover, nav .subnavin .sub__03 a.linkons.colorb:hover, nav .subnavin .sub__04 a.linkons.colorb:hover, nav .subnavin .sub__05 a.linkons.colorb:hover, nav .subnavin .sub__06 a.linkons.colorb:hover, nav .subnavin .sub__07 a.linkons.colorb:hover {
    background-color: transparent;
  }
}
nav .subnavin .sub__01 a.linkons:hover, nav .subnavin .sub__02 a.linkons:hover, nav .subnavin .sub__03 a.linkons:hover, nav .subnavin .sub__04 a.linkons:hover, nav .subnavin .sub__05 a.linkons:hover, nav .subnavin .sub__06 a.linkons:hover, nav .subnavin .sub__07 a.linkons:hover {
  background-color: #ead1bb;
}
@media screen and (max-width:800px) {
  nav .subnavin .sub__01 a.linkons:hover, nav .subnavin .sub__02 a.linkons:hover, nav .subnavin .sub__03 a.linkons:hover, nav .subnavin .sub__04 a.linkons:hover, nav .subnavin .sub__05 a.linkons:hover, nav .subnavin .sub__06 a.linkons:hover, nav .subnavin .sub__07 a.linkons:hover {
    background-color: transparent;
  }
}
nav .subnavin .sub__01.active, nav .subnavin .sub__02.active, nav .subnavin .sub__03.active, nav .subnavin .sub__04.active, nav .subnavin .sub__05.active, nav .subnavin .sub__06.active, nav .subnavin .sub__07.active {
  top: 0px;
  left: 0;
  opacity: 1;
  transition: all 0.3s ease-in-out 0.01s;
}
nav .subnavin .sub__01.active2, nav .subnavin .sub__02.active2, nav .subnavin .sub__03.active2, nav .subnavin .sub__04.active2, nav .subnavin .sub__05.active2, nav .subnavin .sub__06.active2, nav .subnavin .sub__07.active2 {
  position: absolute;
  left: -370px;
  transition: all 0.3s ease-in-out 0.01s;
}
nav .subnavin .sub__01.active3sp, nav .subnavin .sub__02.active3sp, nav .subnavin .sub__03.active3sp, nav .subnavin .sub__04.active3sp, nav .subnavin .sub__05.active3sp, nav .subnavin .sub__06.active3sp, nav .subnavin .sub__07.active3sp {
  position: absolute;
  left: 0px;
  opacity: 1;
  transition: all 0s ease-in-out 0s !important;
}
nav .subnavin .sub__01.active3sp .sub__in__in, nav .subnavin .sub__02.active3sp .sub__in__in, nav .subnavin .sub__03.active3sp .sub__in__in, nav .subnavin .sub__04.active3sp .sub__in__in, nav .subnavin .sub__05.active3sp .sub__in__in, nav .subnavin .sub__06.active3sp .sub__in__in, nav .subnavin .sub__07.active3sp .sub__in__in {
  display: block;
}
nav .subnavin .sub__01 .sub__in__in, nav .subnavin .sub__02 .sub__in__in, nav .subnavin .sub__03 .sub__in__in, nav .subnavin .sub__04 .sub__in__in, nav .subnavin .sub__05 .sub__in__in, nav .subnavin .sub__06 .sub__in__in, nav .subnavin .sub__07 .sub__in__in {
  width: 100%;
  display: none;
}
nav .subnavin .sub__01 .sub__in__in.on, nav .subnavin .sub__02 .sub__in__in.on, nav .subnavin .sub__03 .sub__in__in.on, nav .subnavin .sub__04 .sub__in__in.on, nav .subnavin .sub__05 .sub__in__in.on, nav .subnavin .sub__06 .sub__in__in.on, nav .subnavin .sub__07 .sub__in__in.on {
  display: block;
}
@media screen and (max-width:800px) {
  nav .subnavin .sub__01::after {
    content: "Models";
    font-size: 18px;
    position: absolute;
    top: 22px;
    width: 100%;
    text-align: center;
    left: 0;
    font-weight: 500;
  }
}
nav .subnavin .sub__01 a {
  display: inline-block;
  width: 100%;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transform: scale(1);
}
nav .subnavin .sub__01 a:hover {
  transform: scale(1.05);
}
nav .subnavin .sub__01 .nameitem {
  width: 100%;
  text-align: center;
  margin-bottom: 13px;
}
nav .subnavin .sub__01 .nameitem img {
  width: auto;
  height: 18px;
}
nav .subnavin .sub__01 figure {
  width: 135px;
  margin: 0 auto 50px auto;
}
@media screen and (max-width:800px) {
  nav .subnavin .sub__02::after {
    content: "Technology";
    font-size: 18px;
    position: absolute;
    top: 22px;
    width: 100%;
    text-align: center;
    left: 0;
    font-weight: 500;
  }
}
nav .subnavin .sub__02 a {
  display: inline-block;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transform: scale(1);
}
nav .subnavin .sub__02 a:hover {
  transform: scale(1.05);
}
nav .subnavin .sub__02 .inbox {
  width: 150px;
  margin: 0 auto;
  transform: translate(-5px, 0);
}
nav .subnavin .sub__02 .inbox .ttl01 {
  width: 66.6666666667%;
}
nav .subnavin .sub__02 .inbox .ttl02 {
  width: 74.6666666667%;
}
nav .subnavin .sub__02 .inbox .base_text1 {
  padding: 0.5em 0 2em 0;
  width: 150%;
  margin: 0 -50% 0 0;
}
nav .subnavin .sub__02 .inbox .base_text2 {
  padding: 0.25em 0 0.5em 0;
  width: 150%;
  margin: 0 -50% 0 0;
}
nav .subnavin .sub__02 .inbox .sams1 {
  width: 100%;
  margin-bottom: 30px;
}
nav .subnavin .sub__02 .inbox .sams1 img {
  width: 115%;
  margin: 0 -15% 0px 0;
}
nav .subnavin .sub__02 .inbox .sams2 {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width:800px) {
  nav .subnavin .sub__03::after {
    content: "Brand";
    font-size: 18px;
    position: absolute;
    top: 22px;
    width: 100%;
    text-align: center;
    left: 0;
    font-weight: 500;
  }
}
nav .subnavin .sub__03 a {
  display: inline-block;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transform: scale(1);
}
nav .subnavin .sub__03 a:hover {
  transform: scale(1.05);
}
nav .subnavin .sub__03 .inbox {
  width: 150px;
  margin: 0 auto;
}
nav .subnavin .sub__03 .inbox .ttl01 {
  width: 54.3333333333%;
}
nav .subnavin .sub__03 .inbox .ttl02 {
  width: 42.6666666667%;
}
nav .subnavin .sub__03 .inbox .ttl03 {
  width: 38.3333333333%;
}
nav .subnavin .sub__03 .inbox .base_text {
  padding: 0.5em 0;
}
nav .subnavin .sub__03 .inbox .base_text2 {
  padding: 0.25em 0 0.5em 0;
  width: 150%;
  margin: 0 -50% 0 0;
}
nav .subnavin .sub__03 .inbox .sams {
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (max-width:800px) {
  nav .subnavin .sub__04::after {
    content: "ニュース";
    font-size: 18px;
    position: absolute;
    top: 22px;
    width: 100%;
    text-align: center;
    left: 0;
    font-weight: 500;
  }
}
@media screen and (max-width:800px) {
  nav .subnavin .sub__05::after {
    content: "ユーザーサポート";
    font-size: 18px;
    position: absolute;
    top: 22px;
    width: 100%;
    text-align: center;
    left: 0;
    font-weight: 500;
  }
}
@media screen and (max-width:800px) {
  nav .subnavin .sub__06::after {
    content: "取扱販売店";
    font-size: 18px;
    position: absolute;
    top: 22px;
    width: 100%;
    text-align: center;
    left: 0;
    font-weight: 500;
  }
}
@media screen and (max-width:800px) {
  nav .subnavin .sub__07::after {
    content: "Company Information";
    font-size: 18px;
    position: absolute;
    top: 22px;
    width: 100%;
    text-align: center;
    left: 0;
    font-weight: 500;
  }
}

/***共通css************************/
a:hover .viewbox_type01 {
  background-color: #f89432;
  color: #fff;
}
@media screen and (max-width:800px) {
  a:hover .viewbox_type01 {
    background-color: transparent;
    color: #f89432;
  }
}

.viewbox_type01 {
  display: inline-block;
  padding: 0.25em 1.25em 0.4em 1.25em;
  border: 1px solid #f89432;
  line-height: 120%;
  color: #f89432;
  transition: all 0.4s ease-out 0.01s;
  margin-top: 1em;
}
.viewbox_type01 span {
  line-height: 120%;
  display: inline-block;
  transform: scale(0.9, 1);
}

a:hover .viewbox_type02 {
  background-color: #fff;
  color: #f89432;
}
@media screen and (max-width:800px) {
  a:hover .viewbox_type02 {
    background-color: transparent;
    color: #fff;
  }
}

.viewbox_type02 {
  display: inline-block;
  padding: 0.25em 1.25em 0.4em 1.25em;
  border: 1px solid #fff;
  line-height: 120%;
  color: #fff;
  transition: all 0.4s ease-out 0.01s;
  margin-top: 1em;
}
.viewbox_type02 span {
  line-height: 120%;
  display: inline-block;
  transform: scale(0.9, 1);
}

/*****************************/
#section_recommend {
  position: relative;
  z-index: 10;
  background-color: #fff;
  padding-bottom: 100px;
}
@media screen and (max-width:800px) {
  #section_recommend {
    padding-bottom: 50px;
  }
}
#section_recommend.snsno__under {
  padding-bottom: 150px;
}
@media screen and (max-width:800px) {
  #section_recommend.snsno__under {
    padding-bottom: 80px;
  }
}
#section_recommend h2.h2title_2 {
  color: #4d4d4d;
  text-align: center;
  font-weight: 300;
  margin-bottom: 40px;
  padding-top: 100px;
}
@media screen and (max-width:800px) {
  #section_recommend h2.h2title_2 {
    padding-top: 60px;
    margin-bottom: 25px;
  }
}
#section_recommend .section__in {
  width: 90%;
  max-width: 1324px;
  margin: 0 auto;
}
#section_recommend ul.recolist {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#section_recommend ul.recolist li {
  width: 32.32%;
  height: 580px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  /*
  h3 img{
  	width: auto;
  	height: 30px;
  	margin-bottom: 5px;
  	@media screen and (max-width:1200px){
  		height: 24px;
  	}
  	@media screen and (max-width:800px){
  		height: 5.4vw;
  	}
  }
     */
}
#section_recommend ul.recolist li.borderline {
  border: 1px solid #8F8F8F;
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li {
    width: 100%;
    height: 80vw;
    margin-bottom: 5vw;
  }
}
#section_recommend ul.recolist li a {
  display: block;
  height: 100%;
  width: 100%;
}
#section_recommend ul.recolist li a:hover .photo {
  transform: scale(1.05);
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li a:hover .photo {
    transform: scale(1);
  }
}
#section_recommend ul.recolist li h3 {
  padding: 35px 40px 35px 40px;
  font-size: 34px;
  font-weight: 500;
  color: #f89432;
  line-height: 115%;
  position: relative;
  z-index: 5;
}
@media screen and (max-width:1200px) {
  #section_recommend ul.recolist li h3 {
    padding: 25px;
    font-size: 2.8333333333vw;
  }
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li h3 {
    padding: 5vw;
    font-size: 5vw;
  }
}
#section_recommend ul.recolist li h3 img {
  width: auto;
  height: 30px;
  margin-bottom: 5px;
}
@media screen and (max-width:1460px) {
  #section_recommend ul.recolist li h3 img {
    height: 2.0547945205vw;
  }
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li h3 img {
    height: 4.3vw;
  }
}
#section_recommend ul.recolist li h3 img.img1b {
  width: auto;
  height: 36px;
  margin-bottom: 5px;
}
@media screen and (max-width:1460px) {
  #section_recommend ul.recolist li h3 img.img1b {
    height: 2.4657534247vw;
  }
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li h3 img.img1b {
    height: 5.15vw;
  }
}
#section_recommend ul.recolist li h3 img.img2b {
  width: auto;
  height: 55px;
  margin-bottom: 5px;
}
@media screen and (max-width:1460px) {
  #section_recommend ul.recolist li h3 img.img2b {
    height: 3.7671232877vw;
  }
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li h3 img.img2b {
    height: 9.15vw;
  }
}
#section_recommend ul.recolist li h3 img.img2 {
  width: auto;
  height: 70px;
  margin-bottom: 5px;
}
@media screen and (max-width:1460px) {
  #section_recommend ul.recolist li h3 img.img2 {
    height: 4.7945205479vw;
  }
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li h3 img.img2 {
    height: 11.3vw;
  }
}
#section_recommend ul.recolist li .photo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
}
#section_recommend ul.recolist li .photo.img_brand {
  background: url(../images/reco_mission_pc.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li .photo.img_brand {
    background: url(../images/reco_mission_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
#section_recommend ul.recolist li .photo.img_shop {
  background: url(../images/reco_dealer_pc.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li .photo.img_shop {
    background: url(../images/reco_dealer_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
#section_recommend ul.recolist li .photo.img_user_visit {
  background: url(../images/reco_uservisit_pc.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li .photo.img_user_visit {
    background: url(../images/reco_uservisit_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
#section_recommend ul.recolist li .photo.img_burning {
  background: url(../images/reco_burning_pc.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li .photo.img_burning {
    background: url(../images/reco_burning_sp.jpg) no-repeat center;
    background-size: cover;
    /*
    background: url(../images/reco_uservisit_sp.jpg)no-repeat center;
    background-size: cover;
    */
  }
}
#section_recommend ul.recolist li .photo.img_company {
  background: url(../images/reco_company.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li .photo.img_company {
    /*
    background: url(../images/reco_uservisit_sp.jpg)no-repeat center;
    background-size: cover;
    */
  }
}
#section_recommend ul.recolist li .photo.img_bell {
  background: url(../images/reco_bell_pc.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li .photo.img_bell {
    background: url(../images/reco_bell_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
#section_recommend ul.recolist li .photo.img_value {
  background: url(../images/reco_value.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li .photo.img_value {
    /*
    background: url(../images/reco_bell_sp.jpg)no-repeat center;
    background-size: cover;
    */
  }
}
#section_recommend ul.recolist li .photo.img_media {
  background: url(../images/reco_media.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li .photo.img_media {
    /*
    background: url(../images/reco_bell_sp.jpg)no-repeat center;
    background-size: cover;
    */
  }
}
#section_recommend ul.recolist li .photo.img_agnic {
  background: url(../images/reco_c.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li .photo.img_agnic {
    background: url(../images/reco_c_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
#section_recommend ul.recolist li .photo.img_agnicc {
  background: url(../images/reco_cc.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li .photo.img_agnicc {
    background: url(../images/reco_cc_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
#section_recommend ul.recolist li .photo.img_agnihutte {
  background: url(../images/reco_hutte.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li .photo.img_agnihutte {
    background: url(../images/reco_hutte_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
#section_recommend ul.recolist li .photo.img_option {
  background: url(../images/reco_option.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li .photo.img_option {
    /*
    background: url(../images/reco_c_sp.jpg)no-repeat center;
    background-size: cover;
    */
  }
}
#section_recommend ul.recolist li .photo.img_news {
  background: url(../images/reco_news_pc.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li .photo.img_news {
    background: url(../images/reco_news_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
#section_recommend ul.recolist li .photo.img_manual {
  background: url(../images/reco_manual_pc.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li .photo.img_manual {
    background: url(../images/reco_manual_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
#section_recommend ul.recolist li .photo.img_planning {
  background: url(../images/reco_planning_pc.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li .photo.img_planning {
    background: url(../images/reco_planning_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
#section_recommend ul.recolist li .photo.img_maintenance {
  background: url(../images/reco_maintenance_pc.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li .photo.img_maintenance {
    background: url(../images/reco_maintenance_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
#section_recommend ul.recolist li .photo.img_faq {
  background: url(../images/reco_faq_pc.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li .photo.img_faq {
    background: url(../images/reco_faq_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
#section_recommend ul.recolist li .shadow_under {
  width: 100%;
  height: 20%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 99%);
}
#section_recommend ul.recolist li .shadow_uper {
  width: 100%;
  height: 20%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 99%);
}
#section_recommend ul.recolist li .base_text {
  position: absolute;
  bottom: 35px;
  left: 40px;
  z-index: 5;
  width: calc(100% - 80px);
}
@media screen and (max-width:1200px) {
  #section_recommend ul.recolist li .base_text {
    bottom: 25px;
    left: 25px;
    width: calc(100% - 50px);
  }
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li .base_text {
    bottom: 5vw;
    left: 5vw;
    width: calc(100% - 10vw);
  }
}
#section_recommend ul.recolist li .base_text p {
  font-size: 17px;
  color: #4d4d4d;
}
#section_recommend ul.recolist li .base_text p.whitetext {
  color: #fff;
}
#section_recommend ul.recolist li .base_text p.textshadow {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.75), 0 0 10px rgba(255, 255, 255, 0.75), 0 0 10px rgba(255, 255, 255, 0.75), 0 0 10px rgba(255, 255, 255, 0.75);
}
@media screen and (max-width:1460px) {
  #section_recommend ul.recolist li .base_text p {
    font-size: 1.1643835616vw;
  }
}
@media screen and (max-width:800px) {
  #section_recommend ul.recolist li .base_text p {
    font-size: 3.6vw;
  }
}

#section_sns {
  width: 100%;
  position: relative;
  z-index: 10;
  padding: 0 0 100px 0;
  position: relative;
  z-index: 10;
  background-color: #fff;
}
@media screen and (max-width:800px) {
  #section_sns {
    padding: 0 0 60px 0;
  }
}
#section_sns h2.h2title {
  color: #4d4d4d;
  text-align: center;
  font-weight: 300;
  margin-bottom: 40px;
}
@media screen and (max-width:800px) {
  #section_sns h2.h2title {
    margin-bottom: 25px;
  }
}
#section_sns a.snsbotan {
  width: 70px;
  margin: 0 auto 15px auto;
  display: block;
}
@media screen and (max-width:800px) {
  #section_sns a.snsbotan {
    margin-bottom: 10px;
    width: 12vw;
  }
}
#section_sns .text {
  text-align: center;
  font-weight: 300;
}

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: url(../images/overlay.png) repeat 0 0;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

#colorbox {
  outline: 0;
  margin: 0px 0 0px 0;
}

#cboxTopLeft {
  display: none;
  width: 21px;
  height: 0px;
  background: url(images/controls.png) no-repeat -101px 0;
}

#cboxTopRight {
  display: none;
  width: 21px;
  height: 0px;
  background: url(images/controls.png) no-repeat -130px 0;
}

#cboxBottomLeft {
  display: none;
  width: 21px;
  height: 21px;
  background: url(images/controls.png) no-repeat -101px -29px;
}

#cboxBottomRight {
  display: none;
  width: 21px;
  height: 21px;
  background: url(images/controls.png) no-repeat -130px -29px;
}

#cboxMiddleLeft {
  width: 0px;
  background: url(images/controls.png) left top repeat-y;
}

#cboxMiddleRight {
  width: 0px;
  background: url(images/controls.png) right top repeat-y;
}

#cboxTopCenter {
  display: none;
  height: 0px;
  background: url(images/border.png) 0 0 repeat-x;
}

#cboxBottomCenter {
  display: none;
  height: 0px;
  background: url(images/border.png) 0 -29px repeat-x;
}

#cboxContent { /*background:#fff*/
  overflow: hidden;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  margin-bottom: 0px;
}

#cboxTitle {
  position: absolute;
  bottom: 4px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #949494;
}

#cboxCurrent {
  position: absolute;
  bottom: 4px;
  left: 58px;
  color: #949494;
}

#cboxLoadingOverlay {
  background: url(images/loading_background.png) no-repeat center center;
}

#cboxLoadingGraphic {
  background: url(images/loading.gif) no-repeat center center;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0;
}

#cboxSlideshow {
  position: absolute;
  bottom: 4px;
  right: 30px;
  color: #0092ef;
}

#cboxPrevious {
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(images/controls.png) no-repeat -75px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

#cboxPrevious:hover {
  background-position: -75px -25px;
}

#cboxNext {
  position: absolute;
  bottom: 0;
  left: 27px;
  background: url(images/controls.png) no-repeat -50px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

#cboxNext:hover {
  background-position: -50px -25px;
}

#cboxClose {
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(images/controls.png) no-repeat -25px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

#cboxClose:hover {
  background-position: -25px -25px;
}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}/*# sourceMappingURL=style.css.map */