@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400i,600");

body {
  font-family: Arial,"Microsoft YaHei",PingFangSC-Regular,"Hiragino Sans GB","Droid Sans Fallback","WenQuanYi Micro Hei",serif;
}

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;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 3px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none
}

a:hover {
  text-decoration: none
}

a:focus {
  text-decoration: none
}

input:focus, textarea:focus {
  outline: none
}

.wrapper {
  width: 100%;
  margin: 0 auto;
}

.wrapper .block {
  padding: 60px 0;
}

.wrapper .block .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

@media screen and (max-width: 768px) {
  .wrapper .block {
    padding: 8vw 2.667vw;
    box-sizing: border-box;
  }
}

.spinner {
  width: 40px;
  height: 40px;
  margin: 100px auto;
  background-color: #ff9902;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0)
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0)
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0
  }
}

.preloader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 5
}

.preloader .spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

/*header*/
header.header-area {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

header.js-fixed {
  background-color: rgba(255, 255, 255, 0.8);
  transition: all .5s;
}

.header-top {
  position: relative;
  padding: 20px 0 0
}

.header-top .header-inner {
  width: 1380px;
  margin: 0 auto 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.header-top img {
  width: 240px;
}

@media screen and (max-width: 1080px) {
  .header-top img {
    width: 150px;
  }
}

.main-menu {
  width: 80%;
  max-width: 750px;
  display: block;
}

.main-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.main-menu ul li {
  text-align: center;
}

.main-menu ul li a {
  display: block;
  color: #000;
  text-decoration: none;
  box-sizing: border-box;
}

.main-menu ul li a:hover {
  opacity: 0.7;
}

.main-menu ul li:first-child{
  margin-left: 0;
}

.main-menu ul li.active {
  border-bottom: 1px solid #38914a;
  display: inline-block;
}

.main-menu ul li.active a {
  color: #38914a !important;
}

.main-menu ul li a.contact {
  border-bottom: 1px solid #38914a;
  display: inline-block;
  color: #38914a !important;
  text-decoration: none;
}

.main-menu ul li a.contact:before {
  content: "";
  display: inline-block;
  background-image: url(../images/contact_icon.png);
  width: 15px;
  height: 11px;
}

.main-menu ul li:hover ul.sub-menu {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  visibility: visible;
  top: 100%;
  left: 30px
}

.main-menu ul li ul.sub-menu {
  padding: 10px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 250%;
  left: 0;
  width: 250px;
  background: #f9f9f9;
  z-index: 5;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

.main-menu ul li ul.sub-menu li {
  display: block
}

.main-menu ul li ul.sub-menu li a {
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -o-transition: .3s;
  transition: .3s
}

.main-menu ul li ul.sub-menu li a:hover {
  color: #ff9902
}

.custom-navbar {
  display: none;
}

@media screen and (max-width: 1380px) {
  .header-top .header-inner {
    width: 95%;
  }
}

@media (max-width: 768px) {
  header.header-area {
    padding: 10.133vw 0 8vw;
  }

  .header-top {
    position: fixed;
    top: 0;
    z-index: 9;
    padding-top: 2.667vw;
  }

  .header-top .header-inner {
    width: 100%;
    padding: 0 2.667vw;
    box-sizing: border-box;
  }

  .header-top .logo-area {
    width: 38vw;
  }

  .header-top .logo-area img {
    width: 100%;
    height: auto;
  }

  .main-menu ul {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    opacity: 0.9;
    display: none;
    text-align: center;
    padding: 32% 0;
  }

  .main-menu ul li {
    margin-bottom: 10%;
  }

  .main-menu ul li a {
    font-size: 7vw;
  }

  .main-menu ul li.active {
    border-bottom: 2px solid #38914a;
  }

  .main-menu ul li a.contact {
    border-bottom: 2px solid #38914a;
  }

  .main-menu ul li a.contact:before {
    background-image: url(../images/contact_icon_sp.png);
    background-size: cover;
    width: 22px;
    height: 17px;
    margin-right: 12px;
  }

  .custom-navbar {
    position: fixed;
    top: 4vw;
    right: 1.333vw;
    display: flex;
    height: 8vw;
    width: 8vw;
    justify-content: center;
    align-items: center;
    z-index: 90;
  }

  .custom-navbar span,
  .custom-navbar span:before,
  .custom-navbar span:after {
    content: '';
    display: block;
    height: 0.8vw;
    width: 6.667vw;
    background-color: #000;
    position: absolute;
  }

  .custom-navbar span:before {
    bottom: 2.133vw;
  }

  .custom-navbar span:after {
    top: 2.133vw;
  }

  .custom-navbar.cross span {
    background-color: rgba(255, 255, 255, 0);
  }

  .custom-navbar.cross span::before {
    bottom: 0;
    transform: rotate(45deg);
  }

  .custom-navbar.cross span::after {
    top: 0;
    transform: rotate(-45deg);
  }
}

/*top*/
.single-page {
  background-image: url("../images/header_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 215px;
}

.single-page .page-title h2 {
  font-size: 4.2em;
  font-weight: bold;
  margin-bottom: 80px;
}

.single-page .page-title h2 span {
  display: block;
  font-size: .38em;
  margin-bottom: 30px;
}

.single-page .page-title .mainImage img {
  width: 100%;
  max-width: 924px;
  min-width: 750px;
  height: auto;
}

.single-page .page-title .mainImageSp img {
  width: 100%;
  height: auto;
}

.single-page .page-title .mainImageSp.sp {
  display: none;
}

.single-page .page-title h4 span {
  display: block;
  line-height: 36px;
  padding: 20px 20px 40px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .single-page .page-title .mainImage {
    display: none;
  }

  .single-page .page-title .mainImageSp.sp {
    display: block;
  }
}

/*top_desc*/
.wrapper .block.top_desc {
  background: url(../images/top_desc_ttl_bg.png) no-repeat;
  background-size: contain;
}

.wrapper .block.top_desc .flex {
  flex-direction: row-reverse;
  width: 700px;
  margin: 0 auto;
}

.wrapper .block.top_desc .name1 {
  height: 270px;
  writing-mode: vertical-rl;
  color: #ea5413;
  font-weight: bold;
  font-size: 40px;
  line-height: 60px;
}

.wrapper .block.top_desc .name2 {
  height: 270px;
  writing-mode: vertical-rl;
  color: #1e8131;
  font-weight: bold;
  font-size: 40px;
  line-height: 60px;
}

.wrapper .block.top_desc .symbol {
  padding: 70px 0;
  font-size: 40px;
}

.wrapper .block.top_desc .desc {
  height: 270px;
  writing-mode: vertical-rl;
  font-size: 30px;
  line-height: 60px;
}

@media (max-width: 768px) {
  .wrapper .block.top_desc .flex {
    width: 80%;
  }

  .wrapper .block.top_desc .name1 {
    font-size: 30px;
    line-height: 30px;
    height: 200px;
  }

  .wrapper .block.top_desc .name2 {
    font-size: 30px;
    line-height: 30px;
    margin-top: 50px;
    height: 200px;
  }

  .wrapper .block.top_desc .symbol {
    font-size: 30px;
  }

  .wrapper .block.top_desc .desc {
    font-size: 20px;
    line-height: 30px;
    margin-top: 100px;
    height: 160px;
  }
}

/*top_seibun*/
.wrapper .block.top_seibun {
  background: url(../images/top_seibun_bg.png) no-repeat;
  background-size: cover;
  margin-bottom: 100px;
}

.wrapper .block.top_seibun .flex {
  width: 1380px;
  margin: 0 auto;
}

.wrapper .block.top_seibun .desc {
  writing-mode: vertical-rl;
  height: 500px;
}

.wrapper .block.top_seibun .desc h3 {
  color: #ea5413;
  font-size: 30px;
  line-height: 50px;
  margin-left: 40px;
  font-weight: bold;
}

.wrapper .block.top_seibun .desc p {
  font-size: 20px;
  line-height: 40px;
}

.wrapper .block.top_seibun .desc p span {
  text-combine-upright: all;
}

.wrapper .block.top_seibun .image {
  max-width: 833px;
  width: 60%;
}

.wrapper .block.top_seibun .image img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.top_seibun .flex {
    width: 95%;
    margin: 0 auto;
  }
}

/*top_flowers*/
.wrapper .block.top_flowers .flex {
  margin-bottom: 140px;
  justify-content: space-between;
  align-items: center;
}

.wrapper .block.top_flowers .flex:last-of-type {
  margin-bottom: 0;
}

.wrapper .block.top_flowers .flex.rev {
  flex-direction: row-reverse;
  justify-content: space-between;
}

.wrapper .block.top_flowers .flex .image {
  width: 50%;
  overflow: hidden;
}

.wrapper .block.top_flowers .flex .banner-bg1 {
  height: 535px;
  background-image: url("../images/top_flower1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover
}

.wrapper .block.top_flowers .flex .banner-bg2 {
  height: 535px;
  background-image: url("../images/top_flower2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover
}

.wrapper .block.top_flowers .flex .banner-bg3 {
  height: 535px;
  background-image: url("../images/top_flower3.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover
}

.wrapper .block.top_flowers .flex .desc {
  margin-right: 180px;
  box-sizing: border-box;
}

.wrapper .block.top_flowers .flex.rev .desc {
  margin-right: 0;
  margin-left: 180px;
}

.wrapper .block.top_flowers .flex h3 {
  color: #ea5413;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 40px;
  font-weight: bold;
}

.wrapper .block.top_flowers .flex .desc p {
  font-size: 20px;
  line-height: 40px;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.top_flowers .flex .image {
    width: 40%;
  }

  .wrapper .block.top_flowers .flex .desc {
    margin-right: 0;
    width: 60%;
    padding: 0 2%;
  }

  .wrapper .block.top_flowers .flex.rev .desc {
    margin-left: 0;
    width: 60%;
    padding: 0 2%;
  }
}

@media screen and (max-width: 768px) {
  .wrapper .block.top_flowers {
    width: 100%;
    padding: 5.333vw 2.667vw 13.333vw;
  }

  .wrapper .block.top_flowers .flex {
    flex-direction: column-reverse;
    margin-bottom: 13.333vw;
  }

  .wrapper .block.top_flowers .flex.rev {
    flex-direction: column-reverse;
  }

  .wrapper .block.top_flowers .flex h3 {
    margin-bottom: 8vw;
    font-size: 5.333vw;
    line-height: 1.5;
  }

  .wrapper .block.top_flowers .flex .image {
    width: 100%;
  }

  .wrapper .block.top_flowers .flex .image img {
    width: 100%;
    height: auto;
  }

  .wrapper .block.top_flowers .flex .desc {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 8vw;
    padding: 0;
    width: 100%;
  }

  .wrapper .block.top_flowers .flex.rev .desc {
    margin-right: 0;
    margin-left: 0;
    padding: 0;
    width: 100%;
  }

  .wrapper .block.top_flowers .flex .desc p {
    font-size: 4vw;
    line-height: 2;
  }
}

/*top_catch*/
.wrapper .block.top_catch {
  background: url(../images/top_catch_bg.png) no-repeat;
  background-size: cover;
}

.wrapper .block.top_catch p {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #fff;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 30px;
  line-height: 60px;
}

@media screen and (max-width: 768px) {
  .wrapper .block.top_catch {
    background-position: center;
  }

  .wrapper .block.top_catch p {
    font-size: 8vw;
    line-height: 1.5;
  }
}

/*top_kankitsu*/
.wrapper .block.top_kankitsu {
  background: url(../images/top_kankitsu_bg.png) no-repeat center;
  background-size: cover;
  margin-bottom: 100px;
}

.wrapper .block.top_kankitsu .flex {
  width: 1380px;
  margin: 0 auto;
}

.wrapper .block.top_kankitsu .desc {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 30px;
}

.wrapper .block.top_kankitsu .desc h3 {
  color: #1e8131;
  line-height: 50px;
  margin-left: 40px;
  font-weight: bold;
}

.wrapper .block.top_kankitsu .desc p {
  font-size: 20px;
  line-height: 40px;
}

.wrapper .block.top_kankitsu .desc p span {
  text-combine-upright: all;
}

.wrapper .block.top_kankitsu .image {
  max-width: 833px;
  width: 60%;
}

.wrapper .block.top_kankitsu .image img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.top_kankitsu .flex {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .wrapper .block.top_kankitsu {
    padding: 0;
    margin-bottom: 30px;
  }

  .wrapper .block.top_kankitsu .flex {
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding-bottom: 9.333vw;
  }

  .wrapper .block.top_kankitsu .desc h3 {
    margin-left: 20px;
    font-size: 8vw;
    line-height: 1.5;
  }

  .wrapper .block.top_kankitsu .desc p {
    line-height: 1.5;
    font-size: 5.067vw;
  }

  .wrapper .block.top_kankitsu .image {
    width: 100%;
    margin-bottom: 30px;
  }
}

/*top_syukaku*/
.wrapper .block.top_syukaku {
}

.wrapper .block.top_syukaku .flex {
  margin-bottom: 140px;
  justify-content: space-between;
  align-items: center;
}

.wrapper .block.top_syukaku .flex:last-of-type {
  margin-bottom: 0;
}

.wrapper .block.top_syukaku .flex.rev {
  flex-direction: row-reverse;
  justify-content: space-between;
}

.wrapper .block.top_syukaku .flex h3 {
  color: #1e8131;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 60px;
  font-weight: bold;
}

.wrapper .block.top_syukaku .flex .image {
  width: 50%;
}

.wrapper .block.top_syukaku .flex .image figure {
  height: 535px;
}

.wrapper .block.top_syukaku .flex .desc {
  margin-right: 130px;
  box-sizing: border-box;
}

.wrapper .block.top_syukaku .flex.rev .desc {
  margin-right: 0;
  margin-left: 130px;
}

.wrapper .block.top_syukaku .flex .desc p {
  font-size: 20px;
  line-height: 40px;
}

@media screen and (max-width: 1380px){
  .wrapper .block.top_syukaku .flex .image {
    width: 40%;
  }

  .wrapper .block.top_syukaku .flex .desc {
    margin-right: 0;
    width: 60%;
    padding: 0 2%;
  }

  .wrapper .block.top_syukaku .flex.rev .desc {
    margin-left: 0;
    width: 60%;
    padding: 0 2%;
  }
}

@media screen and (max-width: 768px) {
  .wrapper .block.top_syukaku {
    width: 100%;
    padding: 0 2.667vw 13.333vw;
  }

  .wrapper .block.top_syukaku .flex {
    flex-direction: column-reverse;
    margin-bottom: 13.333vw;
  }

  .wrapper .block.top_syukaku .flex.rev {
    flex-direction: column-reverse;
    margin-bottom: 13.333vw;
  }

  .wrapper .block.top_syukaku .flex h3 {
    color: #1e8131;
    font-size: 5.333vw;
    line-height: 1.5;
    margin-bottom: 8vw;
  }

  .wrapper .block.top_syukaku .flex .image {
    width: 100%;
  }

  .wrapper .block.top_syukaku .flex .image img {
    width: 100%;
    height: auto;
  }

  .wrapper .block.top_syukaku .flex .desc {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .wrapper .block.top_syukaku .flex.rev .desc {
    margin-left: 0;
    width: 100%;
  }

  .wrapper .block.top_syukaku .flex .desc p {
    margin-bottom: 8vw;
    font-size: 4vw;
    line-height: 2;
  }
}

/*top_catch2*/
.wrapper .block.top_catch2 {
  background: url(../images/top_catch2_bg.png) no-repeat;
  background-size: cover;
}

.wrapper .block.top_catch2 p {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 30px;
  line-height: 60px;
  margin: 0 auto;
}

.wrapper .block.top_catch2 p span {
  text-combine-upright: all;
}

@media screen and (max-width: 768px) {
  .wrapper .block.top_catch2 {
    background-position: 36%;
  }

  .wrapper .block.top_catch2 p {
    line-height: 1.5;
    font-size: 8vw;
  }
}

/*top_etc*/
.wrapper .block.top_etc {
  padding-bottom: 0;
}

.wrapper .block.top_etc h3 {
  font-size: 30px;
  text-align: center;
  font-weight: bold;
}

.wrapper .block.top_etc h3 span {
  color: #1e8131;
}

.wrapper .block.top_etc .cont {
  padding: 100px 0;
  background: url(../images/top_etc_bg.png) no-repeat center;
  background-size: cover;
}

.wrapper .block.top_etc .cont .inner {
  width: 1380px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 200px;
}

.wrapper .block.top_etc h4 {
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: bold;
}

.wrapper .block.top_etc .cont .inner .desc {
  width: 50%;
  line-height: 30px;
}

.wrapper .block.top_etc .cont .inner .desc p {
  font-size: 18px;
}

.wrapper .block.top_etc .cont .inner .image ul {
  margin-top: 37px;
}

.wrapper .block.top_etc .cont .inner .image ul li {
  list-style: none;
  font-size: 12px;
  color: #9d9d9d;
  text-align: right;
  line-height: 1.5;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.top_etc .cont {
    background-position-y: 70px;
    text-align: center;
  }

  .wrapper .block.top_etc .cont .inner {
    width: 95%;
    text-align: center;
    display: inline-block;
  }

  .wrapper .block.top_etc .cont .inner .desc {
    width: auto;
    margin-bottom: 20px;
    text-align: left;
    display: inline-block;
  }

  .wrapper .block.top_etc .cont .inner .image {
    width: 100%;
    text-align: center;
    max-width: 625px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .wrapper .block.top_etc {
    padding: 0;
  }

  .wrapper .block.top_etc h3 {
    padding: 13.333vw 2.667vw 0;
    text-align: left;
    line-height: 1.5;
    font-size: 8vw;
  }

  .wrapper .block.top_etc .cont {
    padding: 8vw 0 53.333vw;
    background-position: 36%;
  }

  .wrapper .block.top_etc .cont .inner{
    width: 100%;
    padding: 0 20px 0;
    box-sizing: border-box;
    display: block;
  }

  .wrapper .block.top_etc h4 {
    font-size: 5.333vw;
    margin-bottom: 4vw;
  }

  .wrapper .block.top_etc .cont .inner .desc {
    width: 100%;
    margin-bottom: 4vw;
  }

  .wrapper .block.top_etc .cont .inner .desc p {
    font-size: 4vw;
    line-height: 2;
  }

  .wrapper .block.top_etc .cont .inner .image {
    width: 100%;
  }
}

/*top_vitamin*/
.wrapper .block.top_vitamin {
  padding: 0;
}

.wrapper .block.top_vitamin .cont {
  padding: 100px 0;
  background: url(../images/top_vitamin_bg.png) no-repeat center;
  background-size: cover;
}

.wrapper .block.top_vitamin .cont .inner {
  width: 1380px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.wrapper .block.top_vitamin h4 {
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: bold;
}

.wrapper .block.top_vitamin h4 span {
  font-size: 60px;
}

.wrapper .block.top_vitamin .cont .inner .desc {
  width: 50%;
  line-height: 30px;
}

.wrapper .block.top_vitamin .cont .inner .desc p {
  font-size: 18px;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.top_vitamin .cont .inner {
    width: 95%;
    display: block;
    text-align: center;
  }

  .wrapper .block.top_vitamin .cont .inner .desc {
    width: auto;
    margin-bottom: 20px;
    display: inline-block;
    text-align: left;
  }

  .wrapper .block.top_vitamin .cont .inner .image {
    width: 100%;
    text-align: center;
  }

  .wrapper .block.top_vitamin .cont .inner .image img {
    max-width: 641px;
  }
}

@media screen and (max-width: 768px) {
  .wrapper .block.top_vitamin .cont .inner {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .wrapper .block.top_vitamin .cont .inner .desc {
    width: 100%;
    margin-bottom: 30px;
  }

  .wrapper .block.top_vitamin .cont .inner .desc p {
    font-size: 4vw;
    line-height: 2;
  }

  .wrapper .block.top_vitamin .cont .inner .image img {
    width: 100%;
    height: auto;
  }
}

/*top_hakkou*/
.wrapper .block.top_hakkou {
  padding: 0;
  margin-bottom: 60px;
}

.wrapper .block.top_hakkou .cont {
  background: url(../images/top_hakkou_bg.png) no-repeat center;
  background-size: cover;
}

.wrapper .block.top_hakkou .cont .inner {
  width: 1380px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 100px 0;
}

.wrapper .block.top_hakkou .cont .inner .image ul {
  margin-top: 37px;
}

.wrapper .block.top_hakkou .cont .inner .image ul li {
  list-style: none;
  font-size: 12px;
  color: #9d9d9d;
  text-align: right;
  line-height: 1.5;
}

.wrapper .block.top_hakkou h4 {
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: bold;
}

.wrapper .block.top_hakkou .cont .inner .desc {
  width: 50%;
  line-height: 30px;
  padding-left: 60px;
  box-sizing: border-box;
}

.wrapper .block.top_hakkou .cont .inner .desc p {
  font-size: 18px;
}

.wrapper .block.top_hakkou .button {
  border: 1px solid #000;
  text-align: center;
  width: 280px;
  margin: 0 auto;
}

.wrapper .block.top_hakkou .button a {
  display: block;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  color: #000;
  text-decoration: none;
}

@media screen and (max-width: 1380px){
  .wrapper .block.top_hakkou .cont .inner {
    width: 95%;
    flex-direction: column-reverse;
  }

  .wrapper .block.top_hakkou .cont .inner .desc {
    width: auto;
    padding-left: 0;
    margin-bottom: 20px;
  }

  .wrapper .block.top_hakkou .cont .inner .image {
    width: 100%;
    max-width: 504px;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .wrapper .block.top_hakkou {
    padding: 0;
    margin-bottom: 20px;
  }

  .wrapper .block.top_hakkou .cont {
    padding: 8vw 0;
  }

  .wrapper .block.top_hakkou .cont .inner {
    width: 100%;
    padding: 20px;
    margin-bottom: 40px;
    box-sizing: border-box;
    flex-direction: column-reverse;
  }

  .wrapper .block.top_hakkou .cont .inner .desc {
    width: 100%;
    padding-left: 0;
    margin-bottom: 30px;
  }

  .wrapper .block.top_hakkou .cont .inner .desc p {
    font-size: 4vw;
    line-height: 2;
  }
}

/*top_ikumou*/
.wrapper .block.top_ikumou {
  width: 100%;
  background-color: #ebf6f2;
  padding: 100px 0;
}

.wrapper .block.top_ikumou h3 {
  font-size: 32px;
  margin-bottom: 60px;
  text-align: center;
  color: #1e8131;
  font-weight: bold;
}

.wrapper .block.top_ikumou p.desc {
  text-align: center;
  font-size: 18px;
  line-height: 50px;
  margin-bottom: 100px;
}

.wrapper .block.top_ikumou .ikumouBox {
  width: 1380px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 55px 80px;
  box-sizing: border-box;
  margin: 0 auto 20px;
}

.wrapper .block.top_ikumou .ikumouBox .icon {
  width: 30%;
}

.wrapper .block.top_ikumou .ikumouBox .icon img {
  max-width: 100%;
}

.wrapper .block.top_ikumou .ikumouBox .desc {
  width: 68%;
  padding-left: 2%;
}

.wrapper .block.top_ikumou .ikumouBox h4 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.wrapper .block.top_ikumou .ikumouBox h4:before {
  content: "";
  display: inline-block;
  background-color: #000;
  width: 8px;
  height: 36px;
  vertical-align: middle;
  margin: -3px 10px 0 0;
}

.wrapper .block.top_ikumou .ikumouBox p {
  font-size: 18px;
  line-height: 40px;
}

.wrapper .block.top_ikumou .ikumouBox p.text {
  margin-bottom: 40px;
}

.wrapper .block.top_ikumou .ikumouBox .button {
  width: 150px;
  border: 1px solid #000;
  text-align: center;
}

.wrapper .block.top_ikumou .ikumouBox .button a {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 20px 0;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  line-height: 0;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.top_ikumou .ikumouBox {
    width: 95%;
    padding: 55px 10px;
  }
}

@media screen and (max-width: 768px) {
  .wrapper .block.top_ikumou {
    padding: 13.333vw 2.667vw;
  }

  .wrapper .block.top_ikumou p.desc {
    line-height: 2;
    font-size: 4vw;
    margin-bottom: 13.333vw;
  }

  .wrapper .block.top_ikumou h3 {
    font-size: 8vw;
    margin-bottom: 8vw;
  }

  .wrapper .block.top_ikumou .ikumouBox {
    padding: 8vw 2.667vw;
    width: 100%;
    margin-bottom: 8vw;
  }

  .wrapper .block.top_ikumou .ikumouBoxs.sp .ikumouBox {
    display: block;
  }

  .wrapper .block.top_ikumou .ikumouBoxs.sp .ikumouBox .sp_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5.333vw;
  }

  .wrapper .block.top_ikumou .ikumouBox .icon img {
    width: 100%;
    height: auto;
  }

  .wrapper .block.top_ikumou .ikumouBox .desc {
    width: 70%;
  }

  .wrapper .block.top_ikumou .ikumouBoxs.sp .ikumouBox .desc {
    width: 100%;
  }

  .wrapper .block.top_ikumou .ikumouBox h4 {
    width: 65%;
    line-height: 1.5;
    margin-top: 5.333vw;
    font-size: 5.333vw;
  }

  .wrapper .block.top_ikumou .ikumouBox h4:before{
    display: none;
  }

  .wrapper .block.top_ikumou .ikumouBox .button {
    width: 100%;
  }

  .wrapper .block.top_ikumou .ikumouBox .button a {
    padding: 5.333vw 0;
    font-size: 4vw;
  }

  .wrapper .block.top_ikumou .ikumouBox p {
    font-size: 4vw;
    line-height: 2;
  }

  .wrapper .block.top_ikumou .ikumouBox p.text {
    margin-bottom: 5.333vw;
  }
}

/*footer*/
footer {
  padding: 100px 0;
  text-align: center;
}

footer img {
  width: auto !important;
}

footer p {
  font-size: 16px !important;
  margin-bottom: 30px !important;
  line-height: 26px!important;
}

footer .f_logo {
  width: 296px;
  margin: 0 auto 40px;
}

footer .links p {
  margin-bottom: 20px;
  line-height: normal;
}

footer .links .linkBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

footer .links .linkBox div {
  width: 100px;
  padding: 0 10px;
  cursor: pointer;
}

footer nav ul {
  width: 860px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 20px;
}

footer nav ul.dots li:after {
  content: "・";
  display: inline-block;
  margin-left: 12px;
}

footer nav ul.dots li.contact:after {
  content: "";
  display: none;
}

footer nav ul.dots li:last-of-type:after {
  content: "";
  display: none;
}

footer nav ul li a {
  text-decoration: none;
  color: #000;
}

footer p.copy {
  font-size: 12px !important;
  margin-bottom: 12px !important;
  line-height: normal !important;
}

@media screen and (max-width: 768px) {
  footer .links p {
    margin-bottom: 10px;
  }

  footer .links .linkBox div {
    width: 22%;
  }

  footer nav ul {
    width: 50%;
    justify-content: center;
  }

  footer nav ul.dots li {
    width: 50%;
    text-align: left;
    margin-bottom: 12px;
  }

  footer nav ul.dots li:after {
    content: "";
    display: none;
    margin-left: 0;
  }

  footer nav ul.dots li:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 1px;
    background-color: #000;
    vertical-align: middle;
    margin: -3px 10px 0 0;
  }

  footer nav ul.dots li:last-of-type:before {
    content: "";
    display: none;
  }
}

@media screen and (max-width: 600px) {
  footer nav ul {
    width: 70%;
    justify-content: center;
  }
}

@media screen and (max-width: 500px) {
  footer nav ul {
    width: 90%;
    justify-content: center;
  }
}


/* ============== answer ============== */
.wrapper .block.ansTitle {
  background: url(../images/qa_bg.png) no-repeat center;
  background-size: cover;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 60px;
  line-height: 280px;
  margin-top: 115px;
}

.wrapper .block.qa {
  width: 1000px;
  margin: 0 auto;
  padding: 60px 0 0;
}

@media screen and (max-width: 1048px) {
  .wrapper .block.qa {
    width: 95%;
  }
}

@media screen and (max-width: 768px) {
  .wrapper .block.qa {
    width: 100%;
    padding: 60px 20px 0;
  }

  .wrapper .block.ansTitle {
    margin-top: 0;
    font-size: 8vw;
    line-height: 37.333vw;
  }
}

.wrapper .block.qa h3 {
  color: #1e8131;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 60px;
  text-align: center;
}

.wrapper .block.qa .top p {
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  margin-bottom: 100px;
}

.wrapper .block.qa .qaBox {
  margin-bottom: 60px;
}

.wrapper .block.qa .qaBox:last-of-type {
  margin-bottom: 0;
}

.wrapper .block.qa .qaBox h4 {
  font-size: 24px;
  padding: 20px;
  background-color: #ececec;
  margin-bottom: 30px;
}

.wrapper .block.qa .qaBox p {
  font-size: 18px;
  line-height: 40px;
}

.wrapper .block.howto {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 1048px) {
  .wrapper .block.howto {
    width: 95%;
  }
}

@media screen and (max-width: 768px) {
  .wrapper .block.howto {
    width: 100%;
  }
}

.wrapper .block.howto .howtoBox {
  border: 1px solid #eaeaea;
  padding: 20px;
  margin-bottom: 20px;
}

.wrapper .block.howto .howtoBox h4 {
  font-size: 20px;
  color: #1e8131;
  border-bottom: 1px solid #1e8131;
  display: inline-block;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.wrapper .block.howto .howtoBox p {
  font-size: 18px;
  line-height: 40px;
}

.wrapper .block.howto .howtoBox p a {
  display: block;
  color: #187bc8;
  text-decoration: underline;
  margin-bottom: 40px;
}

.wrapper .block.howto .howtoBox p span {
  display: block;
  color: #9d9d9d;
  font-size: 12px;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .wrapper .block.qa h3 {
    color: #1e8131;
    font-size: 5.333vw;
    line-height: 1.5;
    margin-bottom: 8vw;
    text-align: center;
  }

  .wrapper .block.qa .top p {
    text-align: center;
    line-height: 2;
    font-size: 4vw;
    margin-bottom: 13.333vw;
  }

  .wrapper .block.qa .qaBox {
    margin-bottom: 60px;
  }

  .wrapper .block.qa .qaBox:last-of-type {
    margin-bottom: 0;
  }

  .wrapper .block.qa .qaBox h4 {
    font-size: 5vw;
    line-height: 1.5;
    padding: 20px;
    background-color: #ececec;
    margin-bottom: 30px;
  }

  .wrapper .block.qa .qaBox p {
    line-height: 2;
    font-size: 4vw;
  }

  .wrapper .block.howto .howtoBox h4 {
    font-size: 4vw;
  }

  .wrapper .block.howto .howtoBox p {
    font-size: 4vw;
    line-height: 2;
  }
}


/* ============== lineup ============== */
.wrapper .block.lineupTitle {
  background: url(../images/lineup_bg.png) no-repeat center;
  background-size: cover;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 60px;
  line-height: 280px;
  margin-top: 115px;
}

@media screen and (max-width: 768px) {
  .wrapper .block.lineupTitle {
    background-size: 200%;
    padding: 100px 0;
    margin-top: 0;
    font-size: 8vw;
    line-height: 37.333vw;
  }
}

@media screen and (max-width:450px) {
  .wrapper .block.lineupTitle {
    background-size: 200%;
    padding: 50px 0;
  }
}

.wrapper .block.lineupMenu {
  width: 1157px;
  margin: 0 auto;
}

.wrapper .block.lineupMenu h2 {
  padding-bottom: 60px;
  font-weight: bold;
  line-height: 30px;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.lineupMenu {
    width: 95%;
  }
}

@media screen and (max-width: 768px) {
  .wrapper .block.lineupMenu {
    width: 100%;
  }

  .wrapper .block.lineupMenu h2 {
    padding-bottom: 10px;
  }
}

.wrapper .block.lineupMenu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style-type: none;
}

.wrapper .block.lineupMenu li {
  border: 1px solid #000;
  width: 350px;
  text-align: center;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.lineupMenu li {
    width: calc(98%/3);
  }
}

@media screen and (max-width: 768px) {
  .wrapper .block.lineupMenu li {
    width: 100%;
    margin-bottom: 20px;
  }
}

.wrapper .block.lineupMenu li a {
  display: block;
  width: 100%;
  padding: 20px 0;
  color: #000;
  text-decoration: none;
  font-size: 18px;
}

.wrapper .block.lineup {
  width: 1380px;
  margin: 0 auto;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.lineup {
    width: 95%;
  }
}

@media screen and (max-width: 768px) {
  .wrapper .block.lineup {
    width: 100%;
  }
}

.wrapper .block.lineup h3 {
  font-size: 42px;
  margin-bottom: 100px;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .wrapper .block.lineup h3{
    line-height: 1.5;
    font-size: 5.333vw;
    margin-bottom: 13.333vw;
  }
}

.wrapper .block.lineup .items {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 100px;
}

.wrapper .block.lineup .items .itemBox {
  width: 50%;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .wrapper .block.lineup .items {
    margin-bottom: 0;
  }

  .wrapper .block.lineup .items .itemBox {
    width: 100%;
    margin-bottom: 13.333vw;
  }
}

.wrapper .block.lineup .items .itemBox .image {
  width: 30%;
  text-align: center;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.lineup .items .itemBox .image {
    width: 28%;
  }
}

@media screen and (max-width: 768px) {
  .wrapper .block.lineup .items .itemBox .image img {
    width: 50%;
    height: auto;
  }

  .wrapper .block.lineup .items .itemBox .image.item16 img {
    width: 80%;
    height: auto;
  }
}

.wrapper .block.lineup .items .itemBox .detail {
  width: 70%;
}

.wrapper .block.lineup .items .itemBox .detail .cat {
  margin-bottom: 10px;
  font-weight: bold;
}

.wrapper .block.lineup .items .itemBox .detail .cat span {
  display: inline-block;
  margin-left: 12px;
  vertical-align: middle;
  border: 1px solid #000;
  padding: 4px;
}

.wrapper .block.lineup .items .itemBox .detail h4 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 30px;
  font-weight: bold;
}

.wrapper .block.lineup .items .itemBox .detail .price,
.wrapper .block.lineup .items .itemBox .detail .cont {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.wrapper .block.lineup .items .itemBox .detail .price2 {
  display: flex;
  flex-wrap: wrap;
  font-weight: bold;
  color: rgba(228,0,3,1.00);
  margin-bottom: 8px;
}

.wrapper .block.lineup .items .itemBox .detail .cont {
  margin-bottom: 10px;
}

.wrapper .block.lineup .items .itemBox .detail .price .ttl,
.wrapper .block.lineup .items .itemBox .detail .cont .ttl {
  min-width: 48px;
  margin-right: 8px;
}

.wrapper .block.lineup .items .itemBox .detail .price2 .ttl {
  min-width: 48px;
  margin-right: 8px;
}

.wrapper .block.lineup .items .itemBox .detail .price .line {
  text-decoration: line-through;
}

.wrapper .block.lineup .items .itemBox .detail .desc::before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #000;
  margin-bottom: 20px;
}

.wrapper .block.lineup .items .itemBox .detail .desc {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
}

.wrapper .block.lineup .items .itemBox .detail .button p {
  border: 1px solid #000;
  text-align: center;
  width: 200px;
}

@media screen and (max-width: 768px) {
  .wrapper .block.lineup .items .itemBox .detail .button p {
    width: 100%;
  }
}

.wrapper .block.lineup .items .itemBox .detail .button p a {
  display: block;
  width: 100%;
  padding: 20px 0;
  text-decoration: none;
  color: #000;
}


/* ============= nukege_all ============ */
#nukege p {
  font-size: 18px;
}

#nukege li {
  list-style: none;
}

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

  .br-sp {
    display: none;
  }
}

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

  .br-sp {
    display: block;
  }
}

.pc {
  display: block!important;
}

.sp {
  display: none!important;
}

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

  .sp {
    display: block!important;
  }
}

@media screen and (max-width: 768px) {
  #nukege img {
    width: 100%;
  }
}

/*nukege_header*/
#nukege h2{
  width: 1380px;
  font-size: 40px;
  color: #1e8131;
  font-weight: bold;
  margin: 100px auto 120px;
  text-align: center;
}
@media screen and (max-width: 1380px) {
  #nukege h2{
    width: 95%;
  }
}
#nukege header{
  background-color: #fff;
  background: none;
  background-size: initial;
}
#nukege .box{
  width:1380px;
  margin: 0 auto 100px;
  display:flex;
}
#nukege .box:first-of-type{
  width:1380px;
  margin: 0 auto 100px;
  display:flex;
}

