@charset "UTF-8";
/* last-update 2021/7/15 */ /* ---------------------
  - ボタンの表示アニメーション
  - ボーダーの表示アニメーション
  - 画像の表示アニメーション
  - ボタンアニメーション
--------------------- */
/******************************
    ボタンの表示アニメーション
******************************/
/******************************
    ボタンの表示+ホバーアニメーション
******************************/
/******************************
    ボーダーの表示アニメーション
******************************/
/******************************
    画像の表示アニメーション
******************************/
@-webkit-keyframes imgSway {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    -webkit-transform: scale(0.9, 0.9) translate(0%, 5%);
            transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    -webkit-transform: scale(1.3, 0.8) translate(0%, 10%);
            transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    -webkit-transform: scale(0.8, 1.3) translate(0%, -10%);
            transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    -webkit-transform: scale(1.1, 0.9) translate(0%, 5%);
            transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes imgSway {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    -webkit-transform: scale(0.9, 0.9) translate(0%, 5%);
            transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    -webkit-transform: scale(1.3, 0.8) translate(0%, 10%);
            transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    -webkit-transform: scale(0.8, 1.3) translate(0%, -10%);
            transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    -webkit-transform: scale(1.1, 0.9) translate(0%, 5%);
            transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
}
@-webkit-keyframes imgBlock {
  0% {
    top: 0;
  }
  100% {
    top: -100%;
  }
}
@keyframes imgBlock {
  0% {
    top: 0;
  }
  100% {
    top: -100%;
  }
}
@-webkit-keyframes imgCircle {
  0% {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
  }
  100% {
    -webkit-clip-path: circle(0 at 50% 50%);
            clip-path: circle(0 at 50% 50%);
  }
}
@keyframes imgCircle {
  0% {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
  }
  100% {
    -webkit-clip-path: circle(0 at 50% 50%);
            clip-path: circle(0 at 50% 50%);
  }
}
/******************************
    ボタンアニメーション
******************************/
@-webkit-keyframes ba-spread-open {
  100% {
    outline-color: transparent;
    outline-offset: 12px;
  }
}
@keyframes ba-spread-open {
  100% {
    outline-color: transparent;
    outline-offset: 12px;
  }
}
@-webkit-keyframes rotateRight {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotateRight {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateLeft {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@keyframes rotateLeft {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@-webkit-keyframes baBouncy {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    -webkit-transform: scale(0.95, 0.95) translate(0%, 5%);
            transform: scale(0.95, 0.95) translate(0%, 5%);
  }
  30% {
    -webkit-transform: scale(1.25, 0.85) translate(0%, 10%);
            transform: scale(1.25, 0.85) translate(0%, 10%);
  }
  50% {
    -webkit-transform: scale(0.85, 1.25) translate(0%, -10%);
            transform: scale(0.85, 1.25) translate(0%, -10%);
  }
  70% {
    -webkit-transform: scale(1.05, 0.95) translate(0%, 5%);
            transform: scale(1.05, 0.95) translate(0%, 5%);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes baBouncy {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    -webkit-transform: scale(0.95, 0.95) translate(0%, 5%);
            transform: scale(0.95, 0.95) translate(0%, 5%);
  }
  30% {
    -webkit-transform: scale(1.25, 0.85) translate(0%, 10%);
            transform: scale(1.25, 0.85) translate(0%, 10%);
  }
  50% {
    -webkit-transform: scale(0.85, 1.25) translate(0%, -10%);
            transform: scale(0.85, 1.25) translate(0%, -10%);
  }
  70% {
    -webkit-transform: scale(1.05, 0.95) translate(0%, 5%);
            transform: scale(1.05, 0.95) translate(0%, 5%);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
}
/* base */
* {
  word-break: break-all;
}

body {
  min-width: 1300px;
  background: #f3efe8;
  font-family: "Noto Sans JP", sans-serif;
  color: #3f3c38;
}
@media screen and (max-width: 960px) {
  body {
    min-width: 375px;
  }
}

pre {
  white-space: inherit;
}

textarea {
  font-family: inherit;
}

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

a {
  text-decoration: none;
  font-weight: bold;
  color: #3f3c38;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a img {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover {
  text-decoration: underline;
}

a.anchor-for-call,
a.anchor-for-call:hover {
  font-weight: inherit;
  text-decoration: inherit;
  color: inherit;
}

div.sbox-cen,
.seotext {
  text-align: center;
  font-size: 1rem;
  color: #b7e7c4;
  line-height: 1.8;
  background-color: #25a34d;
  font-weight: normal;
}

@media screen and (max-width: 960px) {
  div.sbox-cen,
  .seotext {
    padding-bottom: 0;
    font-size: 1rem;
  }
  .seotext span {
    display: none;
  }
  div.sbox-cen h1.stext {
    font-weight: normal;
  }
  div.sbox-cen p.summary {
    display: none;
  }
}
#wrap {
  position: relative;
  overflow: hidden;
  background: #f3efe8;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #3f3c38;
}

/* header
------------------------------*/
.h-logo_sp {
  display: none;
  padding: 15px;
}
.h-logo_sp img {
  max-width: 180px;
}

.h-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #25a34d;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 30px 20px 40px;
}

.h-box__right {
  max-width: 865px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.h-box__right .inner-left {
  max-width: 455px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.h-box__right .inner-box {
  max-width: 180px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.h-box__right .h-att {
  text-align: center;
  font-size: 1rem;
  line-height: 1.4;
  color: #ffffff;
  background-color: #177a33;
  padding: 4px 2px;
}

.h-box__right .h-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFF;
  padding: 2px 5px 6px;
}

.h-box__right .h-list li {
  margin: 0 3px;
}

.h-tel {
  font-size: 1.8rem;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 8px;
}

.h-tel span {
  font-size: 2.6rem;
}

.h-time {
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: center;
  color: #FFF;
}

.h-box__right .inner-right {
  max-width: 390px;
  width: 100%;
}

.h-box__right .h-note {
  font-size: 1.4rem;
  line-height: 1.4;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  margin-bottom: 8px;
}

.h-box__right .h-note span {
  color: #ffd301;
}

.h-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.h-btn li {
  max-width: 190px;
  width: 100%;
}

.h-btn li a {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #e17b00;
  background-color: #FFF;
  border: 2px solid #0d752b;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 0 #0d752b;
          box-shadow: 0 4px 0 #0d752b;
  padding: 14px 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.h-btn li a span {
  background: url("../img/h_mail.svg") left center no-repeat;
  padding-left: 25px;
}

.h-btn li:last-child a {
  color: #04a746;
}

.h-btn li:last-child a span {
  background: url("../img/h_line.svg") left center no-repeat;
  padding: 5px 5px 5px 30px;
}

.h-btn li a:hover {
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.h-nav {
  position: relative;
  height: 70px;
}

.h-nav__inner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 70px;
  background: #FFF;
}

.h-nav__inner.fixed {
  position: fixed;
}
@media screen and (max-width: 1200px) {
  .h-nav__inner.fixed {
    position: absolute;
  }
}

@media screen and (max-width: 960px) {
  .h-logo_sp {
    display: block;
    background-color: #25a34d;
  }
  .h-box {
    display: none;
  }
  .h-box__left,
  .h-box__right {
    display: none;
  }
  .h-nav {
    display: none;
  }
  .h-box .h-logo {
    display: block;
  }
}
/* gnav
------------------------------*/
.gnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
}

.gnav-list__item {
  height: 100%;
}

.gnav-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #3f3c38;
  font-weight: normal;
  padding: 0 20px;
  height: 100%;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.gnav-list__link span {
  background: url("../img/nav_arw.svg") bottom center no-repeat;
  padding-bottom: 13px;
}

.gnav-list__link::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background: url("../img/nav_item.svg") right center no-repeat;
  width: 4px;
  height: 4px;
}

.gnav-list__item:nth-child(5) .gnav-list__link {
  padding-top: 27px;
}

.gnav-list__item:nth-child(5) .gnav-list__link::after {
  top: 62%;
}

.gnav-list__item:last-child .gnav-list__link::after {
  display: none;
}

.-open .gnav-list__link,
.gnav-list__link:hover,
.current .gnav-list__link,
.active .gnav-list__link {
  color: #25a34d;
  text-decoration: none;
}

.accordion {
  position: relative;
}

.accordion__label {
  cursor: pointer;
}

.galleryCategoryList {
  width: 140px;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
  padding-top: 10px;
}
.toggle-menu .galleryCategoryList {
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .toggle-menu .galleryCategoryList {
    width: 100%;
  }
}

.galleryCategoryList__link {
  display: block;
  background: #FFF;
  border-bottom: 1px solid #25a34d;
  padding: 10px;
  font-size: 1.6rem;
  font-weight: normal;
  text-align: center;
  line-height: 1.2;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.galleryCategoryList__link:hover {
  color: #25a34d;
  text-decoration: none;
}

.drawer--left {
  position: relative;
}

.drawer--left .drawer-hamburger {
  display: none;
  background: #177a33;
  border-radius: 0;
}

.drawer--left .drawer-overlay {
  background-color: rgba(0, 0, 0, 0.3);
}

.drawer--left .drawer-nav {
  display: none;
  background: #FFF;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  background-color: #FFF;
}

.drawer--left .drawer-menu {
  padding: 20px 10px;
}

.sp-nav-list {
  margin-bottom: 30px;
}

.sp-nav-list__item {
  margin-bottom: 0;
}

.sp-nav-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  color: #3f3c38;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  font-weight: bold;
}

.sp-nav-list__link:hover,
.current .sp-nav-list__link,
.active .sp-nav-list__link {
  color: #167A32;
  text-decoration: none;
}

.sp-nav-list .accordion-list {
  position: relative;
}

.drawer-menu .contentslist {
  display: block;
  padding: 0;
  font-size: 1.4rem;
}

.drawer-menu .contentslist > li {
  margin: 0 0 20px;
}

.drawer-menu .banner {
  text-align: center;
}

.drawer-menu .banner li {
  margin-bottom: 10px;
}

@media screen and (max-width: 960px) {
  .drawer--left .drawer-hamburger,
  .drawer--left .drawer-nav {
    display: block;
  }
}
/* main
------------------------------*/
.mainimg {
  background: url("../img/main_bg01.png") bottom center no-repeat, url("../img/main_bg.jpg") center no-repeat;
  display: none;
  padding: 42px 0 48px;
}
.pagecode-index .mainimg {
  display: block;
  margin-bottom: 63px;
}

.mainimg .box {
  background: url("../img/main_img.png") center no-repeat;
  padding: 228px 0 220px;
}

.mainimg .box .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 103px -266px;
  letter-spacing: 0.1em;
}

.mainimg .price {
  font-size: 4.1rem;
  line-height: 1.2;
  color: #da5800;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
}

.mainimg .price span {
  font-size: 9rem;
  margin-right: -15px;
}

.mainimg .language {
  font-size: 4.1rem;
  line-height: 1.2;
  color: #3f3c38;
  font-weight: bold;
  margin-left: 8px;
  margin-top: 19px;
}

.main {
  width: 100%;
}

.main_sp {
  display: none;
}

@media screen and (max-width: 960px) {
  .mainimg {
    display: block;
    background: none;
    margin-bottom: 30px;
    padding-top: 0;
  }
  .mainimg .image {
    display: none;
  }
  .main_sp {
    display: block;
  }
  .main_sp img {
    width: 100%;
  }
  .mainimg .box {
    display: none;
  }
}
/* content
------------------------------*/
.content {
  width: 100%;
  padding: 0;
}
.pagecode-index .content {
  padding-top: 63px;
}

.map,
.video {
  position: relative;
  width: 100%;
  height: 400px;
}

.map iframe,
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video {
  height: auto;
  padding-top: 56.25%;
}

.big {
  font-size: 1.6rem;
}

.small {
  font-size: 1.2rem;
}

.bold {
  font-weight: bold;
}

.btn {
  text-align: center;
}

br.sp {
  display: none;
}

span.dib {
  display: inline-block;
}

@media screen and (max-width: 480px) {
  br.sp {
    display: block;
  }
  br.pc {
    display: none;
  }
}
#mail {
  padding-top: 100px;
  margin-top: -100px;
}

@media screen and (max-width: 960px) {
  #mail {
    padding-top: 0;
    margin-top: 0;
  }
}
/* table
------------------------------*/
.form-text {
  margin: -7px 0 -14px;
}

.module.mod_text table {
  width: 100%;
  table-layout: fixed;
}

.module.mod_text th,
.module.mod_text td {
  height: auto;
  background: #ffffff;
  border: 1px solid #cbc0b1;
  padding: 15px 19px 13px;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 680px) {
  .module.mod_text th,
  .module.mod_text td {
    font-size: 1.4rem;
  }
}

.module.mod_text th,
.module.mod_text td.cols-label,
.module.mod_text td.row-label {
  background: #e1d8cb;
  vertical-align: top;
  font-weight: normal;
}

.module.mod_text th,
.module.mod_text td.cols-label {
  width: 33.5%;
}

@media screen and (max-width: 960px) {
  .module.mod_text table {
    table-layout: auto;
  }
  .module.mod_text th,
  .module.mod_text td {
    padding: 11px 10px 8px;
  }
  .module.mod_text .scroll {
    overflow: auto;
    white-space: nowrap;
  }
  .module.mod_text .scroll::-webkit-scrollbar {
    height: 5px;
  }
  .module.mod_text .scroll::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  .module.mod_text .scroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
  .module.mod_text .responsive-table table.table {
    min-width: 1000px;
  }
}
/* mod_banner
------------------------------*/
.mod_banner {
  margin-top: 100px;
  background: url("../img/main_bg01.png") bottom center no-repeat, url(../img/cta_top_bg.png) top center no-repeat, url("../img/bg_banner.jpg") center no-repeat;
  padding: 130px 15px 152px;
}
@media screen and (max-width: 960px) {
  .mod_banner {
    background: url("../img/banner_bg01.png") top center no-repeat, url("../img/banner_bg02.png") bottom center no-repeat, url("../img/bg_banner.jpg") center no-repeat;
    background-size: contain, contain, cover;
  }
}
@media screen and (max-width: 680px) {
  .mod_banner {
    padding: 80px 15px 50px;
  }
}
.pagecode-index .mod_banner {
  margin-top: 0;
}

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

.mod_banner .img_sp {
  display: none;
}
@media screen and (max-width: 680px) {
  .mod_banner .img_sp {
    max-width: 200px;
    margin: 0 auto;
  }
}

.mod_banner .title {
  text-align: center;
  font-size: 3.6rem;
  line-height: 1.4;
  color: #FFF;
  letter-spacing: 0.05em;
  font-weight: bold;
  background: url(../img/bg01.svg) top left calc(50% - 223px) no-repeat, url(../img/bg02.svg) top right calc(50% - 226px) no-repeat;
  padding: 35px 0;
  margin: -16px 0 9px;
}
@media screen and (max-width: 680px) {
  .mod_banner .title {
    font-size: 2rem;
    background: url(../img/bg01.svg) top left calc(50% - 138px) no-repeat, url(../img/bg02.svg) top right calc(50% - 135px) no-repeat;
    background-size: 40px;
    margin: -26px 0 -10px;
  }
}

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

.mod_banner .article {
  max-width: 260px;
  width: 100%;
  background-color: #0d752b;
  border-radius: 8px;
  padding: 20px 5px 17px 20px;
}
@media screen and (max-width: 960px) {
  .mod_banner .article {
    margin-bottom: 20px;
  }
}

.mod_banner .article .image {
  text-align: center;
  margin-bottom: 10px;
}

.mod_banner .tel {
  font-size: 2.6rem;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 3px;
}

.mod_banner .time {
  font-size: 1.2rem;
  line-height: 1.4;
  color: #ffffff;
}

.mod_banner .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 540px;
  width: 100%;
  margin-left: 20px;
}

.mod_banner .list li {
  max-width: 260px;
  width: 100%;
}

.mod_banner .list li a {
  display: block;
  background-color: #FFF;
  border: 2px solid #0d752b;
  border-radius: 8px;
  text-align: center;
  padding: 89px 15px 30px 15px;
  color: #e17b00;
  -webkit-box-shadow: 0 8px 0 #0d752b;
          box-shadow: 0 8px 0 #0d752b;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .mod_banner .list li a {
    padding: 15px;
  }
}