#nukege .box img,
#nukege .box p{
  margin: 0 0 0 100px;
  line-height:2;
}

@media screen and (max-width: 1380px) {
  #nukege .box img,
  #nukege .box p{
    margin: 0 0 0 2%;
  }
  #nukege .box:first-of-type{
    width:95%;
    justify-content: space-between;
    align-items: center;
  }
}

@media screen and (max-width: 768px){
  #nukege h2{
    width:100%;
    margin: 17.333vw auto 8vw;
    line-height: 1.5;
    font-size: 8vw;
  }
  #nukege .box {
    display: block;
    width: 100%;
  }
  #nukege .box:first-of-type{
    width:100%;
    margin: 0 auto 13.333vw;
    display:block;
  }
  #nukege .box img {
    display: block;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 4vw;
  }
  #nukege .box p {
    margin: 0 auto 60px;
    width: 96%;
    font-size: 4vw;
    line-height: 2;
  }
}

/* nukege_mokon */
#nukege .mokon{
  background-color: #ebf6f2;
  padding: 100px 0;
  margin: 0 auto;
}
#nukege .mokon .box_tit{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom:50px;
  width: 1380px;
}

@media screen and (max-width: 1380px) {
  #nukege .mokon .box_tit{
    width: 95%;
  }
}
#nukege .mokon .mt{
  margin-top:70px;
}
#nukege .mokon .mb{
  margin:0 auto 70px!important;
}
#nukege .mokon .box_tit h3:first-of-type{
  color: #1e8131;
  font-size:85px;
  font-weight: bold;
  padding: 0 0.5rem 0 0;
  margin-top: 10px;
}
#nukege .mokon .box_tit h3:last-of-type{
  font-size: 30px;
  font-weight: bold;
  padding: 0 0 0 1rem;
  border-left: 1px solid #000;

}
#nukege .mokon .box_tit h3:last-of-type span:first-of-type{
  color:#1e8131;
}
#nukege .mokon .box_tit h3:last-of-type span:last-of-type{
  display:block;
  margin-top:10px;
}
#nukege .mokon .box{
  width:1380px;
  margin: 0 auto;
  display:flex;
  justify-content: space-between;
}