.mod_banner .list li:last-child a {
  color: #04a746;
}

.mod_banner .list li a span {
  background: url("../img/icon_mail.svg") top center no-repeat;
  padding-top: 66px;
}
@media screen and (max-width: 960px) {
  .mod_banner .list li a span {
    background: url("../img/icon_mail.svg") center left no-repeat;
    padding-left: 34px;
    padding-top: 0;
    background-size: 30px;
  }
}

.mod_banner .list li:last-child a span {
  background: url("../img/icon_line.svg") top center no-repeat;
  padding-top: 70px;
}
@media screen and (max-width: 960px) {
  .mod_banner .list li:last-child a span {
    background: url("../img/icon_line.svg") left center no-repeat;
    padding-left: 34px;
    padding-top: 0;
    background-size: 30px;
  }
}

.mod_banner .list li a:hover {
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}

@media screen and (max-width: 960px) {
  .mod_banner .info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .mod_banner .list {
    margin: 0 auto 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .mod_banner .list li {
    margin: 0 0 20px;
  }
  .mod_banner .img {
    display: none;
  }
  .mod_banner .img_sp {
    display: block;
    text-align: center;
  }
}
/* category
------------------------------*/
.side {
  width: 100%;
  padding: 60px 15px 0;
  background-color: #FFF;
}

.contentslist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.4;
}

.contentslist > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 5% 50px 0;
}

.contentslist > li:nth-child(3n) {
  margin-right: 0;
}

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

.contentslist .img-category {
  text-align: center;
}

.contentslist .img-category.nolink .n_title {
  display: none;
}

.contentslist .nolink .n_title {
  position: relative;
  display: block;
  text-align: center;
  background: none;
  border-bottom: 2px solid #ec6d1f;
  padding: 28px 10px;
  font-weight: bold;
  color: #3f3c38;
}

.contentslist .text-category.text-link {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
}

.contentslist .parent-text > a,
.contentslist .text-link a {
  display: block;
  position: relative;
  padding: 29px 30px;
  text-decoration: none;
  color: #3f3c38;
  text-align: center;
  background: #dac5a4;
  border-radius: 10px;
  -webkit-box-shadow: 0 8px 0 #987b53;
          box-shadow: 0 8px 0 #987b53;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contentslist .parent-text > a:hover,
.contentslist .text-link a:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}

.contentslist .parent-text > a::before,
.contentslist .text-link a::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 20px;
  width: 7px;
  height: 13px;
  background: url("../img/icon06.svg") right center no-repeat;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.contentslist .parent-text > a:hover::before,
.contentslist .text-link a:hover::before {
  -webkit-transform: translate(5px, -50%);
          transform: translate(5px, -50%);
}

.contentslist .sublist {
  margin-bottom: 10px;
  text-align: left;
}

.contentslist .sublist li {
  line-height: 1.2;
}

.contentslist .sublist li a {
  display: block;
  background: none;
  padding: 15px 10px;
  text-decoration: none;
  color: #3f3c38;
  font-weight: normal;
  border-bottom: 2px dashed #f3efe8;
}