#nukege .mokon .box img{
  /*margin: 0 0 0 120px;*/
  line-height:2;
}
#nukege .mokon .box p{
  /*margin: 0 0 0 150px;*/
  width:50%;
  line-height:2;
}

@media screen and (max-width: 1380px) {
  #nukege .mokon .box{
    width: 95%;
  }
}

#nukege .mokon .box div{
  width:50%;
  text-align: center;
}

@media screen and (max-width: 768px){
  #nukege .mokon .box div{
    width:100%;
    text-align: center;
  }

  #nukege .mokon .box div img{
    width:70%;
    height: auto;
  }

  #nukege .mokon .box_tit h3:last-of-type{
    font-size:5.333vw;
    line-height: 1.5;
  }
}

#nukege .box4area{
  width: 1380px;
  margin: 0 auto;
  background:#fff;
  border-radius: 10px;
  padding:70px 180px;
  box-sizing: border-box;
}
@media screen and (max-width: 1380px) {
  #nukege .box4area{
    width: 95%;
    padding:70px 2%;
  }
}

#nukege .box4area h3 {
  margin: 0 auto 70px;
  display: table;
  font-size: 30px;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
  font-weight: bold;
}

#nukege .box4area ul{
  display: flex;
  flex-wrap:wrap;
  justify-content: space-around;
}
#nukege .box4area ul li{
  width:461px;
}
@media screen and (max-width: 1380px) {
  #nukege .box4area ul li{
    width:calc(96%/2);
  }
}
#nukege .box4area li:nth-of-type(3),
#nukege .box4area li:nth-of-type(4){
  margin-top: 50px;
}
#nukege .box4area h4{
  font-size: 12px;
  font-weight: bold;
  padding: 0 0 0 1rem;
  margin-top: 10px;
  border-left: 4px solid #000;
}
#nukege .box4area h4 span{
  font-size: 20px;
  color:#1e8131;
  display:block;
  margin-top:10px;
}
#nukege .mokon .box_tit2{
  margin:20px 0 25px;
}
#nukege .box4area p{
  line-height: 1.8;
}
#nukege .box4area img{
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px){
  #nukege .box4area h4{
    font-size:3.2vw;
  }
  #nukege .box4area h4 span{
    font-size: 5.333vw;
  }
  #nukege p{
    font-size: 4vw;
    line-height: 2;
  }
  #nukege .mokon{
    padding: 13.333vw 0;
  }
  #nukege .mokon .box_tit {
    margin-bottom: 8vw;
    width: 100%;
    display: block;
    text-align: center;
  }
  #nukege .mokon .box_tit h3{
    line-height: 1.5;
    padding: 0 0 0 0!important;
    border-left: none!important;
    font-size: 8vw;
  }
  #nukege .mokon .box_tit h3:last-child{
    border-top: 1px solid #000;
    padding-top: 1.5rem!important;
  }
  #nukege .mokon .box_tit h3:first-of-type{
    font-size: 8vw;
  }
  #nukege .mokon .box {
    width: 100%;
    margin: 0 auto;
    display: block;
    padding:0 20px;
    box-sizing: border-box;
  }
  #nukege .mokon .box img {
    margin: 0 auto;
    max-width: 378px;
    display: block;
  }
  #nukege .mokon .box p {
    width:100%;
    margin: 60px auto;
  }

  #nukege .box4area {
    width: 96%;
    padding: 0 2%;
  }
  #nukege .box4area h3 {
    padding: 8vw 0 2.667vw;
    line-height: 1.5;
    text-align: center;
    font-size: 5.333vw;
  }
  #nukege .mokon .box_tit2 {
    /*margin: 60px 0;*/
    margin: 8vw 0 4vw;
  }
  #nukege .box4area li{
    width:100%!important;
    margin-bottom: 60px;
  }
  #nukege .box4area li:nth-of-type(3),
  #nukege .box4area li:nth-of-type(4) {
    margin-top: 0;
  }
  #nukege .box4area li:nth-of-type(1) img{
    /* max-width:13.2vw; */
    width: 26.4vw;
  }
  #nukege .box4area li:nth-of-type(2) img{
    /* max-width:24.667vw; */
    width: 49.334vw;
  }
  #nukege .box4area li:nth-of-type(3) img{
    /* max-width:35.2vw; */
    width: 70.4vw;
  }
  #nukege .box4area li:nth-of-type(4) img{
    /* max-width:32vw; */
    width: 64vw;
  }
}