.contentslist .sublist li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 960px) {
  .side {
    display: none;
  }
}
/* footer
------------------------------*/
.footer {
  background: #0d752b;
}

.f-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1030px;
  padding: 60px 15px;
  margin: 0 auto;
}

.f-box__left {
  max-width: 320px;
  width: 100%;
}

.f-logo {
  margin-bottom: 15px;
}

.f-info {
  font-size: 1.6rem;
  color: #ffffff;
  line-height: 1.75;
}
@media screen and (max-width: 680px) {
  .f-info {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.f-info a:not(.anchor-for-call) {
  font-weight: normal;
  color: #ffffff;
  text-decoration: underline;
}

.f-info a:hover {
  text-decoration: none;
}

.f-box__right {
  max-width: 410px;
  width: 100%;
}

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

.f-nav__link {
  display: block;
  font-weight: normal;
  color: #ffffff;
  font-size: 1.6rem;
}

.f-nav__item {
  padding-left: 11px;
  position: relative;
  line-height: 1;
  margin-bottom: 30px;
}

.f-nav__item::before {
  content: "|";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 3px;
  color: #FFF;
}

.f-nav__item:nth-child(3n) {
  width: 123px;
}

.f-nav__item:nth-child(3n-1) {
  width: 150px;
}

.f-nav__item:nth-child(3n-2) {
  width: 135px;
}

.copyright {
  font-size: 1rem;
  color: #FFF;
  line-height: 1.4;
}

small {
  font-size: 100%;
}

.f-contact {
  position: relative;
  z-index: 9998;
  height: 80px;
  color: #FFFFFF;
}
@media screen and (max-width: 960px) {
  .f-contact {
    height: 60px;
  }
}

.f-fixed {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 80px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #25a34d;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.f-fixed.on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 960px) {
  .f-fixed {
    height: 60px;
  }
}

.f-fixed.fixed {
  position: fixed;
}

.f-fixed .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.f-fixed .image {
  margin-right: 20px;
  margin-top: -17px;
}

.f-fixed .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.f-fixed .tel {
  font-size: 1.8rem;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

.f-fixed .tel span {
  font-size: 2.6rem;
}

.f-fixed .time {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2;
}

.f-fixed .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 390px;
  width: 100%;
  margin-left: 20px;
}

.f-fixed .list li {
  max-width: 190px;
  width: 100%;
}

.f-fixed .list li a {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #e17b00;
  background-color: #FFF;
  border-radius: 7px;
  border: 2px solid #ffffff;
  -webkit-box-shadow: 0 4px 0 #0d752b;
          box-shadow: 0 4px 0 #0d752b;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 14px 10px;
  border: 2px solid #0d752b;
}

.f-fixed .list li:last-child a {
  color: #04a746;
}

.f-fixed .list li a span {
  background: url("../img/fixed_mail.svg") left center no-repeat;
  padding-left: 25px;
}

.f-fixed .list li:last-child a span {
  background: url("../img/fixed_line.svg") left center no-repeat;
  padding: 5px 5px 5px 30px;
}

.f-fixed .list li a:hover {
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.f-fixed .list_sp {
  display: none;
  width: 100%;
  max-width: 100%;
}

.f-fixed .list_sp li {
  width: 100%;
  max-width: 100%;
}

.f-fixed .list_sp li a {
  display: block;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #ffffff;
  background-color: #0d752b;
  text-align: center;
  width: 100%;
  max-width: 100%;
  padding: 20px 10px 21px;
}

.f-fixed .list_sp li:nth-child(2) a {
  background-color: #e17b00;
}

.f-fixed .list_sp li:last-child a {
  background-color: #06c655;
}

.f-fixed .list_sp li a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.f-fixed .list_sp li a span {
  background: url("../img/fixed_tel_sp.svg") left center no-repeat;
  padding: 5px 5px 5px 26px;
  background-size: 21px;
}

.f-fixed .list_sp li:nth-child(2) a span {
  background: url("../img/fixed_mail_sp.svg") left center no-repeat;
  padding-left: 23px;
  background-size: 22px;
}

.f-fixed .list_sp li:last-child a span {
  background: url("../img/fixed_line_sp.svg") left center no-repeat;
  padding: 5px 5px 5px 27px;
  background-size: 21px;
}

@media screen and (max-width: 960px) {
  .f-nav {
    display: none;
  }
  .f-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 15px;
    padding-right: 15px;
  }
  .f-box__left {
    text-align: center;
    margin-bottom: 20px;
  }
  .f-box__right {
    text-align: center;
  }
  .f-fixed .box {
    display: none;
  }
  .f-fixed .list_sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 600px) {
  .f-tel {
    font-size: 2.4rem;
  }
}
/* pagetop
------------------------------*/
.pagetop {
  position: fixed;
  z-index: 20000;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.pagetop.on {
  opacity: 1;
}

.pagetop.stop {
  position: absolute;
}

.rightbar {
  position: fixed;
  z-index: 200;
  top: 100px;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.rightbar.on {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.rightbar.stop {
  position: absolute;
}

@media screen and (max-width: 960px) {
  .pagetop {
    display: none;
  }
  .rightbar {
    display: none;
  }
}
/* module
------------------------------*/
.module {
  width: 100%;
  max-width: 1030px;
  padding: 0 15px;
  margin: 0 auto 50px;
}

.module.break-wrap {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.mod_news_list,
.mod_news_detail,
.mod_gallery_list,
#contact_form {
  width: 100%;
  max-width: 1030px;
  padding: 0 15px;
  margin: 0 auto 50px;
}

.mod_gallery_detail {
  width: 100%;
  max-width: 830px;
  padding: 0 15px;
  margin: 0 auto 50px;
}

/* heading module */
.module.mod_h1 {
  margin-bottom: 40px;
  max-width: 100%;
  background: #25a34d;
}

.mod_h1 h1 {
  background: none;
  border: none;
  padding: 40px 0 41px;
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1.75;
  text-align: center;
  color: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 680px) {
  .mod_h1 h1 {
    font-size: 2.3rem;
    padding: 30px 0;
  }
}
.module.mod_h2 {
  margin-bottom: 30px;
}

.mod_h2 h2 {
  border: none;
  border-bottom: none;
  padding: 0 0 37px;
  font-size: 3.6rem;
  color: #3f3c38;
  letter-spacing: 0.05em;
  line-height: 1.75;
  font-weight: bold;
  text-align: center;
  background: url("../img/bg_h2.svg") bottom center no-repeat;
}
.pagecode-voice .mod_h2 h2 {
  font-size: 1.8rem;
  line-height: 1.4;
  color: #3f3c38;
  font-weight: bold;
  letter-spacing: 0.05em;
  background: url("../img/icon_voice.svg") top 15px left 23px no-repeat #FFF;
  border-radius: 30px;
  padding: 18px 10px 17px 60px;
  text-align: left;
}
.pagecode-faq .mod_h2 h2 {
  font-size: 1.8rem;
  line-height: 1.4;
  color: #3f3c38;
  font-weight: bold;
  letter-spacing: 0.05em;
  background: url("../img/icon_faq.svg") top 15px left 23px no-repeat #FFF;
  border-radius: 30px;
  padding: 18px 10px 17px 60px;
  text-align: left;
}

@media screen and (max-width: 680px) {
  .mod_h2 h2 {
    font-size: 2rem;
    background-size: 120px;
    padding-bottom: 30px;
  }
}
.module.mod_h3 {
  margin-bottom: 20px;
}

.mod_h3 h3 {
  background: url("../img/bg_h3.svg") top 15px left 27px no-repeat #FFF;
  padding: 17px 10px 18px 60px;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: bold;
  border-radius: 30px;
}

.mod_voice {
  margin-bottom: 20px;
}

.mod_voice h2 {
  font-size: 1.8rem;
  line-height: 1.4;
  color: #3f3c38;
  font-weight: bold;
  letter-spacing: 0.05em;
  background: url("../img/icon_voice.svg") top 15px left 23px no-repeat #FFF;
  border-radius: 30px;
  padding: 18px 10px 17px 60px;
}

.mod_faq {
  margin-bottom: 20px;
}

.mod_faq h2 {
  font-size: 1.8rem;
  line-height: 1.4;
  color: #3f3c38;
  font-weight: bold;
  letter-spacing: 0.05em;
  background: url("../img/icon_faq.svg") top 15px left 23px no-repeat #FFF;
  border-radius: 30px;
  padding: 18px 10px 17px 60px;
}

@media screen and (max-width: 680px) {
  .mod_h3 h3 {
    font-size: 1.6rem;
    background: url(../img/bg_h3.svg) top 15px left 15px no-repeat #FFF;
    background-size: 27px;
    padding: 17px 10px 18px 50px;
  }
}
/* image + text module */
/* img_small */
.mod_img_text_left .img_small,
.mod_img_text_right .img_small,
.mod_link_banner_left.mod_img_small .img_small,
.mod_link_banner_right.mod_img_small .img_small {
  width: 30%;
  max-width: 300px;
}

/* img_medium */
.mod_img_text_left .img_medium,
.mod_img_text_right .img_medium,
.mod_link_banner_left.mod_img_medium .img_medium,
.mod_link_banner_right.mod_img_medium .img_medium {
  width: 40%;
  max-width: 400px;
}

/* img_large */
.mod_img_text_left .img_large,
.mod_img_text_right .img_large,
.mod_link_banner_left.mod_img_large .img_large,
.mod_link_banner_right.mod_img_large .img_large {
  width: 60%;
  max-width: 600px;
}

.mod_img_text_left .img_small,
.mod_img_text_left .img_medium,
.mod_img_text_left .img_large,
.mod_link_banner_left .img_small,
.mod_link_banner_left .img_medium,
.mod_link_banner_left .img_large {
  margin-right: 40px;
}

.mod_img_text_right .img_small,
.mod_img_text_right .img_medium,
.mod_img_text_right .img_large,
.mod_link_banner_right .img_small,
.mod_link_banner_right .img_medium,
.mod_link_banner_right .img_large {
  margin-left: 40px;
}

.mod_img_small .img_small img,
.mod_img_medium .img_medium img,
.mod_img_large .img_large img {
  width: auto;
}

.mod_img_text_left.mod_img_small .text_box,
.mod_img_text_left.mod_img_medium .text_box,
.mod_img_text_left.mod_img_large .text_box,
.mod_link_banner_left.mod_img_small .text_box,
.mod_link_banner_left.mod_img_medium .text_box,
.mod_link_banner_left.mod_img_large .text_box,
.mod_img_text_right.mod_img_small .text_box,
.mod_img_text_right.mod_img_medium .text_box,
.mod_img_text_right.mod_img_large .text_box,
.mod_link_banner_right.mod_img_small .text_box,
.mod_link_banner_right.mod_img_medium .text_box,
.mod_link_banner_right.mod_img_large .text_box {
  overflow: hidden;
  margin: 0;
}

@media screen and (max-width: 600px) {
  .mod_img_text_left .img_small,
  .mod_img_text_left .img_medium,
  .mod_img_text_left .img_large,
  .mod_img_text_right .img_small,
  .mod_img_text_right .img_medium,
  .mod_img_text_right .img_large,
  .mod_link_banner_left.mod_img_small .img_small,
  .mod_link_banner_left.mod_img_medium .img_medium,
  .mod_link_banner_left.mod_img_large .img_large,
  .mod_link_banner_right.mod_img_small .img_small,
  .mod_link_banner_right.mod_img_medium .img_medium,
  .mod_link_banner_right.mod_img_large .img_large {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px;
    text-align: center;
  }
}
.mod_link_banner_center {
  text-align: center;
}

.mod_link_banner_center .text_box,
.mod_link_banner_left.mod_img_origin .text_box,
.mod_link_banner_right.mod_img_origin .text_box {
  margin-top: 20px;
}

/* download module */
.mod_file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mod_file > div:first-child {
  float: none;
  margin-right: 40px;
  text-align: left;
}

.mod_file > .text_box {
  width: 100%;
  margin-left: auto;
}

.mod_file a {
  display: block;
}

.mod_file a img {
  display: none;
}

.mod_file a::before {
  display: block;
  height: 80px;
}

.mod_file .pdf a::before {
  content: url("../img/icon_pdf.svg");
}

.mod_file .word a::before {
  content: url("../img/icon_word.svg");
}

.mod_file .xls a::before {
  content: url("../img/icon_excel.svg");
}

.mod_file .pdf a:hover::before,
.mod_file .word a:hover::before,
.mod_file .xls a:hover::before {
  opacity: 0.8;
}

@media screen and (max-width: 600px) {
  .mod_file {
    display: block;
  }
  .mod_file > div:first-child {
    margin: 0 auto 10px;
    text-align: center;
  }
}
/* news & gallery
------------------------------*/
/* pagebute */
.mod_news_list ul.pager,
.mod_gallery_list ul.pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
}

.mod_news_list ul.pager li,
.mod_gallery_list ul.pager li {
  margin: 0 5px 5px;
}

.mod_news_list ul.pager a,
.mod_gallery_list ul.pager a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  background: #f3efe8;
  /*border: 1px solid #EEEDEB;*/
  padding: 0;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #333;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
}

.mod_news_list ul.pager a:hover,
.mod_news_list ul.pager a.current,
.mod_gallery_list ul.pager a:hover,
.mod_gallery_list ul.pager a.current {
  background: #da5800;
  color: #ffffff;
}

/* button */
.mod_news_list p.pager {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.mod_news_list p.pager a {
  display: block;
  width: 100%;
  background: #25a34d;
  border-radius: 10px;
  padding: 27px 10px 28px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #ffffff;
  -webkit-box-shadow: 0 7px 0 #0d752b;
          box-shadow: 0 7px 0 #0d752b;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.mod_news_list p.pager a:hover {
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.mod_gallery_list p.pager {
  width: 100%;
  max-width: 400px;
  margin: 40px auto 57px;
}
@media screen and (max-width: 960px) {
  .mod_gallery_list p.pager {
    margin-top: 25px;
  }
}

.mod_gallery_list p.pager a {
  display: block;
  width: 100%;
  background: #25a34d;
  border-radius: 10px;
  padding: 27px 10px 28px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #ffffff;
  -webkit-box-shadow: 0 7px 0 #0d752b;
          box-shadow: 0 7px 0 #0d752b;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.mod_gallery_list p.pager a:hover {
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.mod_news_detail .back,
.mod_gallery_detail .back {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.mod_news_detail .back a,
.mod_gallery_detail .back a {
  display: block;
  width: 100%;
  background: #25a34d;
  border-radius: 10px;
  padding: 27px 10px 28px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #ffffff;
  -webkit-box-shadow: 0 7px 0 #0d752b;
          box-shadow: 0 7px 0 #0d752b;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.mod_news_detail .back a:hover,
.mod_gallery_detail .back a:hover {
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

/* news
------------------------------*/
/* list */
.mod_news_list {
  margin-bottom: 90px;
}

.mod_news_list #news {
  margin-bottom: 40px;
}

.mod_news_list #news dl {
  border: none;
  background: none;
  padding: 18px 30px 17px;
  line-height: 1.6;
  color: #3f3c38;
}

.mod_news_list #news dl:nth-child(2n-1) {
  background-color: #FFF;
}

.mod_news_list #news dl dt {
  margin-right: 45px;
  font-size: 1.4rem;
  color: #25a34d;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

.mod_news_list #news dl dd {
  overflow: hidden;
  margin-left: auto;
}

.mod_news_list #news dl dd a {
  font-weight: normal;
}

@media screen and (max-width: 480px) {
  .mod_news_list #news dl dt {
    float: none;
  }
  .mod_news_list #news dl dd {
    margin: 0;
  }
}
/* detail */
#news_detail {
  margin-bottom: 50px;
}

.mod_news_detail .date {
  margin-bottom: 20px;
  color: inherit;
}

/* gallery
------------------------------*/
.mod_pickup_gallery #gallery,
.mod_gallery_list #gallery {
  width: 100%;
  padding-bottom: 0;
}