/* nukege_tohi */
#nukege .tohi{
  width: 1380px;
  margin: 0 auto;
}
@media screen and (max-width: 1380px) {
  #nukege .tohi{
    width: 95%;
  }
}

#nukege .tohi .box {
  width:1000px;
  position: relative;
  margin: 100px auto;
  border: solid 1px #1e8131;
  box-sizing: border-box;
}
@media screen and (max-width: 1380px) {
  #nukege .tohi{
    width: 95%;
  }
  #nukege .tohi .box {
    width:100%;
  }
}
#nukege .tohi .box h3{
  width: 732px;
  position: absolute;
  display: block;
  top: -40px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  line-height: 1.4;
  font-size: 30px;
  background: #FFF;
  color: #1e8131;
  font-weight: bold;
}
#nukege .tohi .box h3 span{
  font-size: 20px;
}
#nukege .tohi .box p{
  margin: 0;
  padding: 0;
  font-size: 30px;
}
#nukege .tohi .box ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  padding:100px 75px 60px;
}
#nukege .tohi .box li{
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.5;
  box-sizing: border-box;
}

@media screen and (max-width: 768px){
  #nukege .tohi .box li{
    margin-bottom: 4vw;
    font-size: 4vw;
    line-height: 1.5;
    padding-left: 2em;
    text-indent: -2em;
  }
  #nukege .tohi .box li:before{
    padding-left:1em;
    position:relative;
  }
}
#nukege .tohi .box li:before{
  content: "";
  border: 1px solid #1e8131;
  padding: 8px 8px;
  margin-top: -4px;
  margin-right: 1em;
  display: inline-block;
  vertical-align: middle;
}

#nukege .tohi .box li:nth-of-type(odd){
  width: 460px;
}

@media screen and (max-width: 768px){
  #nukege .tohi {
    width: 96%;
  }

  #nukege .tohi .box {
    width: 96%;
    margin: 26.666vw auto 13.333vw;
  }
  #nukege .tohi .box h3 {
    width: 90%;
    font-size: 5.333vw;
  }
  #nukege .tohi .box h3 span{
    font-size: 70%;
  }
  #nukege .tohi .box .box_txt{
    text-align:center;
  }
  #nukege .tohi .box ul {
    display: inline-block;
    text-align: left;
    padding:23vw 0 10.667vw;
  }
  #nukege .tohi .box li:nth-of-type(odd) {
    width: 100%;
  }
  #nukege .tohi .box li:before {
    vertical-align: inherit;
  }

}
/* @media screen and (max-width: 500px){
    #nukege .tohi .box h3 {
        width: 100%;
        font-size:7vw;
    }
} */
@media screen and (max-width: 420px){
  /* #nukege .tohi .box ul {
      padding:150px 0 40px;
  } */
}


/* ============= usuge.html ============ */
/* usuge_all */
#usuge p{font-size:18px;}
#usuge li{list-style:none;}
#usuge a{text-decoration: none;}

#usuge a:link { color: #000; }
#usuge a:visited { color: #000; }
/*#usuge a:hover { opacity: .5 }*/
#usuge a:active { color: #000; }

@media screen and (max-width: 768px){
  #usuge .wrapper {
    width: 96%!important;
    margin: 0 auto;
    padding: 0 2%
  }
}

/* usuge_header */
#usuge header{
  background-color: #fff;
  background: none;
  background-size: initial;
}

/* usuge_sukoyaka */
#usuge .sukoyaka{
  width: 1380px;
  margin: 215px auto;
}
@media screen and (max-width: 1380px) {
  #usuge .sukoyaka{
    width: 95%;
    margin: 215px auto 400px;
  }
}
#usuge .sukoyaka h2 {
  font-size: 40px;
  color: #1e8131;
  font-weight: bold;
  margin: 100px auto 120px;
  text-align: center;
}
#usuge .sukoyaka .tit {
  font-size: 30px;
  font-weight: bold;
  margin: 100px auto 70px;
  text-align: center;
  line-height: 1.5;
}
#usuge .sukoyaka .tit span{
  color: #1e8131;
}
#usuge .sukoyaka p{
  /*font-weight: 500;*/
  line-height: 2;
}
#usuge .sukoyaka ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 1220px;
  margin: 100px auto;
}
@media screen and (max-width: 1380px) {
  #usuge .sukoyaka ul{
    width: 95%;
  }
}
#usuge .sukoyaka li{
  width:575px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1380px) {
  #usuge .sukoyaka li{
    width:calc(95%/2);
  }
}
@media screen and (max-width: 1048px) {
  #usuge .sukoyaka li{
    width:100%;
    margin-top: 60px;
  }
}
#usuge .sukoyaka li:nth-of-type(3),
#usuge .sukoyaka li:nth-of-type(4){
  margin-top: 60px;
}
#usuge .sukoyaka li div{
  padding: 20px;
}
#usuge .sukoyaka li h3{
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #1e8131;
}
#usuge .sukoyaka li p{
  font-size: 16px;
}

#usuge .sukoyaka .box{
  position: relative;
  margin-top: 120px;
}
#usuge .sukoyaka .box h3{
  font-size: 30px;
  font-weight: bold;
  color: #1e8131;
  writing-mode: vertical-rl;
  float: right;
  line-height: 2;
  margin-right: 160px;
}
#usuge .sukoyaka .box h3:last-of-type{
  margin-right: 45px;
}
#usuge .sukoyaka .box h3 span{
  border-right: 1px solid #1e8131;
  padding: 0 10px 0 0;
}

#usuge .sukoyaka .box h3 span span{
  text-combine-upright: all;
}

#usuge .sukoyaka .box p{
  clear: both;
}
#usuge .sukoyaka .box img{
  position: absolute;
  bottom: -130px;
  left: 10%;
}

@media screen and (max-width: 1380px) {
  #usuge .sukoyaka .box{
    margin-top: 50px;
  }
  #usuge .sukoyaka .box img{
    bottom: -430px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px){

  #usuge .sukoyaka {
    width: 96%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 2% 0;
  }
  #usuge .sukoyaka h2 {
    margin: 20vw auto 8vw;
    font-size: 8vw;
    line-height: 1.5
  }
  #usuge .sukoyaka .tit {
    margin: 8vw auto;
    font-size: 5.333vw;
  }
  #usuge .sukoyaka p{
    font-size: 4vw;
    line-height: 2;
  }
  #usuge .sukoyaka li p{
    font-size: 4vw;
  }
  #usuge .sukoyaka li h3{
    font-size: 5.333vw;
    line-height: 1.5;
    margin-bottom: 2.667vw;
  }
  #usuge .sukoyaka ul {
    display: block;
    margin: 8vw auto 5.333vw;
    width:100%;
  }
  #usuge .sukoyaka li {
    /* display: block; */
    width: 100%;
  }
  #usuge .sukoyaka li img{
    display: block;
    margin:  0 auto;
    width: 28%;
    margin-right: 2%;
  }
  #usuge .sukoyaka li:nth-of-type(2),
  #usuge .sukoyaka li:nth-of-type(3),
  #usuge .sukoyaka li:nth-of-type(4) {
    margin-top: 5.333vw;
  }
  #usuge .sukoyaka li div {
    padding: 4vw 0;
  }
  #usuge .sukoyaka .box {
    margin-top: 8vw;
    display: flex;
    justify-content: center;
    flex-flow: row-reverse;
  }
  #usuge .sukoyaka .box h3 {
    margin-right: 0;
    font-size: 5.333vw;
  }
  #usuge .sukoyaka .box img {
    bottom: -295px;
    left: 0;
    right: 0;
    width: 80%;
    margin: auto;
  }
  #usuge .shukan {
    margin-top: 194px;
    box-sizing: border-box;
    padding: 80px 20px;
  }

}

@media screen and (max-width: 500px){
  #usuge .sukoyaka .box img {
    bottom: -195px;
  }
  #usuge .shukan {
    margin-top: 90px;
  }
}

@media screen and (max-width: 400px){
  #usuge .sukoyaka .box img {
    bottom: -135px;
  }
  #usuge .shukan {
    margin-top: 55px;
  }
}


/* usuge_shukan */
#usuge .shukan{
  background: #ebf6f2;
  padding:100px 20px;
  box-sizing: border-box;

}
#usuge .shukan .wrapper{
  width: 1380px;
}

@media screen and (max-width: 1380px) {
  #usuge .shukan .wrapper{
    width: 95%;
  }
}
#usuge .shukan .bg {
  background: #fff;
  padding: 70px;
  border-radius: 5px;
}
#usuge .shukan p{
  line-height: 2;
}
#usuge .shukan .icon{
  display:block;
  margin: 60px auto 0;
}

@media screen and (max-width: 1380px) {
  #usuge .shukan .icon{
    width: 100px;
  }
}

#usuge .shukan h3:first-of-type{
  font-size: 30px;
  font-weight: bold;
  margin: 60px auto;
  line-height: 1.5;
  color: #1e8131;
  display: table;
}
#usuge .shukan .box_tit {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
#usuge .shukan .box_tit h4:first-of-type {
  color: #1e8131;
  font-size: 120px;
  font-weight: bold;
  padding: 0 0.5rem 0 0;
}
#usuge .shukan .box_tit h4:last-of-type {
  font-size: 30px;
  font-weight: bold;
  padding: 0 0 0 1rem;
  border-left: 1px solid #000;
  height: 65px;
  display: flex;
  align-items: center;
}
#usuge .shukan .box {
  /*position: relative;*/
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
#usuge .shukan .mt{
  margin-top: 20px;
}
#usuge .shukan .mtt{
  margin-top: 60px;
}
#usuge .shukan .boxy{
  margin: 0 0 0 85px;
}
#usuge .shukan .boxy h4 {
  font-size: 30px;
  color: #1e8131;
  margin-bottom: 30px;
  font-weight: bold;
}

/*#usuge .shukan .box img {
    margin: 0 auto;
    line-height: 2;
}*/
#usuge .shukan .box p {
  line-height: 2;
}
#usuge .shukan .box_area3_6source {
  position: relative;
  margin: 60px auto 0;
  width: 1240px;
  border: solid 1px #1e8131;
  box-sizing: border-box;
}
@media screen and (max-width: 1380px) {
  #usuge .shukan .box {
    display: block;
    text-align: center;
  }
  #usuge .shukan .boxy{
    text-align: left;
    margin: 20px 0 0;
  }
  #usuge .shukan .box_area3_6source {
    width: 95%;
  }
}
#usuge .shukan .box_area3 h4 {
  position: absolute;
  width: 620px;
  top: -20px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  line-height: 1.4;
  font-size: 30px;
  background: #FFF;
  color: #1e8131;
  font-weight: bold;
}
@media screen and (max-width: 1380px) {
  #usuge .shukan .box_area3 h4 {
    width: 320px;
  }
}
#usuge .shukan .box_area3 ul:first-of-type {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 70px 0 60px 75px;
}
#usuge .shukan .box_area3 ul:last-of-type {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 70px 75px 60px 0;
}
#usuge .shukan .box_area3_6source li {
  margin: 0 5px;
}
#usuge .shukan .box_area3_6source li:first-of-type {
  width:100%;
  text-align: center;
  font-weight: bold;
}
#usuge .shukan .box_area3_6source .box_txt{
  display: flex;
  justify-content: center;
}
#usuge .shukan .box_area3_6source img{
  display:block;
  margin: 20px auto 0;
}
#usuge .shukan .boxy2 {
  margin:0 0 0 60px;
}

@media screen and (max-width: 1380px) {
  #usuge .shukan .boxy2 {
    margin:20px 0 0;
  }
}


@media screen and (max-width: 768px){
  #usuge .shukan h3:first-of-type {
    margin: 8vw auto;
    font-size: 5.333vw;
  }
  #usuge .shukan .box_tit {
    margin-bottom: 8vw;
    width: 100%;
    display: block;
    text-align: center;
  }
  #usuge .shukan .bg {
    padding: 8vw 6vw;
    box-sizing: border-box;
  }
  #usuge .shukan .box_tit h4 {
    line-height: 1.5;
    padding: 0 0 0 0!important;
    border-left: none!important;
  }
  #usuge .shukan .box_tit h4:first-of-type {
    color: #1e8131;
    font-size: 11.333vw;
    font-weight: bold;
    padding: 0 0.5rem 0 0;
  }
  #usuge .shukan .box_tit h4:last-child {
    border-top: 1px solid #000;
    padding-top: 1.5rem!important;
    border-left: none;
    font-size: 5.333vw;
    font-weight: bold;
  }
  #usuge .shukan .box {
    display: block;
  }
  #usuge .shukan .mtt {
    margin-top: 13.333vw;
  }
  #usuge .shukan .bg img{
    display:block;
    margin: 0 auto;
    width:60%;
    /* max-width:34.667vw; */
    height:auto;
  }
  #usuge .shukan .boxy {
    margin: 8vw 0 0 0;
  }
  #usuge .shukan .boxy h4 {
    margin-bottom: 2.667vw;
    font-size: 5.333vw;
  }
  #usuge .shukan .boxy2 {
    margin: 8vw 0 0 0;
  }
  #usuge .shukan .shukan_3 {
    width:100%!important;
    max-width:56.8vw;
  }
  #usuge .shukan .shukan_4 {
    width:100%!important;
    max-width:58.533vw;
  }

  #usuge .shukan .box_area3_6source .box_txt {
    display: block;
    padding-bottom: 8vw;
  }
  #usuge .shukan .box_area3_6source {
    width: 100%;
  }
  #usuge .shukan .box_area3_6source ul{
    padding: 0!important;
  }
  #usuge .shukan .box_area3_6source li {
    margin: 0;
    width:102px!important;
  }

  #usuge .shukan .box_area3_6source .box_item{
    display: flex;
    justify-content: center;
    margin-bottom: 4vw;
  }
  #usuge .shukan .box_area3_6source .box_item img{
    width: 80%;
  }
  #usuge .shukan .box_area3_6source li:first-of-type {
    margin-right: 15%;
  }
  #usuge .shukan .box_area3_6source .tit {
    text-align: center;
    margin: 8vw 0;
  }
  #usuge .shukan .box_area3_6source .tit:first-of-type {
    text-align: center;
    margin: 16vw 0 8vw;
  }
  #usuge .shukan .box_area3 h4 {
    width: 58%;
    font-size: 5.333vw;
  }

  #usuge .shukan p{
    font-size: 4vw;
    line-height: 2;
  }

}

@media screen and (max-width: 456px){
  #usuge .shukan .box_area3 h4 {
    width: 94%;
  }
}

/* usuge_matome */
#usuge .matome{
  width:1380px;
  margin: 0 auto;
}

@media screen and (max-width: 1380px) {
  #usuge .matome{
    width:95%;
  }
}

@media screen and (max-width: 768px){
  #usuge .matome{
    width:100%;
    padding:0 20px;
    box-sizing: border-box;
  }
}

#usuge .matome p:first-of-type{
  font-size: 30px;
  text-align: center;
  line-height: 1.5;
  margin: 120px 0 100px;
}
#usuge .matome span{
  color:#1e8131;
}
/*#usuge .matome .btn{
    font-size: 18px;
    border:1px solid #000;
    display: table;
    margin: 0 auto 140px;
    padding: 30px 103px;
}*/