.mod_pickup_gallery #gallery dl,
.mod_gallery_list #gallery dl {
  float: left;
  width: 31%;
  margin: 0 3.5% 32px 0;
}

.mod_pickup_gallery #gallery dl dd.img,
.mod_gallery_list #gallery dl dd.img {
  position: relative;
}

.mod_pickup_gallery #gallery dl dd.img::before,
.mod_gallery_list #gallery dl dd.img::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}

.mod_pickup_gallery #gallery dl dd.img a,
.mod_gallery_list #gallery dl dd.img a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  border: none;
}

.mod_pickup_gallery #gallery dl dd.img a img,
.mod_gallery_list #gallery dl dd.img a img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  padding: 10px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.mod_pickup_gallery #gallery dl dt,
.mod_gallery_list #gallery dl dt {
  line-height: 1.4;
  margin-top: 8px;
}

.mod_pickup_gallery #gallery dl dt a,
.mod_gallery_list #gallery dl dt a {
  font-weight: bold;
}

.mod_pickup_gallery #gallery dl dt + dd,
.mod_gallery_list #gallery dl dt + dd {
  display: none;
}

@media screen and (max-width: 480px) {
  .mod_pickup_gallery #gallery dl,
  .mod_gallery_list #gallery dl {
    width: 32%;
    margin-right: 2%;
  }
  .mod_pickup_gallery #gallery dl dt,
  .mod_gallery_list #gallery dl dt {
    font-size: 1.2rem;
  }
}
/* detail */
.mod_gallery_detail {
  margin-bottom: 50px;
}

#gallery_text {
  margin-bottom: 33px;
}

/* type01 */
.mod_gallery_detail.gallery_type01 {
  margin-bottom: 63px;
}

.mod_gallery_detail.gallery_type01 .img_big {
  position: relative;
  width: 50%;
  min-width: 250px;
  margin-bottom: 16px;
}

.mod_gallery_detail.gallery_type01 ul.img_list {
  width: 100%;
  max-width: 650px;
  margin-bottom: 19px;
}

.mod_gallery_detail.gallery_type01 ul.img_list li {
  position: relative;
  width: 120px;
}

/* type02 */
.mod_gallery_detail.gallery_type02 {
  margin-bottom: 53px;
}