#usuge .matome .button{
  border:1px solid #000;
  width:370px;
  margin:0 auto;
  text-align: center;
  margin-bottom:100px;
}

@media screen and (max-width: 768px){
  #usuge .matome .button{
    width:80%;
  }

  #usuge .matome p:first-of-type{
    font-size: 5.333vw;
    margin: 16vw 0 13.333vw;
  }
}

#usuge .matome .button a{
  display:block;
  width:100%;
  padding:30px 0;
  box-sizing: border-box;
  text-decoration: none;
  color:#000;
}

#usuge .matome .pankuzu{
  font-size: 12px;
  margin-bottom: 10px;
}

.wrapper .block.message{
  width:1380px;
  margin:0 auto;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.message{
    width:95%;
  }
}

.wrapper .block.message h3 {
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 100px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .wrapper .block.message h3 {
    text-align: left;
    font-size: 5.3333vw;
    margin-bottom: 13.333vw;
    line-height: 1.5;
  }

  .wrapper .block.message {
    width: 100%;
  }
}

.wrapper .block.message h3 span{
  color:#1e8131;
}

.wrapper .block.message p.button{
  border: 1px solid #000;
  width:369px;
  margin:0 auto;
  text-align: center;
}

@media screen and (max-width: 768px){
  .wrapper .block.message p.button{
    width:90%;
  }
}

.wrapper .block.message p.button a{
  display:block;
  width:100%;
  padding:20px;
  box-sizing: border-box;
  text-decoration: none;
  color:#000;
}

/* ============= ikumou.html ============= */

.wrapper .block.ikumouTop{
  text-align: center;
  background-image: url(../images/ikumou_bg.png);
  background-repeat: repeat-x;
  background-position: 0 755px;
  margin-top: 115px;
}

@media screen and (max-width: 768px){
  .wrapper .block.ikumouTop{
    background-position: 0 792px;
    margin-top: 20vw;
  }

  .wrapper .block.ikumouTop {
    text-align: center;
    background: url(../images/ikumou_bg.png) no-repeat 0 142vw;
  }
}

/* @media screen and (max-width: 435px){
    .wrapper .block.ikumouTop{
        background-position: 0 850px;
    }
}

@media screen and (max-width: 320px){
    .wrapper .block.ikumouTop{
        background-position: 0 900px;
    }
} */

.wrapper .block.ikumouTop h2 {
  font-size: 40px;
  margin-bottom: 100px;
  color: #1e8131;
  font-weight: bold;
}

.wrapper .block.ikumouTop h3 {
  font-size: 40px;
  margin-bottom: 60px;
  line-height: 50px;
  font-weight: bold;
}

.wrapper .block.ikumouTop h3 span{
  color:#1e8131;
}

.wrapper .block.ikumouTop .mainImage{
  margin-bottom:60px;
}

@media screen and (max-width: 768px){
  .wrapper .block.ikumouTop h2{
    font-size:8vw;
    margin-bottom:13.333vw;
  }
  .wrapper .block.ikumouTop h3{
    font-size: 6vw;
    margin-bottom:8vw;
    line-height:1.5;
  }
  .wrapper .block.ikumouTop .mainImage img{
    width:100%;
    height:auto;
  }
}

.wrapper .block.ikumouTop h4 {
  font-size: 30px;
  display: inline-block;
  border-bottom: 1px solid #000;
  padding-bottom: 12px;
  margin-bottom: 60px;
  line-height: 40px;
  font-weight: bold;
}

.wrapper .block.ikumouTop p{
  text-align: center;
  font-size:18px;
  line-height:40px;
  margin-bottom:60px;
}
@media screen and (max-width: 1380px) {
  .wrapper .block.ikumouTop p{
    width: 95%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.ikumouTop h4{
    font-size:5.333vw;
    padding-bottom:1.6vw;
    margin-bottom:8vw;
    line-height: 1.5;
  }
  .wrapper .block.ikumouTop p{
    text-align: left;
  }

  .wrapper .block.ikumouTop p{
    font-size:4vw;
    line-height:2;
    margin-bottom:8vw;
  }
}

.wrapper .block.massage{
  text-align: center;
}

.wrapper .block.massage h4 {
  font-size: 30px;
  display: inline-block;
  border-bottom: 1px solid #000;
  padding-bottom: 12px;
  margin-bottom: 60px;
  line-height: 40px;
  font-weight: bold;
}

.wrapper .block.massage .massageBox{
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  align-items: center;
  width:1043px;
  margin:0 auto;
  text-align: left;
  margin-bottom:60px;
}

@media screen and (max-width: 1048px) {
  .wrapper .block.massage .massageBox{
    width: 95%;
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.massage h4{
    font-size: 5.333vw;
    display: inline-block;
    border-bottom:1px solid #000;
    padding-bottom:1.6vw;
    margin-bottom:8vw;
    line-height: 1.5;
  }
  .wrapper .block.massage .massageBox{
    width:100%;
    margin-bottom:8vw;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.massage .massageBox .image{
    width:100%;
    margin-bottom:60px;
  }
  .wrapper .block.massage .massageBox .image img{
    width:100%;
    height:auto;
  }
}

.wrapper .block.massage .massageBox .desc{
  width:590px;
}
@media screen and (max-width: 1380px) {
  .wrapper .block.massage .massageBox .desc{
    margin: 0 auto;
    text-align: left;
  }
}
@media screen and (max-width: 768px){
  .wrapper .block.massage .massageBox .desc{
    width:100%;
  }
}

.wrapper .block.massage .massageBox .desc h5 {
  color: #fff;
  background-color: #ea5413;
  font-size: 18px;
  border-radius: 20px;
  width: 360px;
  text-align: left;
  padding: 12px 0 12px 30px;
  position: relative;
  margin-bottom: 20px;
  font-weight: bold;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.massage .massageBox .desc h5{
    width:100%;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.massage .massageBox .desc h5{
    width:100%;
    box-sizing: border-box;
    font-size: 4vw;
    margin-bottom: 2.667vw;
  }
}

.wrapper .block.massage .massageBox .desc h5:after{
  content:"";
  display:block;
  position: absolute;
  top:-36px;
  right:20px;
}

.wrapper .block.massage .massageBox .desc h5.mes1:after{
  background: url(../images/massage_ttl_icon1.png) no-repeat;
  width:72px;
  height:67px;
}

.wrapper .block.massage .massageBox .desc h5.mes2:after{
  background: url(../images/massage_ttl_icon2.png) no-repeat;
  width:59px;
  height:67px;
}

.wrapper .block.massage .massageBox .desc h5.mes3:after{
  background: url(../images/massage_ttl_icon3.png) no-repeat;
  width:23px;
  height:67px;
}

.wrapper .block.massage .massageBox .desc h6 {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 30px;
  font-weight: bold;
}

.wrapper .block.massage .massageBox .desc p{
  line-height:30px;
}

.wrapper .block.study{
  padding:60px 0 0;
}

@media screen and (max-width: 768px){
  .wrapper .block.massage .massageBox .desc h6{
    font-size:5.333vw;
    margin-bottom:4vw;
    line-height: 2;
  }
  .wrapper .block.study{
    padding:8vw 2.667vw;
    box-sizing: border-box;
  }

  .wrapper .block.massage .massageBox .desc p{
    font-size: 4vw;
    line-height: 2;
  }
}

.wrapper .block.study h3 {
  text-align: center;
  font-size: 40px;
  line-height: 70px;
  margin-bottom: 100px;
  font-weight: bold;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.study h3{
    width: 95%;
    margin: 0 auto 100px;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.study h3{
    font-size:6vw;
    line-height: 1.5;
    margin-bottom: 13.333vw;
  }
}

.wrapper .block.study h3 span{
  color:#1e8131;
}

.wrapper .block.study .studyBox{
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  margin-bottom:100px;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.study .studyBox.right{
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.study .studyBox{
    margin-bottom:13.333vw;
  }
  .wrapper .block.study .studyBox.right{
    flex-direction: column-reverse;
    margin-bottom:0;
  }
}

.wrapper .block.study .studyBox .image{
  width:45%;
  overflow: hidden;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.study .studyBox .image{
    margin: 0 0 20px;
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.study .studyBox .image{
    width:100%;
    margin: 0;
  }
  .wrapper .block.study .studyBox .image img{
    width:100%;
    height:auto;
  }
}

.wrapper .block.study .studyBox.left .image{
  margin-left:100px;
}
.wrapper .block.study .studyBox.right .desc{
  margin-left:100px;
}

@media screen and (max-width: 1380px) {

  .wrapper .block.study .studyBox.right .desc{
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.study .studyBox .image{
    margin-bottom:60px;
  }
  .wrapper .block.study .studyBox.left .image{
    margin-left:0;
  }
  .wrapper .block.study .studyBox.right .desc{
    margin-left:0;
  }
}

.wrapper .block.study .studyBox .desc{
  width:45%;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.study .studyBox .desc{
    width:100%;
    margin: 0 auto;
    max-width: 1000px;
  }
}

@media screen and (max-width: 1048px) {
  .wrapper .block.study .studyBox .desc{
    width:95%;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.study .studyBox .desc{
    width:100%;
  }
}

.wrapper .block.study .studyBox .desc h4 {
  font-size: 34px;
  line-height: 50px;
  color: #1e8131;
  position: relative;
  border-left: 6px solid #1e8131;
  padding-left: 20px;
  margin-bottom: 60px;
  font-weight: bold;
}

@media screen and (max-width: 768px){
  .wrapper .block.study .studyBox .desc h4{
    font-size: 4.533vw;
    margin-bottom: 4vw;
    line-height: 1.5;
  }
}

.wrapper .block.study .studyBox .desc p {
  font-size: 18px;
  line-height: 40px;
  /*width: 735px;*/
}

@media screen and (max-width: 1380px) {
  .wrapper .block.study .studyBox .desc p{
    width: 100%;
  }

  .wrapper .block.study .studyBox.left .image{
    margin: 0 2% 20px;
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.study .studyBox .desc p{
    width:100%;
    font-size: 4vw;
    line-height: 2;
  }
}

.wrapper .block.study .studyBox.right .desc p{
  width:auto;
  margin-bottom:40px;
}



.wrapper .block.study .studyBox .desc .descBox{
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
}

.wrapper .block.study .studyBox .desc .descBox .icon{
  width:30%;
}


@media screen and (max-width: 768px){
  .wrapper .block.study .studyBox .desc .descBox .icon{
    width:100%;
    text-align: center;
  }

  .wrapper .block.study .studyBox .desc .descBox .icon img{
    max-width: 250px;
    margin: 0 auto;
  }
}

.wrapper .block.study .studyBox .desc .descBox .image .icon{
  width:100%;
  height:auto;
}

.wrapper .block.study .studyBox .desc .descBox .txt{
  font-size:18px;
  line-height:40px;
  width: 60%;
}

@media screen and (max-width: 768px){
  .wrapper .block.study .studyBox .desc .descBox .txt{
    width: 100%;
  }
}

.wrapper .block.study .studyBox .desc .descBox .txt span{
  display:block;
  font-size:12px;
}

.wrapper .block.studyMes{
  padding:0;
  margin-bottom:100px;
}

@media screen and (max-width: 768px){
  .wrapper .block.studyMes{
    padding:0 2.667vw;
    box-sizing: border-box;
    margin-bottom:13.333vw;
  }
}

.wrapper .block.studyMes p{
  font-size: 30px;
  line-height: 50px;
  text-align: center;
}

.wrapper .block.studyMes p a{
  color: #212529;
}

.wrapper .block.studyMes p span{
  color: #1e8131;
}

.wrapper .block.studyMes .button{
  border:1px solid #000;
  text-align: center;
  width:370px;
  margin:0 auto;
  font-size:18px;
  margin-top:100px;
}

.wrapper .block.studyMes .button a{
  display:block;
  width:100%;
  padding:20px 0;
  box-sizing: border-box;
  text-decoration: none;
  color:#000;
}

@media screen and (max-width: 768px){
  .wrapper .block.studyMes p{
    font-size: 4.533vw;
    line-height: 1.5;
    text-align: center;
  }
  .wrapper .block.studyMes .button{
    width:80%;
    margin-top:13.333vw;
    font-size: 4vw;
  }
}

/* ============= soudan.html ============= */
.wrapper .block.soudanTop{
  width:1000px;
  margin: 115px auto 0;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.soudanTop{
    width:95%;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.soudanTop{
    width:100%;
    margin-top: 20vw;
  }
}

.wrapper .block.soudanTop h2{
  font-size:40px;
  line-height: 70px;
  color:#1e8131;
  text-align: center;
  margin-bottom:60px;
}

.wrapper .block.soudanTop .stBox{
  display:flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.soudanTop .stBox{
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.soudanTop .stBox .image{
    width:100%;
  }
  .wrapper .block.soudanTop .stBox .image img{
    width:100%;
  }

  .wrapper .block.soudanTop h2{
    font-size:8vw;
    line-height: 1.5;
    margin-bottom:8vw;
  }
}

.wrapper .block.soudanTop .stBox .desc p{
  font-size:18px;
  line-height: 40px;
  padding-top:20px;
}

.wrapper .block.soudanQa{
  width:1000px;
  margin:0 auto;
}

@media screen and (max-width: 1048px) {

  .wrapper .block.soudanQa{
    width:95%;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.soudanQa{
    width:100%;
  }
  .wrapper .block.soudanTop .stBox .desc p{
    font-size:4vw;
    line-height: 2;
    padding-top:2.667vw;
  }
}

.wrapper .block.soudanQa .box{
  margin-bottom:60px;
}

.wrapper .block.soudanQa .box .ques{
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  background-color:#ebf6f2;
  align-items: center;

  margin-bottom:30px;
  padding:0 20px;
  box-sizing: border-box;

  cursor: pointer;
}

@media screen and (max-width: 768px){
  .wrapper .block.soudanQa .box{
    margin-bottom:8vw;
  }

  .wrapper .block.soudanQa .box .ques{
    margin-bottom:4vw;
    padding:2.667vw;
  }
}

.wrapper .block.soudanQa .box .ques .icon{
  width:15%;
}

@media screen and (max-width: 768px){
  .wrapper .block.soudanQa .box .ques .icon{
    /*width:100%;*/
  }
  .wrapper .block.soudanQa .box .ques .icon img{
    max-width:92px;
    width:100%;
    height:auto;
  }
}

.wrapper .block.soudanQa .box .ques .desc{
  width:80%;
}

@media screen and (max-width: 768px){
  .wrapper .block.soudanQa .box .ques .desc{
    width:70%;
  }
}

.wrapper .block.soudanQa .box .ques .desc h3{
  font-size:20px;
  line-height:30px;
}

@media screen and (max-width: 768px){
  .wrapper .block.soudanQa .box .ques .desc h3{
    font-size:4vw;
    line-height:1.5;
  }
}

.wrapper .block.soudanQa .box .ques .desc .name{
  font-size:18px;
  margin-bottom:10px;
}

.wrapper .block.soudanQa .box .ques .desc .name span{
  font-size:14px;
  color:#fff;
  margin-right:20px;
  width:100px;
  padding:7px 0;
  display:inline-block;
  text-align: center;
  background-color:#1e8131;
}

.wrapper .block.soudanQa .box .ques .toggle{
  width:5%;
}

@media screen and (max-width: 768px){

  .wrapper .block.soudanQa .box .ques .toggle img{
    width:100%;
    height:auto;
  }

  .wrapper .block.soudanQa .box .ques .desc .name{
    font-size:4vw;
    margin-bottom:1.333vw;
  }

  .wrapper .block.soudanQa .box .ques .desc .name span{
    font-size:4vw;
    color:#fff;
    margin-right:2.667vw;
  }
}

.wrapper .block.soudanQa .box .ans{
  display:none;
}

.wrapper .block.soudanQa .box .ans .inner{
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  align-items: center;
}

.wrapper .block.soudanQa .box .ans .desc{
  width:65%;
}

@media screen and (max-width: 768px){
  .wrapper .block.soudanQa .box .ans .desc{
    width:100%;
    margin-bottom:0;
  }
}

.wrapper .block.soudanQa .box .ans .desc h3{
  color:#1e8131;
  font-size:20px;
  line-height:40px;
  margin-bottom:20px;
}

.wrapper .block.soudanQa .box .ans .desc p{
  font-size:18px;
  line-height: 40px;
}

.wrapper .block.soudanQa .box .ans .image{
  width:35%;
  text-align: center;
}
@media screen and (max-width: 1380px) {
  .wrapper .block.soudanQa .box .ans .desc{
    width: 100%;
  }
  .wrapper .block.soudanQa .box .ans .desc p br{
    display: none;
  }
  .wrapper .block.soudanQa .box .ans .image{
    width: 100%;
    margin-top: 20px;
  }
}


@media screen and (max-width: 768px){
  .wrapper .block.soudanQa .box .ans .image{
    width:100%;
    text-align: center;
    margin-top: 4vw;
  }
  .wrapper .block.soudanQa .box .ans .image img{
    width:60%;
    height:auto;
    margin: 0 auto;
  }

  .wrapper .block.soudanQa .box .ans .desc h3{
    font-size:5.333vw;
    margin-bottom:2.667vw;
    line-height: 1.5;
  }

  .wrapper .block.soudanQa .box .ans .desc p{
    font-size:4vw;
    line-height: 2;
  }
}

/* care */
.wrapper .block.care{
  width:100%;
  background-color:#ebf6f2;
  margin-bottom:100px;
}

.wrapper .block.care h3{
  text-align: center;
  display:flex;
  flex-wrap:wrap;
  justify-content: center;
  align-items: center;
  margin-bottom:60px;
}

.wrapper .block.care h3 .num{
  font-size:120px;
  display:block;
  border-right:1px solid #000;
  padding-right:20px;
  margin-right:20px;
  color:#1e8131;
}

@media screen and (max-width: 768px){
  .wrapper .block.care{
    margin-bottom:13.333vw;
  }
  .wrapper .block.care h3 .num{
    border:0;
    padding:0;
    margin:0;
    font-size: 8vw;
  }
}

.wrapper .block.care h3 .ttl{
  display:block;
  font-size:30px;
  line-height: 50px;
  text-align: left;
}

@media screen and (max-width: 768px){
  .wrapper .block.care h3 {
    margin-bottom: 8vw;
  }
  .wrapper .block.care h3 .ttl{
    text-align: center;
    font-size: 5.333vw;
    line-height: 1.5;
  }
}


.wrapper .block.care h3 .ttl span{
  color:#1e8131;
}

.wrapper .block.care .num2 h3{
  padding-top:60px;
}

.wrapper .block.care .num2 h4{
  text-align: center;
  font-size:30px;
  margin-bottom:30px;
  line-height: 50px;
}

.wrapper .block.care .careBox{
  width:1380px;
  margin:0 auto;
  background-color:#fff;
  text-align: center;
  padding:60px 190px;
  box-sizing: border-box;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.care .careBox{
    width:95%;
    padding: 60px 2%;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.care .careBox{
    padding:8vw 2.667vw;
    width:100%;
  }

  .wrapper .block.care .num2 h4{
    text-align: center;
    font-size:5.333vw;
    margin-bottom:30px;
    line-height: 1.5;
  }

}

.wrapper .block.care .careBox h4{
  display:inline-block;
  border-bottom:1px solid #000;
  padding-bottom:8px;
  margin-bottom:60px;
  font-size:30px;
  line-height: 50px;
}

.wrapper .block.care .careBox .checkBox1{
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  margin-bottom:60px;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.care .careBox .checkBox1{
    display: block;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.care .careBox h4{
    padding-bottom:1.067vw;
    margin-bottom:8vw;
    font-size:5.333vw;
    line-height: 1.5;
  }
  .wrapper .block.care .careBox .checkBox1{
    margin-bottom:8vw;
  }
  .wrapper .block.care .careBox .checkBox1 .image{
    width:100%;
  }
  .wrapper .block.care .careBox .checkBox1 .image img{
    width:60%;
    height:auto;
  }
}

.wrapper .block.care .careBox .checkBox1 .image h5{
  font-size: 24px;
  margin-bottom:20px;
}

.wrapper .block.care .careBox .checkBox1 .image h5 span{
  display:block;
  color:#1e8131;
  border:1px solid #1e8131;
  padding:10px;
  font-size:20px;
  margin-bottom:10px;
}

.wrapper .block.care .careBox .checkBox1 .desc{
  width:67%;
  text-align: left;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.care .careBox .checkBox1 .image h5 span{
    margin-bottom: 20px;
  }
  .wrapper .block.care .careBox .checkBox1 .desc{
    margin: 0 auto;
    width: 90%;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.care .careBox .checkBox1 .image h5{
    font-size: 4vw;
    margin-bottom: 2.667vw;
  }
  .wrapper .block.care .careBox .checkBox1 .image h5 span{
    font-size: 4vw;
  }
  .wrapper .block.care .careBox .checkBox1 .desc{
    width:100%;
  }
}

.wrapper .block.care .careBox .checkBox1 .desc .text{
  font-size:18px;
  line-height: 40px;
  margin-bottom:60px;
}

.wrapper .block.care .careBox .checkBox1 .desc .marubatsu{
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  align-items: center;
}

.wrapper .block.care .careBox .checkBox1 .desc .marubatsu .box{
  width:45%;
}

@media screen and (max-width: 768px){
  .wrapper .block.care .careBox .checkBox1 .desc .marubatsu .box{
    width:100%;
    margin-bottom:30px;
  }

  .wrapper .block.care .careBox .checkBox1 .desc .text{
    font-size:4vw;
    line-height: 2;
    margin-bottom:8vw;
  }

}

.wrapper .block.care .careBox .checkBox1 .desc .marubatsu .box .ttl{
  font-size:24px;
  color:#1e8131;
  margin-bottom:22px;
}
.wrapper .block.care .careBox .checkBox1 .desc .marubatsu .box .ttl.batsu{
  padding-top:10px;
}
.wrapper .block.care .careBox .checkBox1 .desc .marubatsu .box .ttl.maru{
  margin-bottom:23px;
}

.wrapper .block.care .careBox .checkBox1 .desc .marubatsu .box .ttl:before{
  display:inline-block;
  vertical-align: middle;
  margin-right:12px;
}


@media screen and (max-width: 768px){
  .wrapper .block.care .careBox .checkBox1 .desc .marubatsu .box .ttl{
    font-size:5.333vw;;
    margin-bottom:22px;
  }
  .wrapper .block.care .careBox .checkBox1 .desc .marubatsu .box .ttl.batsu{
    padding-top:10px;
  }
  .wrapper .block.care .careBox .checkBox1 .desc .marubatsu .box .ttl.maru{
    margin-bottom:23px;
  }
}



.wrapper .block.care .careBox .checkBox1 .desc .marubatsu .box .ttl.batsu:before{
  content:url(../images/batsu.png);
}
.wrapper .block.care .careBox .checkBox1 .desc .marubatsu .box .ttl.maru:before{
  content:url(../images/maru.png);
}

@media screen and (max-width: 768px){
  .wrapper .block.care .careBox .checkBox1 .desc .marubatsu .box .ttl.batsu:before{
    content: "";
    background: url(../images/batsu_sp.png);
    background-size: cover;
    width: 50px;
    height: 50px;
    display: inline-block;
  }
  .wrapper .block.care .careBox .checkBox1 .desc .marubatsu .box .ttl.maru:before{
    content: "";
    background: url(../images/maru_sp.png);
    background-size: cover;
    width: 50px;
    height: 50px;
    display: inline-block;
  }
}

.wrapper .block.care .careBox .checkBox1 .desc .marubatsu .box p{
  line-height:30px;
}

.wrapper .block.care .careBox .checkBox2{
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  margin-bottom:60px;
}

.wrapper .block.care .careBox .checkBox2 .flex{
  width:100%;
  justify-content: space-between;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.care .careBox .checkBox2 .flex{
    display: block;
  }
  .wrapper .block.care .careBox .checkBox2{
    display: block;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.care .careBox .checkBox1 .desc .marubatsu .box p{
    font-size: 4vw;
  }
  .wrapper .block.care .careBox .checkBox2{
    margin-bottom: 0;
  }
  .wrapper .block.care .careBox .checkBox2 .image{
    width:100%;
  }
}

.wrapper .block.care .careBox .checkBox2 .image h5{
  font-size: 24px;
  margin-bottom:20px;
}

.wrapper .block.care .careBox .checkBox2 .image h5 span{
  display:block;
  color:#1e8131;
  border:1px solid #1e8131;
  padding:10px;
  font-size:20px;
  margin-bottom:10px;
}

.wrapper .block.care .careBox .checkBox2 .desc{
  width:67%;
  text-align: left;
}

@media screen and (max-width: 768px){
  .wrapper .block.care .careBox .checkBox2 .desc{
    width:100%;
  }

  .wrapper .block.care .careBox .checkBox2 .image h5{
    font-size: 4vw;
    margin-bottom: 2.667vw;
  }
  .wrapper .block.care .careBox .checkBox2 .image h5 span{
    font-size: 4vw;
  }
}

.wrapper .block.care .careBox .checkBox2 .desc p{
  font-size:18px;
  line-height: 40px;
  margin-bottom:60px;
}

/*鍔广亱銇亜*/
.wrapper .block.care .careBox .checkBox2 .desc p::first-letter{
  line-height: auto;
}

.wrapper .block.care .careBox .checkBox2 .marubatsu{
  display:flex;
  flex-wrap:wrap;
  justify-content: space-around;
}

.wrapper .block.care .careBox .checkBox2 .marubatsu .box{
  width:20%;
  text-align: left;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.care .careBox .checkBox2 .marubatsu .box{
    width:30%;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.care .careBox .checkBox2 .marubatsu .box{
    width:100%;
    margin-bottom:30px;
  }
  .wrapper .block.care .careBox .checkBox2 .desc p{
    font-size:4vw;
    line-height: 2;
    margin-bottom:8vw;
  }
}

.wrapper .block.care .careBox .checkBox2 .marubatsu .box .ttl{
  font-size:24px;
  color:#1e8131;
  margin-bottom:22px;
}
.wrapper .block.care .careBox .checkBox2 .marubatsu .box .ttl.batsu{
  padding-top:10px;
}
.wrapper .block.care .careBox .checkBox2 .marubatsu .box .ttl.maru{
  margin-bottom:23px;
}

.wrapper .block.care .careBox .checkBox2 .marubatsu .box .ttl:before{
  display:inline-block;
  vertical-align: middle;
  margin-right:12px;
}

.wrapper .block.care .careBox .checkBox2 .marubatsu .box .ttl.batsu:before{
  content:url(../images/batsu.png);
}
.wrapper .block.care .careBox .checkBox2 .marubatsu .box .ttl.maru:before{
  content:url(../images/maru.png);
}

@media screen and (max-width: 768px) {
  .wrapper .block.care .careBox .checkBox2 .marubatsu .box .ttl{
    font-size: 5.333vw;
  }
  .wrapper .block.care .careBox .checkBox2 .marubatsu .box p{
    font-size: 4vw;
  }
  .wrapper .block.care .careBox .checkBox2 .marubatsu .box .ttl.batsu:before{
    content:"";
    background: url(../images/batsu_sp.png);
    background-size: cover;
    width: 50px;
    height: 50px;
    display: inline-block;
  }
  .wrapper .block.care .careBox .checkBox2 .marubatsu .box .ttl.maru:before{
    content:"";
    background: url(../images/maru_sp.png);
    background-size: cover;
    width: 50px;
    height: 50px;
    display: inline-block;
  }

}

.wrapper .block.care .careBox .checkBox2 .marubatsu .box p{
  line-height:30px;
}

.wrapper .block.care .careBox .matome{
  font-size:18px;
  line-height: 40px;
  text-align: left;
}

.wrapper .block.care .num2 .box{
  display:flex;
  flex-wrap:wrap;
  align-items: center;
  width:1380px;
  margin:0 auto;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.care .num2 .box{
    width: 95%;
    display: block;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.care .num2 .box{
    width:100%;
  }

  .wrapper .block.care .careBox .matome{
    font-size:4vw;
    line-height: 2;
    text-align: left;
  }
}

.wrapper .block.care .num2 .box .image{
  margin-right:40px;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.care .num2 .box .image{
    text-align: center;
    margin-right: 0;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.care .num2 .box .image{
    margin-right:0;
    width:100%;
    text-align: center;
  }
  .wrapper .block.care .num2 .box .image img{
    width:60%;
    height:auto;
  }
}

.wrapper .block.care .num2 .box .desc p{
  font-size:18px;
  line-height:40px;
}

@media screen and (max-width: 768px){
  .wrapper .block.care .num2 .box .desc p{
    font-size:4vw;
    line-height:2;
  }
}

/* ============= subPagesCommon ============= */

.wrapper .block.pan{
  width:1380px;
  margin:0 auto 10px;
  padding-bottom:0;
}

@media screen and (max-width: 1380px) {
  .wrapper .block.pan{
    width:98%;
  }
}

@media screen and (max-width: 768px){
  .wrapper .block.pan{
    width:100%;
  }
}

.wrapper .block.pan p{
  font-size:12px !important;
}

.wrapper .block.pan p a{
  text-decoration: none;
  color: #000;
}


/* ============= keyword ============== */
#keyword{
  margin-top: 115px;
}

#keyword h2{
  font-size: 40px;
  color: #1e8131;
  margin-bottom: 150px;
  text-align: center;
}

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

#keyword .inner{
  width: 1380px;
  margin: 0 auto;
}

#keyword .side_menu{
  width: 353px;
}

#keyword ul li{
  list-style: none;
  font-size: 16px;
  margin-bottom: 25px;
}

#keyword ul li a{
  text-decoration: none;
  color: #000000;
}

#keyword .content h3{
  font-size: 30px;
  color: #1e8131;
  margin-bottom: 60px;
}

#keyword .content h3::after{
  content: "";
  width: 356px;
  height: 1px;
  background-color: #1e8131;
  display: block;
  margin-top: 13px;
}

#keyword .content .lead{
  font-size: 20px;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

#keyword .content .lead::before{
  content: "";
  height: 30px;
  width: 4px;
  display: inline-block;
  background-color: #000000;
  margin-right: 15px;
}

#keyword .content .txt{
  font-size: 18px;
  line-height: 2.22;
  letter-spacing: 0.16em;
  margin-bottom: 70px;
}

#keyword .content a{
  font-size: 18px;
  padding: 25px 30px;
  border: 1px solid #000000;
  text-decoration: none;
  color: #000000;
  display: inline-block;
}

@media screen and (max-width: 768px){
  #keyword{
    margin-top: 20vw;
  }


  #keyword h2{
    font-size: 5.333vw;
    color: #1e8131;
    margin-bottom: 6.667vw;
    line-height: 1.5;
  }

  #keyword .content h3 {
    font-size: 4.8vw;
    margin-bottom: 8vw;
  }

  #keyword .content h3::after{
    width: 100%;
    margin-top: 3.2vw;
  }

  #keyword .inner{
    width: 100%;
  }

  #keyword .flex{
    flex-wrap: initial;
  }

  #keyword ul li{
    font-size: 3.2vw;
    margin-bottom: 4vw;
  }

  #keyword .content .lead{
    line-height: 1.5;
    font-size: 3.2vw;
  }

  #keyword .content .lead::before{
    height: 7.333vw;
  }

  #keyword .content a{
    font-size: 3.2vw;
    padding: 3.333vw 4vw;
    text-align: center;
    line-height: 1.5;
  }

  #keyword .side_menu{
    width: 30%;
  }

  #keyword .content{
    width: 70%;
  }

  #keyword .content .txt{
    font-size: 2.667vw;
    margin-bottom: 9.333vw;
  }
}