.mod_gallery_detail.gallery_type02 .gallery_inner {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.mod_gallery_detail.gallery_type02 .img_big {
  position: relative;
  width: 50%;
  margin: 0;
}

.mod_gallery_detail.gallery_type02 ul.img_list {
  float: right;
  width: 47%;
}

.mod_gallery_detail.gallery_type02 ul.img_list li {
  float: left;
  position: relative;
  width: 31.916%;
  margin: 0 2.1% 8px 0;
}

.mod_gallery_detail.gallery_type02 ul.img_list li:nth-child(2n) {
  margin-right: 2.1%;
}

.mod_gallery_detail.gallery_type02 ul.img_list li:nth-child(3n) {
  margin-right: 0;
}

/* type03 */
.mod_gallery_detail.gallery_type03 {
  margin-bottom: 100px;
}

.mod_gallery_detail.gallery_type03 .before_after,
.mod_gallery_detail.gallery_type03 ul.img_list {
  width: 100%;
}

.mod_gallery_detail.gallery_type03 .before_after dl.before,
.mod_gallery_detail.gallery_type03 .before_after dl.after {
  display: block;
  float: left;
  width: 48%;
  margin: 0;
}

.mod_gallery_detail.gallery_type03 .before_after dl.after {
  float: right;
}

.mod_gallery_detail.gallery_type03 .before_after dl.after dt {
  color: #25a34d;
}

.mod_gallery_detail.gallery_type03 .before_after dl dt {
  margin-bottom: 20px;
  font-size: 2rem;
  line-height: 0.8;
  color: #3f3c38;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

.mod_gallery_detail.gallery_type03 .before_after dl dd {
  position: relative;
}

.mod_gallery_detail.gallery_type03 ul.img_list li {
  position: relative;
  float: none;
  display: inline-block;
  width: 11.25%;
  min-width: 70px;
  margin-right: 1.375%;
}

.mod_gallery_detail.gallery_type03 ul.img_list li:nth-child(4n) {
  margin-right: 1.75%;
}

.mod_gallery_detail.gallery_type03 ul.img_list li:last-child {
  margin-right: 0;
}

.mod_gallery_detail.gallery_type01 .img_big::before,
.mod_gallery_detail.gallery_type01 ul.img_list li::before,
.mod_gallery_detail.gallery_type02 .img_big::before,
.mod_gallery_detail.gallery_type02 ul.img_list li::before,
.mod_gallery_detail.gallery_type03 .before_after dl dd::before,
.mod_gallery_detail.gallery_type03 ul.img_list li::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}

.mod_gallery_detail.gallery_type01 .img_big a,
.mod_gallery_detail.gallery_type01 ul.img_list li a,
.mod_gallery_detail.gallery_type02 .img_big a,
.mod_gallery_detail.gallery_type02 ul.img_list li a,
.mod_gallery_detail.gallery_type03 .before_after dl dd a,
.mod_gallery_detail.gallery_type03 ul.img_list li a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  border: none;
}

.mod_gallery_detail.gallery_type01 .img_big a img,
.mod_gallery_detail.gallery_type01 ul.img_list li a img,
.mod_gallery_detail.gallery_type02 .img_big a img,
.mod_gallery_detail.gallery_type02 ul.img_list li a img,
.mod_gallery_detail.gallery_type03 .before_after dl dd a img,
.mod_gallery_detail.gallery_type03 ul.img_list li a img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  padding: 3px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 960px) {
  .mod_gallery_detail.gallery_type01 ul.img_list li {
    width: 15%;
    min-width: 70px;
  }
  .mod_gallery_detail.gallery_type03 .before_after dl.before,
  .mod_gallery_detail.gallery_type03 .before_after dl.after {
    width: 49%;
  }
  .mod_gallery_detail.gallery_type03 ul.img_list {
    text-align: center;
  }
  .mod_gallery_detail.gallery_type03 ul.img_list li {
    display: inline-block;
    margin: 5px;
  }
  .mod_gallery_detail.gallery_type03 ul.img_list li:nth-child(4n) {
    margin-right: 5px;
  }
}
@media screen and (max-width: 680px) {
  .mod_gallery_detail.gallery_type02 ul.img_list {
    font-size: 0;
  }
}
@media screen and (max-width: 480px) {
  .mod_gallery_detail.gallery_type02 .img_big {
    float: none;
    min-width: 250px;
    margin: 0 auto 20px;
  }
  .mod_gallery_detail.gallery_type02 ul.img_list {
    width: 100%;
    text-align: center;
  }
  .mod_gallery_detail.gallery_type02 ul.img_list li {
    float: none;
    display: inline-block;
    width: 15%;
    min-width: 70px;
    margin-right: 5px;
    margin-left: 5px;
  }
  .mod_gallery_detail.gallery_type02 ul.img_list li:nth-child(2n) {
    margin-right: 5px;
  }
  .mod_gallery_detail.gallery_type02 ul.img_list li:nth-child(3n) {
    margin-right: 5px;
  }
}
/* #contact_form
------------------------------*/
#contact_form table {
  width: 100%;
}

#contact_form table th,
#contact_form table td {
  border: 1px solid #cbc0b1;
  background: #ffffff;
  padding: 15px 17px 23px;
  text-align: left;
  vertical-align: top;
  font-size: 1.6rem;
}

#contact_form table th {
  width: 33.5%;
  background: #e1d8cb;
  vertical-align: top;
  font-weight: normal;
  font-size: 1.6rem;
}

.form_tel th:after {
  content: "※お電話での折り返し希望の場合、ご入力ください";
  font-size: 1rem;
  display: block;
}

.form_inquiry th:after {
  content: "【以下内容をご明記ください】\a・引っ越しご希望日：\a・ご引っ越し先住所：\a・お荷物：例）2ドア冷蔵庫、縦型洗濯機、シングルベッド、\aテレビ（40インチ）、段ボール10箱";
  font-size: 1rem;
  display: block;
  white-space: pre;
}

#contact_form table th .info {
  margin-top: 3px;
}

#contact_form table th .info .note {
  font-size: 1rem;
  line-height: 1.2;
  color: #3f3c38;
  margin-bottom: 5px;
}

#contact_form table th .info .list li {
  font-size: 1rem;
  line-height: 1.4;
  color: #3f3c38;
  position: relative;
  margin-bottom: 4px;
}

#contact_form table th span.req {
  margin-left: -12px;
  font-weight: normal;
  color: #FF4A0B;
  font-size: 1.2rem;
}

#contact_form table th span.att {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
  color: #3f3c38;
}

.fixed .formErrorContent {
  background: #ff4a0b;
}

#contact_form table td {
  font-size: 1.4rem;
}

#contact_form td input[type=text] {
  width: 100%;
  max-width: 100%;
  height: 36px;
  background: #e9e9e9;
  border: none;
  padding: 5px;
  margin: 4px 0 0px;
}

#contact_form table td input.zipcode {
  width: 100%;
  max-width: 248px;
}

#contact_form table textarea {
  width: 100%;
  max-width: 100%;
  height: 120px;
  background: #e9e9e9;
  border: none;
  padding: 5px;
  margin-top: 4px;
  font-size: inherit;
  margin-bottom: -6px;
}

#contact_form p.submit {
  width: 100%;
  max-width: 400px;
  margin: 40px auto 77px;
}

#contact_form p.submit button {
  display: block;
  width: 100%;
  background: #25a34d;
  border-radius: 10px;
  padding: 27px 10px 28px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #ffffff;
  -webkit-box-shadow: 0 7px 0 #0d752b;
          box-shadow: 0 7px 0 #0d752b;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: none;
  font-weight: bold;
  outline: none;
}

#contact_form p.submit button:hover {
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.privacy {
  font-size: 1.4rem;
  color: #3f3c38;
  margin: -4px 0 94px;
}
@media screen and (max-width: 680px) {
  .privacy {
    font-size: 1.2rem;
  }
}

.privacy p {
  margin-bottom: 31px;
}

.privacy .policy > li {
  padding-left: 0.5em;
  margin: 0 0 31px 1.1em;
  list-style: decimal outside;
}

.privacy .policy > li:last-child {
  margin-bottom: 0;
}

.privacy .policy .list li {
  position: relative;
  padding-left: 1em;
}

.privacy .policy .list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 600px) {
  #contact_form table th,
  #contact_form table td {
    display: block;
    width: 100%;
    padding: 10px 15px 7px;
  }
  #contact_form table td {
    padding: 10px 15px 13px;
  }
  #contact_form table th,
  #contact_form table tr:not(:last-child) td {
    border-bottom: none;
  }
}
/* wink */
.wink a:hover {
  -webkit-animation-name: wink;
          animation-name: wink;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
}

.wink img {
  opacity: 1 !important;
}