/* ============= sitemap ============== */
#sitemap{
  margin-top: 115px;
}
#sitemap h2{
  font-size: 40px;
  color: #1e8131;
  margin-bottom: 150px;
}

#sitemap .inner{
  width: 820px;
  margin: 0 auto;
}

#sitemap h3{
  text-align: center;
  font-size: 24px;
  margin-bottom: 80px;
  font-feature-settings: "palt";
}

#sitemap h3::after{
  content: "";
  display: block;
  width: 250px;
  height: 1px;
  background-color: #000000;
  margin: 15px auto 0;
}

#sitemap ul li{
  list-style: none;
  font-size: 18px;
  margin-bottom: 30px;
}

#sitemap ul li a{
  color: #000000;
  text-decoration: none;
}

#sitemap ul li ul{
  margin-top: 30px;
  margin-left: 35px;
  position: relative;
}

#sitemap ul li ul::before{
  content: "";
  width: 1px;
  height: 170px;
  background: #9d9d9d;
  position: absolute;
  left: -35px;
}

#sitemap ul li ul li a{
  color: #9d9d9d;
}


@media screen and (max-width: 768px){
  #sitemap{
    margin-top: 20vw;
  }

  #sitemap h2{
    font-size: 5.333vw;
    color: #1e8131;
    margin-bottom: 6.667vw;
    line-height: 1.5;
  }

  #sitemap h3{
    font-size: 4.8vw;
    margin-bottom: 8vw;
  }

  #sitemap .flex{
    display: block;
  }

  #sitemap .inner{
    width: 100%;
  }

  #sitemap ul li{
    font-size: 3.2vw;
    margin-bottom: 5.333vw;
  }
  #sitemap ul li ul::before{
    height: 110px;
  }

}


/* ============= ikumou ============== */

#ikumou .block.top_ikumou{
  background-color: #ffffff;
}

#ikumou .block.top_ikumou .ikumouBox{
  background-color: #f9fcfb;
}

.wrapper#ikumou .block.wide#page_title{
  background-image: url("../images/haircare_top_bg.jpg");
}





.qa .half {
  width: 100%;
}
/* Acordeon styles */
.qa .tab {
  position: relative;
  margin-bottom: 1px;
  width: 100%;
  overflow: hidden;
}
.qa input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.qa label {
  position: relative;
  display: block;
  padding: 4vw 8vw 4vw 4vw;
  background: #ececec;/* 銈偝銉笺儑銈ｃ偑銉� 銈裤儢鑳屾櫙鑹� */
  font-weight: bold;
  line-height: 1.5;
  cursor: pointer;
  letter-spacing: 0.1em;
  font-size: 4vw;
}
.qa .blue label {
  background: #2980b9;
}
.qa .tab-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height .35s;
  -o-transition: max-height .35s;
  transition: max-height .35s;
}
.qa .blue .tab-content {
  background: #3498db;
}
.qa .tab-content p {
  margin: 1em;
  line-height: 2;
  font-size: 4vw;
}
/* :checked */
.qa input:checked ~ .tab-content {
  max-height: 100%;
  height: auto;
}
/* Icon */
.qa label::after {
  position: absolute;
  right: 0;
  top: 20%;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}
.qa input[type=checkbox] + label::after {
  content: "+";
}
.qa input[type=radio] + label::after {
  content: "\25BC";
}
.qa input[type=checkbox]:checked + label::after {
  transform: rotate(315deg);
}
.qa input[type=radio]:checked + label::after {
  transform: rotateX(180deg);
}