@-webkit-keyframes wink {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

@keyframes wink {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
.object-fit-img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100% !important;
  height: 100% !important;
  font-family: "object-fit: cover;";
}

/*************scss読み込み***********/
@media screen and (max-width: 480px) {
  #wrap,
  .wrap {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.module.mod_h2 {
  padding-top: 0px;
}
@media screen and (min-width: 1200px) {
  .module.mod_h2.hash-link {
    margin-top: calc(100px * -1);
    padding-top: calc(100px + 0px);
  }
}
.module.mod_h2:first-child, .module.mod_h1 + .module.mod_h2 {
  padding-top: 0;
}
@media screen and (min-width: 1200px) {
  .module.mod_h2:first-child.hash-link, .module.mod_h1 + .module.mod_h2.hash-link {
    margin-top: calc(100px * -1);
    padding-top: 100px;
  }
}

.module.mod_h3 {
  padding-top: 0px;
}
@media screen and (min-width: 1200px) {
  .module.mod_h3.hash-link {
    margin-top: calc(100px * -1);
    padding-top: calc(100px + 0px);
  }
}
.module.mod_h3:first-child, .module.mod_h1 + .module.mod_h3, .module.mod_h2 + .module.mod_h3 {
  padding-top: 0;
}
@media screen and (min-width: 1200px) {
  .module.mod_h3:first-child.hash-link, .module.mod_h1 + .module.mod_h3.hash-link, .module.mod_h2 + .module.mod_h3.hash-link {
    margin-top: calc(100px * -1);
    padding-top: 100px;
  }
}

/* openbox
====================================*/
.openbox__trigger, .openbox__sub-trigger, .openbox__trigger--hover {
  cursor: pointer;
  position: relative;
}
.openbox__target {
  overflow: hidden;
  height: 0;
  -webkit-transition: height 0.4s;
  transition: height 0.4s;
  cursor: auto;
  position: absolute;
  left: -16px;
}
.toggle-menu .openbox__target {
  left: 0;
  position: relative;
}

/* scroll-hint
====================================*/
.scroll.scroll-hint:not(.is-scrollable) {
  position: static !important;
}

/* スマホ追随バナー
====================================*/
.btmBannerSp {
  display: none;
  width: 100%;
  height: 50px;
  position: relative;
  z-index: 99;
}
@media screen and (max-width: 960px) {
  .btmBannerSp {
    display: block;
  }
}
.btmBannerSp__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 50px;
  position: fixed;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(120%);
          transform: translateY(120%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.btmBannerSp__inner.-fixed {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.btmBannerSp__item {
  width: 100%;
  height: 100%;
}
.btmBannerSp__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.5;
}
.btmBannerSp__item.-tel .btmBannerSp__link {
  background: #179fa5;
}
.btmBannerSp__item.-mail .btmBannerSp__link {
  background: #cf433c;
}
.btmBannerSp__item.-line .btmBannerSp__link {
  background: #00b900;
}
.btmBannerSp__link:hover {
  text-decoration: none;
  opacity: 0.8;
}

/* index-performance  */
.index-performance .img {
  margin-bottom: -1px;
}
@media screen and (max-width: 480px) {
  .index-performance .img {
    width: 500%;
    margin-left: -250%;
  }
}

.index-performance .box {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px 35px;
}

.index-performance .title {
  font-size: 3.6rem;
  line-height: 1.75;
  color: #3f3c38;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
  background: url("../img/icon01.svg") top 16px left no-repeat, url("../img/icon02.svg") top 16px right no-repeat;
  padding-bottom: 20px;
}
@media screen and (max-width: 680px) {
  .index-performance .title {
    font-size: 2rem;
    background-size: 45px;
    padding-bottom: 5px;
  }
}

.index-performance .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 960px) {
  .index-performance .info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.index-performance .image-left {
  margin-left: -285px;
  margin-top: 50px;
}
@media screen and (max-width: 960px) {
  .index-performance .image-left {
    display: none;
  }
}

.index-performance .image-right {
  margin-right: -280px;
  margin-top: 50px;
}
@media screen and (max-width: 960px) {
  .index-performance .image-right {
    display: none;
  }
}

.index-performance .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 27px;
}

.index-performance .inner .text {
  max-width: 240px;
  width: 100%;
  background-color: #FFF;
  border-radius: 50%;
  font-size: 1.8rem;
  color: #3f3c38;
  text-align: center;
  font-weight: bold;
  line-height: 1.75;
  padding: 60px 5px 54px;
  position: relative;
}

.index-performance .inner .text:first-child::after {
  content: "";
  position: absolute;
  bottom: 17px;
  right: -47px;
  background: url("../img/index_img03.svg") bottom right no-repeat;
  width: 84px;
  height: 153px;
}

.index-performance .inner .text:last-child::after {
  content: "";
  position: absolute;
  bottom: 17px;
  left: -47px;
  background: url("../img/index_img04.svg") bottom left no-repeat;
  width: 133px;
  height: 151px;
}

.index-performance .inner .text .att {
  color: #209843;
}

.index-performance .inner .text .note {
  color: #da5800;
}

.index-performance .text-bottom {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 680px) {
  .index-performance .text-bottom {
    text-align: left;
    line-height: 1.5;
  }
}

/* index-single  */
.index-single {
  background-color: #d4e1b4;
  margin-bottom: 80px;
}

.index-single .box {
  max-width: 1030px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 15px 86px;
}

.index-single .img {
  text-align: center;
  margin-bottom: 13px;
}
@media screen and (max-width: 680px) {
  .index-single .img {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

.index-single .mod_h2 {
  margin-bottom: 30px;
}

.index-single .info {
  background-color: #FFF;
  border-radius: 40px;
  position: relative;
  padding: 45px 0 46px;
  margin-bottom: 45px;
}
@media screen and (max-width: 960px) {
  .index-single .info {
    margin-bottom: 20px;
  }
}

.index-single .att {
  max-width: 290px;
  width: 100%;
  margin: 0 auto 5px;
  background-color: #25a34d;
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: bold;
  color: #FFF;
  border-radius: 21px;
  padding: 7px 3px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 680px) {
  .index-single .att {
    font-size: 1.7rem;
  }
}

.index-single .att::after {
  content: "";
  position: absolute;
  top: -65px;
  right: -80px;
  background: url("../img/index_img07.svg") top right no-repeat;
  width: 112px;
  height: 119px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .index-single .att::after {
    content: none;
  }
}

.index-single .title {
  text-align: center;
  font-size: 4rem;
  line-height: 1.4;
  color: #25a34d;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: -8px;
}
@media screen and (max-width: 680px) {
  .index-single .title {
    font-size: 2.2rem;
  }
}

.index-single .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}

.index-single .price {
  font-size: 4rem;
  line-height: 1.2;
  color: #da5800;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 680px) {
  .index-single .price {
    font-size: 3rem;
  }
}

.index-single .price span {
  font-size: 8rem;
  margin-right: -15px;
}
@media screen and (max-width: 680px) {
  .index-single .price span {
    font-size: 6.5rem;
  }
}

.index-single .language {
  font-size: 3rem;
  line-height: 1.2;
  color: #3f3c38;
  font-weight: bold;
  margin-left: 8px;
  margin-top: 21px;
}
@media screen and (max-width: 680px) {
  .index-single .language {
    font-size: 2.5rem;
    margin: 0 auto;
  }
}

.index-single .text {
  font-size: 1.6rem;
  line-height: 1.4;
  color: #3f3c38;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 680px) {
  .index-single .text {
    font-size: 1.4rem;
  }
}

.index-single .image {
  position: absolute;
  top: 167px;
  right: -18px;
}

.index-single .inner .title {
  font-size: 2rem;
  line-height: 1.4;
  color: #25a34d;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 28px;
}
@media screen and (max-width: 680px) {
  .index-single .inner .title {
    font-size: 1.7rem;
  }
}

.index-single .inner .title span {
  background: url("../img/icon03.svg") top 15px left no-repeat, url("../img/icon04.svg") top 15px right no-repeat;
  padding: 20px 25px;
}
@media screen and (max-width: 680px) {
  .index-single .inner .title span {
    background-size: 12px;
  }
}

.index-single .inner {
  border-top: 2px solid #d4e1b4;
  padding-top: 46px;
  margin-top: 36px;
}

.index-single .inner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 90px;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .index-single .inner-box {
    padding: 0 15px;
  }
}

.index-single .inner-box dl {
  max-width: 175px;
  width: 100%;
  margin: 0 15px;
  margin-bottom: 13px;
}
@media screen and (max-width: 960px) {
  .index-single .inner-box dl {
    max-width: calc(50% - 30px);
  }
}
@media screen and (max-width: 960px) {
  .index-single .inner-box dl dt {
    text-align: center;
  }
}

.index-single .inner-box dl dd {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #3f3c38;
  margin-top: 6px;
}
@media screen and (max-width: 680px) {
  .index-single .inner-box dl dd {
    font-size: 1.3rem;
  }
}

.index-single .inner-box dl dd span {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
  color: #3f3c38;
  margin-top: 5px;
}

.index-single .att-bottom {
  text-align: center;
  font-size: 1rem;
  color: #3f3c38;
  line-height: 1.75;
}

.index-single .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.index-single .list li {
  max-width: 400px;
  width: 100%;
  margin: 0 20px;
}

.index-single .list li a {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #3f3c38;
  background-color: #ffc800;
  border-radius: 10px;
  -webkit-box-shadow: 0 7px 0 #a78000;
          box-shadow: 0 7px 0 #a78000;
  padding: 27px 10px 28px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.index-single .list li:last-child a {
  background-color: #25a34d;
  -webkit-box-shadow: 0 7px 0 #0d752b;
          box-shadow: 0 7px 0 #0d752b;
  color: #FFF;
}

.index-single .list li a:hover {
  text-decoration: none;
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.index-single .list li a span {
  background: url("../img/icon05.svg") left center no-repeat;
  padding: 5px 5px 5px 43px;
}

/* index-reviews */
.index-reviews {
  margin-bottom: 87px;
}

.index-reviews .box {
  max-width: 670px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}

.index-reviews .box::before {
  content: "";
  position: absolute;
  top: 306px;
  left: -398px;
  background: url("../img/bg04.svg") top left no-repeat;
  width: 385px;
  height: 117px;
}
@media screen and (max-width: 960px) {
  .index-reviews .box::before {
    content: none;
  }
}

.index-reviews .box::after {
  content: "";
  position: absolute;
  top: 202px;
  right: -370px;
  background: url("../img/bg05.svg") top right no-repeat;
  width: 385px;
  height: 117px;
}
@media screen and (max-width: 960px) {
  .index-reviews .box::after {
    content: none;
  }
}

.index-reviews .img {
  margin-bottom: 42px;
  text-align: center;
}

.index-reviews .img_sp {
  display: none;
}

.index-reviews .text {
  text-align: center;
  font-size: 1.6rem;
  color: #3f3c38;
  line-height: 1.75;
  margin-bottom: 32px;
}
@media screen and (max-width: 680px) {
  .index-reviews .text br {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .index-reviews .text {
    text-align: left;
    line-height: 1.5;
  }
}

.index-reviews .info {
  position: relative;
}

.index-reviews .info::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -120px;
  background: url("../img/index_img17.svg") bottom left no-repeat;
  width: 160px;
  height: 192px;
}
@media screen and (max-width: 960px) {
  .index-reviews .info::before {
    content: none;
  }
}

.index-reviews .info::after {
  content: "";
  position: absolute;
  bottom: 58px;
  right: -154px;
  background: url("../img/index_img18.svg") bottom right no-repeat;
  width: 186px;
  height: 213px;
}
@media screen and (max-width: 960px) {
  .index-reviews .info::after {
    content: none;
  }
}

.index-reviews .article {
  max-width: 560px;
  width: 100%;
  margin: 0 0 17px auto;
  background-color: #FFF;
  border-radius: 10px;
  padding: 23px 10px 33px 30px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .index-reviews .article {
    background: #FFF url(../img/index_img18_sp.svg) no-repeat top 8px right;
    background-size: 100px;
    padding-right: 100px;
    padding-left: 5px;
  }
}

.index-reviews .article::after {
  content: "";
  position: absolute;
  bottom: -13px;
  right: 0;
  background: url("../img/icon08.svg") bottom right no-repeat;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 960px) {
  .index-reviews .article::after {
    content: none;
  }
}

.index-reviews .article:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: -13px;
  right: initial;
  left: 0;
  background: url("../img/icon07.svg") bottom left no-repeat;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 960px) {
  .index-reviews .article:nth-child(2)::after {
    content: none;
  }
}

.index-reviews .article + .article {
  margin: auto 0 0 0;
}
@media screen and (max-width: 960px) {
  .index-reviews .article + .article {
    background: #FFF url(../img/index_img07_sp.svg) no-repeat top 8px left;
    background-size: 100px;
    padding-right: 5px;
    padding-left: 100px;
  }
}

.index-reviews .note {
  font-size: 1.6rem;
  line-height: 1.4;
  color: #3f3c38;
}

.index-reviews .note span {
  color: #da5800;
}

.index-reviews .att {
  color: #ffd301;
  margin-bottom: 3px;
}

.index-reviews .btn {
  max-width: 400px;
  width: 100%;
  margin: 50px auto 0;
}

.index-reviews .btn a {
  display: block;
  width: 100%;
  background: #25a34d;
  border-radius: 10px;
  padding: 27px 10px 28px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #ffffff;
  -webkit-box-shadow: 0 7px 0 #0d752b;
          box-shadow: 0 7px 0 #0d752b;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.index-reviews .btn a:hover {
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

/* mod_gallery_list */
.pagecode-index .mod_gallery_list {
  max-width: 100%;
  background-color: #d4e1b4;
  margin-bottom: 80px;
  padding: 0 110px;
}
@media screen and (max-width: 960px) {
  .pagecode-index .mod_gallery_list {
    padding: 0 15px;
  }
}

.mod_gallery_list .mod_h2 {
  margin-bottom: 30px;
}

.mod_gallery_list .box {
  width: calc(50% + 540px);
  margin: 0 0 0 auto;
}

/* index-choose  */
.index-choose {
  padding-bottom: 155px;
  margin-bottom: -1px;
  background: url(../img/bg03.png) no-repeat bottom center;
}

.index-choose .box {
  max-width: 1100px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 960px) {
  .index-choose .box {
    margin-bottom: 30px;
  }
}

.index-choose .box::after {
  content: "";
  position: absolute;
  top: 206px;
  right: 346px;
  background: url("../img/index_img24.svg") top right no-repeat;
  width: 88px;
  height: 150px;
}
@media screen and (max-width: 960px) {
  .index-choose .box::after {
    content: none;
  }
}

.index-choose .box::before {
  content: "";
  position: absolute;
  bottom: 17px;
  left: 190px;
  background: url("../img/index_img25.svg") bottom left no-repeat;
  width: 66px;
  height: 141px;
}
@media screen and (max-width: 960px) {
  .index-choose .box::before {
    content: none;
  }
}

.index-choose .article {
  max-width: 310px;
  width: 100%;
  margin: 0 20px 12px;
}
@media screen and (max-width: 680px) {
  .index-choose .article {
    max-width: 280px;
  }
}

.index-choose .info {
  background-color: #FFF;
  border-radius: 50%;
  padding: 68px 10px 67px;
  margin-top: -43px;
}

.index-choose .title {
  text-align: center;
  font-size: 3rem;
  color: #da5800;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.35;
  margin-bottom: 8px;
}
@media screen and (max-width: 680px) {
  .index-choose .title {
    font-size: 2.2rem;
  }
}

.index-choose .text {
  font-size: 1.6rem;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 680px) {
  .index-choose .text {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.index-choose .image {
  text-align: center;
  position: relative;
  z-index: 10;
}

.index-choose .btn {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .index-choose .btn {
    max-width: calc(100% - 30px);
  }
}

.index-choose .btn a {
  display: block;
  width: 100%;
  background: #25a34d;
  border-radius: 10px;
  padding: 27px 10px 28px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #ffffff;
  -webkit-box-shadow: 0 7px 0 #0d752b;
          box-shadow: 0 7px 0 #0d752b;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.index-choose .btn a:hover {
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

/* index-flow  */
.index-flow {
  background-color: #d4e1b4;
}

.index-flow .mod_h2 {
  margin-bottom: 32px;
}

.index-flow .box {
  max-width: 1030px;
  width: 100%;
  padding: 78px 15px 60px;
  margin: 0 auto;
}

.index-flow .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.index-flow .article {
  max-width: 220px;
  width: 100%;
  background-color: #FFF;
  position: relative;
  margin: 0 20px;
  border-radius: 10px;
  padding: 36px 10px 25px;
}
.index-flow .article:nth-of-type(1) {
  margin-left: 0;
}
.index-flow .article:nth-of-type(4) {
  margin-right: 0;
}

.index-flow .article::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -20px;
  background: url("../img/icon09.png") top right no-repeat;
  width: 21px;
  height: 91px;
}
@media screen and (max-width: 680px) {
  .index-flow .article::after {
    content: none;
  }
}

.index-flow .article:last-child::after {
  display: none;
}

.index-flow .article .title {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #232320;
  font-weight: bold;
  margin-bottom: 16px;
}

.index-flow .article .image {
  text-align: center;
  margin-bottom: 4px;
}

.index-flow .article .text {
  font-size: 1.6rem;
  color: #3f3c38;
  line-height: 1.75;
  text-align: center;
}

.index-flow .article .text a {
  font-weight: normal;
  font-size: 1.4rem;
  color: #25a34d;
  text-decoration: underline;
  line-height: 1.2;
}

.index-flow .article .text a:hover {
  text-decoration: none;
}

.index-flow .article .text span {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: 3px;
  display: block;
}

.index-flow .num {
  max-width: 37px;
  width: 100%;
  border-radius: 50%;
  background-color: #da5800;
  font-size: 2rem;
  line-height: 1.2;
  color: #fbfbfb;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  padding: 6px 3px 7px;
  position: absolute;
  top: -10px;
  left: -10px;
}

/* index-area  */
.index-area {
  background-color: #d4e1b4;
  margin: -20px 0 80px;
}

.index-area .box {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 80px;
}

.index-area .image {
  text-align: center;
  position: relative;
  z-index: 10;
}

.index-area .image_sp {
  display: none;
}

.index-area .img_sp {
  display: none;
}

.index-area .info {
  background-color: #f3efe8;
  border: 4px solid #ffffff;
  border-radius: 14px;
  padding: 51px 15px 50px;
  margin-top: -32px;
  position: relative;
}

.index-area .info::after {
  content: "";
  position: absolute;
  top: 110px;
  right: 17px;
  background: url("../img/index_img33.svg") top right no-repeat;
  width: 238px;
  height: 155px;
}
@media screen and (max-width: 960px) {
  .index-area .info::after {
    top: auto;
    bottom: -70px;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
  }
}

.index-area .bg-title {
  text-align: center;
  font-size: 3.6rem;
  line-height: 1.75;
  color: #3f3c38;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-bottom: 27px;
}
@media screen and (max-width: 680px) {
  .index-area .bg-title {
    font-size: 2rem;
  }
}

.index-area .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.index-area .text-box {
  max-width: 464px;
  width: 100%;
  margin-left: 50px;
}

.index-area .text-box .article + .article {
  margin-top: 28px;
}

.index-area .img-note_sp {
  display: none;
}

.index-area .text-box .title {
  font-size: 3rem;
  line-height: 1.4;
  color: #25a34d;
  font-weight: bold;
  margin-top: 6px;
}
@media screen and (max-width: 680px) {
  .index-area .text-box .title {
    font-size: 2rem;
  }
}

.index-area .text-box .text {
  font-size: 1.6rem;
  line-height: 1.75;
  color: #3f3c38;
  margin-top: 4px;
}

.index-area .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.index-area .inner .article {
  width: 50%;
  position: relative;
  max-height: 225px;
  overflow: hidden;
}

.index-area .inner .article a {
  display: block;
  font-weight: normal;
  position: relative;
  color: #FFF;
  overflow: hidden;
  max-height: 225px;
}

.index-area .inner .article a::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px;
  background: url("../img/icon_arrow.svg") right center no-repeat;
  width: 40px;
  height: 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 11;
}
@media screen and (max-width: 480px) {
  .index-area .inner .article a::before {
    right: 5px;
  }
}

.index-area .inner .article a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #25a34d;
  width: 100%;
  height: 100%;
  z-index: 10;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.index-area .inner .article a:hover::after {
  background: rgba(37, 163, 77, 0.4901960784);
}

.index-area .inner .article .title {
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: normal;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 82px;
  z-index: 11;
}
@media screen and (max-width: 680px) {
  .index-area .inner .article .title {
    font-size: 1.4rem;
  }
}

.index-area .inner .article .title span {
  display: block;
  font-size: 2.4rem;
  line-height: 1.2;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 680px) {
  .index-area .inner .article .title span {
    font-size: 2rem;
  }
}

/* index-instgram  */
.index-instgram {
  background-color: #FFF;
}

.index-instgram .box {
  max-width: 1030px;
  width: 100%;
  margin: 0 auto;
  padding: 67px 15px 60px;
  position: relative;
}

.index-instgram .img {
  position: absolute;
  top: 23px;
  left: 275px;
}
@media screen and (max-width: 960px) {
  .index-instgram .img {
    display: none;
  }
}

.index-instgram .title {
  text-align: center;
  font-size: 4rem;
  line-height: 1.4;
  color: #25a34d;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 15px;
}

.index-instgram .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

.index-instgram .btn {
  max-width: 400px;
  width: 100%;
  margin: 40px auto 0;
}

.index-instgram .btn a {
  display: block;
  width: 100%;
  background: #25a34d;
  border-radius: 10px;
  padding: 27px 10px 28px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #ffffff;
  -webkit-box-shadow: 0 7px 0 #0d752b;
          box-shadow: 0 7px 0 #0d752b;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.index-instgram .btn a:hover {
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

@media screen and (max-width: 960px) {
  .index-performance .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .index-performance .inner .text {
    margin: 0 60px 20px 0;
  }
  .index-performance .inner .text:nth-of-type(2) {
    margin: 0 0 20px 60px;
  }
  .index-single .image {
    display: none;
  }
  .index-single .info-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .index-single .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .index-single .list li {
    margin: 20px;
  }
  .index-reviews .img {
    display: none;
  }
  .index-reviews .img_sp {
    display: block;
    text-align: center;
    margin-bottom: 40px;
  }
  .index-reviews .article {
    margin: 0 auto;
  }
  .index-reviews .article + .article {
    margin: 30px auto 0;
  }
  .index-reviews .info::after {
    top: -26px;
    right: -38px;
  }
  .mod_gallery_list .box {
    width: 100%;
  }
  .index-flow .info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .index-flow .article {
    margin: 20px;
  }
  .index-area .info-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .index-area .text-box {
    margin: 30px auto 0;
  }
  .index-area {
    padding: 0 15px;
  }
  .index-area .img {
    display: none;
  }
  .index-area .img_sp {
    display: block;
    text-align: center;
    max-width: 200px;
    margin: 0 auto;
  }
  .index-area .img-note {
    display: none;
  }
  .index-area .img-note_sp {
    display: block;
    max-width: 100px;
  }
  .index-area .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .index-area .inner .article {
    width: 100%;
    margin: 20px;
  }
  .index-area .inner .article .title {
    height: 100%;
    top: 38%;
  }
  .index-instgram .list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .index-instgram .list li {
    margin: 10px;
  }
}
@media screen and (max-width: 680px) {
  .index-flow .info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .index-flow .info .article {
    margin: 0 0 20px !important;
    max-width: 100%;
  }
  .index-area .inner .article .title {
    top: 36%;
  }
}
@media screen and (max-width: 480px) {
  .index-choose .box::before {
    display: none;
  }
}
.instagram-api__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 20px;
}
.instagram-api__user-pic {
  width: 150px;
  border-radius: 50%;
  margin: 0 0 15px;
  overflow: hidden;
}
.instagram-api__user-name {
  font-weight: bold;
}
.instagram-api__user-id {
  margin: 0 0 15px;
}
.instagram-api__user-bio {
  margin: 0 0 15px;
}
.instagram-api__follow-btn {
  color: #fff;
  background-color: #125688;
  border: 1px solid #0f4871;
  border-radius: 4px;
  display: inline-block;
  padding: 8px 1.25em 7px;
  font-size: 1.4rem;
  line-height: 1.2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  /* font-family: $meiryo; */
  margin: 0 0 15px;
}
.instagram-api__follow-btn:hover {
  color: #fff;
  background-color: #0c3a5b;
  border-color: #08263b;
  text-decoration: none;
}

.instagram-media__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -2px;
}
.instagram-media__list-item {
  padding: 2px;
  width: 25%;
}
.instagram-media__link {
  display: block;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.instagram-media__link:hover {
  opacity: 0.8;
}

.square {
  overflow: hidden;
  position: relative;
}
.square__inner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.square__img {
  position: absolute;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.square:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}

.toggle-menu {
  display: none;
}
@media screen and (max-width: 960px) {
  .toggle-menu {
    display: block;
  }
}
.toggle-menu__checkbox {
  display: none;
}
.toggle-menu__button {
  position: absolute;
  z-index: 10000;
  cursor: pointer;
}
.toggle-menu__button.-fixed {
  position: fixed;
}
.toggle-menu__button.-cross {
  top: 5px;
  right: 5px;
  height: 46px;
  width: 46px;
  background: #167A32;
  border-radius: 0;
}
.toggle-menu__button.-cross::before, .toggle-menu__button.-cross::after,
.toggle-menu__button.-cross span {
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  width: 30px;
  margin: -1px auto 0;
  background: #fff;
}
.toggle-menu__button.-cross::before {
  top: 12px;
}
.toggle-menu__checkbox:checked ~ .toggle-menu__button.-cross::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.toggle-menu__button.-cross::after {
  bottom: 12px;
}
.toggle-menu__checkbox:checked ~ .toggle-menu__button.-cross::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.toggle-menu__button.-cross span {
  top: 50%;
}
.toggle-menu__checkbox:checked ~ .toggle-menu__button.-cross span {
  display: none;
}
.toggle-menu__button.-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 1rem;
}
.toggle-menu__checkbox:checked ~ .toggle-menu__button.-text {
  font-size: 0rem;
}
.toggle-menu__button.-text::after {
  font-size: 1rem;
}
.toggle-menu__checkbox:checked ~ .toggle-menu__button.-text::after {
  content: "CLOSE";
}
.toggle-menu__nav {
  background: #F3EEE8;
  position: fixed;
  top: 0;
  z-index: 9999;
  height: 100%;
  width: 260px;
  padding: 40px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  overflow-y: scroll;
  scrollbar-width: none;
}
.toggle-menu.-left .toggle-menu__nav {
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.toggle-menu.-left .toggle-menu__checkbox:checked ~ .toggle-menu__nav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.toggle-menu.-down .toggle-menu__nav {
  width: 100%;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}
.toggle-menu.-down .toggle-menu__checkbox:checked ~ .toggle-menu__nav {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.toggle-menu.-cover .toggle-menu__nav {
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  pointer-events: none;
}
.toggle-menu.-cover .toggle-menu__checkbox:checked ~ .toggle-menu__nav {
  opacity: 1;
  pointer-events: all;
}
.toggle-menu__nav::-webkit-scrollbar {
  display: none;
}
.toggle-menu__nav-item {
  margin-bottom: 20px;
}
.toggle-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8888;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.toggle-menu__checkbox:checked ~ .toggle-menu__overlay {
  opacity: 1;
  pointer-events: all;
}
.toggle-menu.-cover .toggle-menu__checkbox:checked ~ .toggle-menu__overlay {
  opacity: 0;
  pointer-events: none;
}
.toggle-menu .contentslist {
  display: block;
  padding: 0;
  font-size: 1.4rem;
}
.toggle-menu .contentslist > li {
  margin: 0 0 20px;
}
.toggle-menu .banner {
  text-align: center;
}
.toggle-menu .banner li {
  margin-bottom: 10px;
}

/***************************************
    スマホナビの項目表示アニメーション
****************************************/
.sp-nav-list__item {
  overflow: hidden;
}
.sp-nav-list__link {
  display: block;
  border-bottom: none;
  text-align: center;
  line-height: 60px;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.2s ease;
  transition: transform 0.6s ease, opacity 0.2s ease, -webkit-transform 0.6s ease;
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
}
.-open .sp-nav-list__link {
  opacity: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.circle {
  position: relative;
  width: 100%;
  height: 100%;
}
.circle::after {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  margin-left: -50px;
  margin-top: -50px;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
}
.-open .circle::after {
  -webkit-animation: button-circle 0.7s;
          animation: button-circle 0.7s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  border: 5px solid white;
}

@-webkit-keyframes button-circle {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
    border: 5px solid rgba(255, 255, 255, 0.5);
  }
  100% {
    opacity: 0;
    border: 5px solid white;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

@keyframes button-circle {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
    border: 5px solid rgba(255, 255, 255, 0.5);
  }
  100% {
    opacity: 0;
    border: 5px solid white;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
/*************scss追記***********/
.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 80px;
}

.contact .info {
  max-width: 260px;
  width: 100%;
  background-color: #e1d8cb;
  border-radius: 10px;
  padding: 23px 10px 20px 14px;
  margin-right: 20px;
}

.contact .image {
  text-align: center;
  margin-bottom: 10px;
}

.contact .tel {
  font-size: 2.6rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 3px;
  color: #000000;
  text-align: center;
}

.contact .time {
  font-size: 1.2rem;
  line-height: 1.4;
  color: #000000;
}

.contact .btn {
  max-width: 260px;
  width: 100%;
}

.contact .btn a {
  display: block;
  background-color: #FFF;
  border: 2px solid #0d752b;
  border-radius: 8px;
  text-align: center;
  padding: 90px 15px 33px 15px;
  color: #04a746;
  -webkit-box-shadow: 0 8px 0 #0d752b;
          box-shadow: 0 8px 0 #0d752b;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #04a746;
}
@media screen and (max-width: 680px) {
  .contact .btn a {
    padding: 73px 15px 15px 15px;
  }
}

.contact .btn a:hover {
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}

.contact .btn a span {
  background: url(../img/contact_line.svg) top center no-repeat;
  padding-top: 68px;
}

@media screen and (max-width: 768px) {
  .contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .btn {
    margin: 30px auto 0;
  }
  .contact .info {
    margin: 0 auto;
  }
}
br.sp_only {
  display: none;
}
@media screen and (max-width: 960px) {
  br.sp_only {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */