@charset "utf-8";
/* CSS Document */
*, ::after, ::before {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: none;
}
:root {
  --font_base: 'Zen Maru Gothic', sans-serif;
  --font_point: 'Quicksand', sans-serif;
  --fsize_base_sp:1.4rem;
  --fsize_base_pc:1.6rem;
  --line_base:1.875;
  --fw_base:500;
  
  --pad_xxxs:5px;
  --pad_xxs:10px;
  --pad_ss:15px;
  --pad_s:20px;
  --pad_m:30px;
  --pad_l:40px;
  --pad_ll:50px;
  --pad_xxl:60px;
  --pad_xxxl:80px;
  --pad_5l:90px;
  --pad_6l:110px;
  
  --mw_s:1040px;
  --mw_m:1200px;
  --mw_l:1500px;  
  
  
  --color_base: #333333;
  --color_bg_base: #ffffff;
  
  --color_light: #f8f8f8;  
  --color_middle: #f6f6f6;
  
  --color_point: #27a47f;
  --color_point_02: #21b98a;
  --color_point_03: #fff600;
  
  --color_bg: #ddf2ec;
  --color_bg_02: #c6eee3;
  --color_bg_03: #f4fafe;
  --color_bg_04: #fcf5f0;
  --color_bg_05: #fdfded;
  --color_bg_06: #e5f8f2;
  
  --color_border: #eeeeee;
  
  --hover_time: .3s;
  --gnav_anima: .3s ease-in-out;
  
  --shadow: 3px 0 6px rgba(0,0,0,.5); 
  
  --header_sp:80px;
  --header_pc:100px;
  --header_pc_scr:60px;
}

/*----------------------------------------------------
  #head
--------------------------------------------------- */
.l-header {
  position: fixed;
  z-index: 9675309;
  top: 0;
  right: 0;
  left: 0;
  background-color: #fff;
}
.l-header.-top {
  opacity: 0; 
  -webkit-transform: translateY(-100%); 
          transform: translateY(-100%);
}


.p-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  padding: 0 60px 0 76px;
  max-width: 1400px;
  height: 140px; 

  -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 (min-width: 768px) {
  .p-header.is-changed {
    height: 80px; 
    -webkit-transition: height 0.3s cubic-bezier(0.25, 0.1, 0.25, 1); 
    transition: height 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .p-header.is-changed .p-header__logo {
    width: 158px;
    height: 40px;
    -webkit-transition: width 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), height 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: width 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), height 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .p-header.is-changed .p-header__icon {
    width: 158px;
    height: 40px;
    -webkit-transition: width 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), height 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: width 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), height 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    padding: 0 7.2vw 0 8vw;
    height: 20.26667vw;
  }
}

.p-header__logo {
  width: 197px;
  height: 49px;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 31.33333vw;
    height: 7.6vw;
  }
}
.p-header__logo a {
  display: block;
}

.p-header__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: none;
  outline: none;
  width: 70px;
  height: 70px;
  background-color: #fff; 
  font-size: 0;

  -webkit-box-pack: center;

      -ms-flex-pack: center;

          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__button {
    width: 6.66667vw;
    height: 6.66667vw;
  }
}
.p-header__button span {
  position: relative;
  width: 35px;
  height: 1px;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (max-width: 767px) {
  .p-header__button span {
    width: 6.13333vw;
  }
}
.p-header__button span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.p-header__button span:nth-child(1) {
  -webkit-transform: translate3d(0, -5px, 0);
          transform: translate3d(0, -5px, 0);
}
@media screen and (max-width: 767px) {
  .p-header__button span:nth-child(1) {
    -webkit-transform: translate3d(0, -1.06667vw, 0);
            transform: translate3d(0, -1.06667vw, 0);
  }
}
.p-header__button span:nth-child(2) {
  -webkit-transform: translate3d(0, 5px, 0);
          transform: translate3d(0, 5px, 0);
}
@media screen and (max-width: 767px) {
  .p-header__button span:nth-child(2) {
    -webkit-transform: translate3d(0, 1.06667vw, 0);
            transform: translate3d(0, 1.06667vw, 0);
  }
}
.no-touchevents .p-header__button:hover span:before {
  -webkit-animation: moveLineLeftRight 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
          animation: moveLineLeftRight 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.no-touchevents .p-header__button:hover span:nth-child(2):before {
  -webkit-animation-delay: 0.14s;
          animation-delay: 0.14s;
}
.p-header__button[aria-expanded="true"] span:nth-child(1) {
  -webkit-transform: translateZ(0) rotate(45deg);
          transform: translateZ(0) rotate(45deg);
}
.p-header__button[aria-expanded="true"] span:nth-child(2) {
  -webkit-transform: translateZ(0) rotate(-45deg);
          transform: translateZ(0) rotate(-45deg);
}
.p-header__button[aria-disabled="true"] {
  pointer-events: none;
}
.p-header__button[aria-disabled="false"] {
  pointer-events: auto;
}

.p-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%; 

  -webkit-box-align: center; 

      -ms-flex-align: center; 

          align-items: center;
}

.p-nav__item {
  height: 50px;
}
.p-nav__item + .p-nav__item {
  margin-left: 27px;
}

.p-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 100%; 

  -webkit-box-align: center; 

      -ms-flex-align: center; 

          align-items: center;
}
.p-nav__link[aria-current]:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 3px;
  background-color: #81D8D0;
}
.p-nav__link[aria-current="false"] {
  cursor: pointer; 
  -webkit-transition: opacity 0.5s; 
  transition: opacity 0.5s;
}
.p-nav__link[aria-current="false"]:after {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); 
  -webkit-transform: scaleX(0); 
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
}
.no-touchevents .p-nav__link[aria-current="false"]:hover {
  opacity: 1; 
  -webkit-transition: opacity 0.25s; 
  transition: opacity 0.25s;
}
.no-touchevents .p-nav__link[aria-current="false"]:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.p-drawer {
  position: fixed;
  z-index: 9999999;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  /* 開いているとき */
  /* 閉じているとき */
}
.p-drawer[aria-expanded="true"] {
  visibility: visible;
  opacity: 1;
  -webkit-transition: visibility 0s, opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: visibility 0s, opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.p-drawer[aria-expanded="false"] {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.6s, opacity 0.6s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: visibility 0.6s, opacity 0.6s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

.p-drawer__backdrop {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.p-drawer__nav {
  overflow: auto; 
  padding: 60px 130px;
  /*width: 100%;*/
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav {
    padding: 16vw 10.66667vw;
  }
}

.p-drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .p-drawer__item {
    width: 33%;
  }
  .p-drawer__item:nth-child(n+4) {
    margin-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer__item {
    width: 50%;
  }
  .p-drawer__item:nth-child(n+3) {
    margin-top: 10.66667vw;
  }
}

.p-drawer__link {
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-drawer__link {
    cursor: pointer; 
    -webkit-transition: opacity 0.5s; 
    transition: opacity 0.5s;
    font-size: 18px;
  }
  .no-touchevents .p-drawer__link:hover {
    opacity: 0.3; 
    -webkit-transition: opacity 0.25s; 
    transition: opacity 0.25s;
  }
}
@media screen and (max-width: 767px) {
  .p-drawer__link {
    font-size: 3.73333vw;
  }
}

.p-drawer__contact {
  margin: 86px auto 0;
  width: 400px;
  height: 135px;
}
@media screen and (max-width: 767px) {
  .p-drawer__contact {
    margin-top: 22.66667vw;
    width: 100%;
    height: 26.93333vw;
  }
}
.p-sidebtn {
  height: 100%;
}

.p-sidebtn__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; 
  height: 67px;
}
@media screen and (max-width: 767px) {
  .p-sidebtn__inner {
    height: 13.33333vw;
  }
}
.p-sidebtn__inner + .p-sidebtn__inner {
  border-top: 1px solid #c8f7f3;
}

.p-sidebtn__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-right: 1px solid #c8f7f3; 
  width: 53px;
  background-color: #81D8D0;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-sidebtn__label {
    width: 10.66667vw;
  }
}

.p-sidebtn__link {
  position: relative;
  background-color: #81D8D0;
  color: #fff;
  font-style: normal; 

  -webkit-box-flex: 1; 

      -ms-flex: 1 0 auto; 

          flex: 1 0 auto;
}
.p-sidebtn__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%; 
  color: #fff;	

  -webkit-box-align: center; 

      -ms-flex-align: center; 

          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-sidebtn__link.-mail {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-sidebtn__link.-mail {
    font-size: 3.2vw;
  }
}
.p-sidebtn__link.-phone {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-sidebtn__link.-phone {
    font-size: 3.73333vw;
  }
}

.p-sidebtn__icon.-right {
  width: 11px;
  height: 19px;

  fill: #fff;
}
@media screen and (max-width: 767px) {
  .p-sidebtn__icon.-right {
    width: 2.13333vw;
    height: 3.6vw;
  }
}

.u-upper {
  text-transform: uppercase;
}



.c-icon.-calculator,
.c-icon.-mail,
.c-icon.-phone {
  width: 28px;
  height: 28px;

  fill: #fff;
}
@media screen and (max-width: 767px) {
  .c-icon.-calculator,
  .c-icon.-mail,
  .c-icon.-phone {
    width: 5.06667vw;
    height: 5.06667vw;
  }
}
.c-icon.-calculator.-reverse,
.c-icon.-mail.-reverse,
.c-icon.-phone.-reverse {
  fill: #000;
}

.p-sidebtn__link.-mail {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-sidebtn__link.-mail {
    font-size: 3.2vw;
  }
}
.p-sidebtn__link.-phone {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-sidebtn__link.-phone {
    font-size: 3.73333vw;
  }
}








@media (max-width: 767.98px) {
  .u-hidden-sm {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 768px) and (max-width: 1120.98px) {
  .u-hidden-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1121px) {
  .u-hidden-lg {
    display: none !important;
    visibility: hidden;
  }
}










.l-sidebtn {
  position: fixed;
  z-index: 8;
  right: -236px;
  bottom: 60px;
  width: 289px;
  height: 135px;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1), -webkit-transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.l-sidebtn.-top {
  right: -310px;
}
.l-sidebtn a {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .l-sidebtn {
    right: -68vw;
    bottom: 13.33333vw;
    width: 78.66667vw;
    height: 26.93333vw;
  }
  .l-sidebtn.-top {
    right: -78.66667vw;
  }
}
.l-sidebtn[aria-hidden="false"] {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1); 
  -webkit-transform: translate(-236px, 0); 
          transform: translate(-236px, 0);
}
@media screen and (max-width: 767px) {
  .l-sidebtn[aria-hidden="false"] {
    -webkit-transform: translate(-68vw, 0);
            transform: translate(-68vw, 0);
  }
}



/*----------------------------------------------------
  #foot
--------------------------------------------------- */
.l-row {
  margin-left: -40px;
  margin-right: -40px;
}
.l-row:after {
  content: '';
  display: block;
  clear: both;
}
.l-container {
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.l-col {
  padding-left: 40px;
  padding-right: 40px;
  float: left;
  width: 100%;
}
.l-col.l-col--20 {
  width: 20%;
}
.l-col.l-col--25 {
  width: 23%;
}
.l-col.l-col--33 {
  width: 33.333333%;
}
.l-col.l-col--40 {
  width: 40%;
}
.l-col.l-col--50 {
  width: 43%;
}
.l-col.l-col--60 {
  width: 60%;
}
.l-col.l-col--66 {
  width: 66.666666%;
}


.l-container.l-container--footer {
  padding-left: 50px;
  padding-right: 50px;
}
.l-container.l-container--footer .l-row {
  margin-left: -25px;
  margin-right: -25px;
}
.l-container.l-container--footer .l-col {
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (min-width: 768px) {
  .l-container.l-container--footer {
    width: 1280px;
    padding-left: 50px;
    padding-right: 50px;
  }
  .l-container.l-container--footer .l-row {
    margin-left: -10px;
    margin-right: -10px;
  }
  .l-container.l-container--footer .l-col {
    padding-left: 10px;
    padding-right: 10px;
  }
	
}

@media screen and (max-width: 767px) {
  .l-container.l-container--footer {
    padding-left: 6.67vw;
    padding-right: 6.67vw;
  }
  .l-container.l-container--footer .l-row {
    margin-left: -3.33vw;
    margin-right: -3.33vw;
  }
  .l-container.l-container--footer .l-col {
    padding-left: 3.33vw;
    padding-right: 3.33vw;
  }
	
	
}	
.h-dspBlock {
    display: block;
}
.h-sp-only {
    display: none !important;
}

@media (max-width: 767px) {
.h-sp-only {
    display: block !important;
}
}
@media screen and (max-width: 767px) {
  .h-pc-only {
    display: none !important;
  }
}
	

/*helpers*/
.h-clear:after {
  content: '';
  display: block;
  clear: both;
}
	
	

@media screen and (max-width: 767px) {
  .h-dspBlock_sp {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .h-dspBlock_pc {
    display: block;
  }
}

.h-dspFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .h-dspFlex_sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .h-dspFlex_pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.h-dspInline {
  display: inline;
}

@media screen and (max-width: 767px) {
  .h-dspInline_sp {
    display: inline;
  }
}

@media screen and (min-width: 768px) {
  .h-dspInline_pc {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  .h-fltRight_sp {
    float: right;
  }
}

@media screen and (min-width: 768px) {
  .h-fltRight_pc {
    float: right;
  }
}

.h-flxWrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .h-flxWrap_sp {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 768px) {
  .h-flxWrap_pc {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.h-dspInlineBlock {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .h-dspInlineBlock_sp {
    display: inline-block;
  }
}

@media screen and (min-width: 768px) {
  .h-dspInlineBlock_pc {
    display: inline-block;
  }
}
	
	
@media screen and (max-width: 767px) {
  .h-fltLeft_sp {
    float: left;
  }
}

@media screen and (min-width: 768px) {
  .h-fltLeft_pc {
    float: left;
  }
}
	
	
	
	
	
	
  .c-utiList__head {
    font-size: 13px;
  }
  .c-utiList__head:before {
    width: 6px;
    height: 8px;
    margin-right: 7px;
    vertical-align: middle;
    display: inline-block;
    background-image: url('../images/chevron-right.svg');
    background-size: 100% 100%;
  }
  .c-utiList__head {
    vertical-align: middle;
  }
  .c-utiList__head >a {
    vertical-align: middle;
  }
	
	
	
	
.c-footer {
      border-top: 1px solid #dcdcdc;
}
.c-footer__upperInner {
  padding-bottom: 6px;
  border-bottom: 2px solid #dcdcdc;
}
.c-footer__midInner {
  padding-top: 41px;
  padding-bottom: 19px;
  border-bottom: 2px solid #dcdcdc;
}
.c-footer__lowerInner {
  padding-top: 40px;
  /*padding-bottom: 40px;*/
}
.c-footer__linkBlock {
  margin-bottom: 30px;
}
.c-footer__linkBlock figcaption {
  font-size: 22px;
  margin-top: 15px;
}
.c-footer__utilLink {
  font-size: 24px;
  padding-left: 10px;
  margin-bottom: 26px;
}
.c-footer__utilLink:before {
  width: 12px;
  height: 16px;
  margin-right: 14px;
  vertical-align: middle;
  display: inline-block;
  background-image: url('img/chevron-right.svg');
  background-size: 100% 100%;
}
.c-footer__utilLink span {
  vertical-align: middle;
}
.c-footer__socials {
  margin-bottom: 45px;
  line-height: 0;
}
.c-footer__social {
  width: 60px;
  height: 60px;
  background-image: url('../images/socials-icons.png');
  background-size: 400% 100%;
  background-position: 0 0;
}
.c-footer__social.c-footer__social--ins {
  background-position: 33.33333% 0;
}
.c-footer__social.c-footer__social--ytb {
  background-position: 66.6667% 0;
}
.c-footer__social.c-footer__social--line {
  background-position: 100% 0;
}
.c-footer__leftLink {
  font-size: 22px;
}
.c-footer__leftLink a {
  line-height: 2.2727;
}
.c-copyright {
  margin-top: 70px;
}
@media screen and (max-width: 749px) {
  .c-footer {
    margin-top: 13.3333vw;

  }
  .c-footer__upper {
    padding-top: 6.6667vw;
  }
  .c-footer__upperInner {
    padding-bottom: 0.8vw;
  }
  .c-footer__midInner {
    padding-top: 5.4667vw;
    padding-bottom: 2.5333vw;
  }
  .c-footer__lowerInner {
    padding-top: 5.3333vw;
    padding-bottom: 5.3333vw;
  }
  .c-footer__linkBlock {
    margin-bottom: 4vw;
  }
  .c-footer__linkBlock figcaption {
    font-size: 2.9333vw;
    margin-top: 2vw;
  }
  .c-footer__utilLink {
    font-size: 3.2vw;
    padding-left: 1.3333vw;
    margin-bottom: 3.4667vw;
  }
  .c-footer__utilLink:before {
    width: 1.6vw;
    height: 2.1333vw;
    margin-right: 1.8667vw;
  }
  .c-footer__socials {
    margin-bottom: 6vw;
  }
  .c-footer__social {
    width: 8vw;
    height: 8vw;
  }
  .c-footer__leftLink {
    font-size: 2.9333vw;
  }
  .c-copyright {
    margin-top: 9.3333vw;
  }
}
.h-ctnBefore:before, .h-ctnAfter:after {
    content: '';
}
@media screen and (min-width: 768px) {
   .c-footer__upper {
    padding-top: 40px;
  }
  .c-footer__midInner {
    padding-bottom: 34px;
  }
  .c-footer__lowerInner {
    padding-top: 22px;
  }
  .c-footer__linkBlock figcaption {
    font-size: 13px;
    margin-top: 10px;
  }
  .c-utilList + .c-utilList {
    margin-top: 40px;
  }
  .c-utiList__head {
    font-size: 13px;
  }
  .c-utiList__head:before {
    width: 6px;
    height: 8px;
    margin-right: 7px;
    vertical-align: middle;
    display: inline-block;
    background-image: url('../images/chevron-right.svg');
    background-size: 100% 100%;
  }
  .c-utiList__head {
    vertical-align: middle;
  }
  .c-utiList__head >a {
    vertical-align: middle;
  }
  .c-utiList__list {
    font-size: 12px;
    padding-left: 13px;
    margin-top: 12px;
  }
  .c-utiList__list .separate{
    margin-top: 12px;
  }
  .c-utiList__list a {
    line-height: 1.8333;
  }
  .c-footer__social {
    width: 40px;
    height: 40px;
  }
  .c-footer__leftLink a {
    font-size: 12px;
    margin-left: 10px;
    line-height: 1.75;
  }
  .c-copyright {
    font-size: 11px;
    margin-top: 13px;
  }
}
/*end c-footer*/

/*c-breadcrumb*/
.c-breadCrumb {
  font-size: 22px;
  padding-top: 22px;
  padding-bottom: 22px;
  padding-left: 40px;
  padding-right: 40px;

  letter-spacing: 0.05em;
  line-height: 1.75;
}
.c-breadCrumb a {
  color: #999999;
}
.c-breadCrumb >li {
  vertical-align: middle;
}
.c-breadCrumb >li:not(:last-child):after {
  margin-left: 4px;
  margin-right: 4px;
  content: '>';
  display: inline-block;
}
.c-breadCrumb__active {
  color: #000000;
}

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

  .c-breadCrumb {
    font-size: 2.93vw;
    padding-top: 2.93vw;
    padding-bottom: 2.93vw;
    padding-left: 5.33vw;
    padding-right: 5.33vw;
  }
  .c-breadCrumb >li:not(:last-child):after {
    margin-left: 0.5333vw;
  }
}

@media screen and (min-width: 768px) {
  .c-breadCrumb {
    font-size: 12px;
    width: 1260px;
    max-width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
    line-height: 1.75;
  }
}
/******************************************************************************
 * f-sns
*******************************************************************************/
    .f-sns h2 {
      position: relative;
      margin: 40px 0 10px;
      font-size: 1.8rem;
      line-height: 1.4em;
      text-align: center;
      z-index: 1; }
      @media (max-width: 767px) {
        .f-sns h2 {
          margin: 20px 0 5px;
          font-size: 1.2rem; } }

/*----------------------------------------------------
  web-std
--------------------------------------------------- */
.web-std{
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 50px 0 50px;

 }
.web-std-top{
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: 160px 0 0 0;	
 }

.web-std p{
  font-size: 16px;
  line-height: 32px;
  font-weight: 500;
}

.web-std .h_title {
    padding: 70px 0 65px;
    background: #337ab7;
}
.web-std .h_title .h_inner {
    width: 1080px;
    margin: 0 auto;
    font-size: 34px;
    color: #FFF;
    font-weight: bold;
    text-align: center;
}
.web-std .h_title span {
    font-size: 42px;
}
.web-std .inner{
  width: 900px;
  margin: 0 auto;
  position: relative;
}
.inner_600{
  width: 600px;
  margin: 0 auto;
  position: relative;
}

.inner_900{
  width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 0 15px 0;	
}
.inner_500{
  width: 500px;
  margin: 0 auto;
  position: relative;
  padding: 0 15px 0;	
}

.inner_1200{
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 15px 0;	
}
.inner_1200_c{
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 15px 0;	
}
.inner_96{
  width: 96%;
  margin: 0 auto;
  position: relative;
	
}


@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .web-std .inner{
    width: 760px;
    margin: 0 auto;
    position: relative;
  }
  .inner_900{
    width: 94%;
    margin: 0 auto;
    position: relative;
  }
  .inner_1200{
    /*width: 760px;*/
    margin: 0 auto;
    position: relative;
  }
  .inner_1200_c{
    width: 760px;
    margin: 0 auto;
    position: relative;
  }
	
	
.web-std .h_title .h_inner {
    width: 720px;
}	
}
@media only screen and (max-width: 767px) {
  .web-std{
    padding: 0px 0 5px;
  }
  .web-std-top{
	margin: 60px 0 0 0;  
  }
	
.web-std p{
    font-size: 14px;
    line-height: 24px;
}	
  .web-std .inner{
    width: 96%;
  }
   .inner_600{
	max-width: 600px;   
    width: 96%;
  }
	
  .inner_900{
    width: 96%;
  }
  .inner_1200{
   /* width: 96%;*/
  }
  .inner_1200_c{
    width: 100%;
	padding: 0 0px 0;  
  }
	
.web-std .h_title {
    padding: 20px 0 10px;
}	
.web-std .h_title .h_inner {
    width: auto;
    padding: 0 20px;
    font-size: 28px;
	line-height: 1.8;
}
.web-std .h_title span {
    font-size: 38px;
}
.web-brd{
  display: none;
 }

	
}

@media only screen and (max-width: 520px) {
	
  .inner_500{
    width: 96%;
  }
	
}
.w190{
	width :190px;
	margin: 0 auto;
}
/***** faq *****/

.modFaq__list__item {
  padding: 2.7rem 3rem 2.7rem 8.4rem;
  position: relative;
  background-color: #fff;
  border-radius: 0.8rem;
}
@media screen and (max-width: 768px) {
  .modFaq__list__item {
    padding: 2.8rem 2rem 2.8rem 6.4rem;
  }
}
.modFaq__list__item:not(:last-child) {
  margin: 0 0 2rem 0;
}
.modFaq__list__item .quest {
  position: relative;
  padding-right: 4.8rem;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .modFaq__list__item .quest {
    padding-right: 1.9rem;
    font-size: 1rem;
  }
}
.modFaq__list__item .quest__btn {
  position: absolute;
  top: 12%;
  right: 0;
  width: 1.6rem;
  height: 1.6rem;
  transform-origin: center center;
  transition-duration: 0.2s;
}
@media screen and (max-width: 768px) {
  .modFaq__list__item .quest__btn {
    top: 8%;
    width: 1.9rem;
    height: 1.9rem;
  }
}
.modFaq__list__item .quest__btn:before, .modFaq__list__item .quest__btn:after {
  content: "";
  background-color: #00CBB5;
  width: 100%;
  height: 0.4rem;
  position: absolute;
  top: .6rem;
  left: 0;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  .modFaq__list__item .quest__btn:before, .modFaq__list__item .quest__btn:after {
    top: 0.8rem;
  }
}
.modFaq__list__item .quest__btn:before {
  width: 0.4rem;
  height: 100%;
  top: 0;
  left: .6rem;
}
@media screen and (max-width: 768px) {
  .modFaq__list__item .quest__btn:before {
    left: 0.8rem;
  }
}
.modFaq__list__item .quest.is-accordionOpen .quest__btn {
  transform: rotate(-180deg);
}
.modFaq__list__item .quest.is-accordionOpen .quest__btn:before {
  content: none;
}
.modFaq__list__item .quest::before {
  content: "";
  border-radius: 100%;
  background-image: url("../images/ic_faqQuest.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  left: -5.5rem;
  width: 2.8rem;
  height: 2.8rem;
}
@media screen and (max-width: 768px) {
  .modFaq__list__item .quest::before {
    top: 0.2rem;
    left: -4.5rem;
    width: 3.4rem;
    height: 3.4rem;
    background-size: 3.8rem;
  }
}
.modFaq__list__item .desc {
  position: relative;
  margin: 2.4rem 0 0;
  display: none;
}
@media screen and (max-width: 768px) {
  .modFaq__list__item .desc {
    margin: 3.3rem 0 0;
  }
}
.modFaq__list__item .desc::before {
  content: "";
  border-radius: 100%;
  background-image: url("../images/ic_faqAns.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  position: absolute;
  top: -0.4rem;
  left: -5.5rem;
  width: 2.8rem;
  height: 2.8rem;
}
@media screen and (max-width: 768px) {
  .modFaq__list__item .desc::before {
    top: 0.2rem;
    left: -4.5rem;
    width: 3.2rem;
    height: 3.2rem;
    border: 0.2rem solid var(--green);
    background-size: 3.8rem;
  }
}
.modFaq__list__item .desc a {
  color: var(--green);
  text-decoration: underline;
}
.modFaq__list__item .desc__text {
  line-height: 1.6;
}
/******************************************************************************
 * MARGIN
*******************************************************************************/
.ptm-32{padding-top: 10rem;}
@media screen and (max-width: 768px) {
.ptm-32{padding-top: 7rem;}
	
}

.md-cs-text-6xl{
font-size: 3.75rem!important;
        line-height: 1.2!important;
}
.md-cs-text-4xl{
font-size: 2.75rem!important;
        line-height: 1.2!important;
}

@media screen and (max-width: 768px) {
.md-cs-text-6xl{
font-size: 2.75rem!important;
        line-height: 1.2!important;
}
.md-cs-text-4xl{
font-size: 1.75rem!important;
        line-height: 1.2!important;
}
	
}

.mt0 { margin-top: 0px !important; }
.mt5 { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt25 { margin-top: 25px !important; }
.mt30 { margin-top: 30px !important; }
.mt35 { margin-top: 35px !important; }
.mt40 { margin-top: 40px !important; }
.mt45 { margin-top: 45px !important; }
.mt50 { margin-top: 50px !important; }
.mt55 { margin-top: 55px !important; }
.mt60 { margin-top: 60px !important; }
.mt65 { margin-top: 65px !important; }
.mt70 { margin-top: 70px !important; }
.mt75 { margin-top: 75px !important; }
.mt80 { margin-top: 80px !important; }
.mt85 { margin-top: 85px !important; }
.mt90 { margin-top: 90px !important; }
.mt95 { margin-top: 95px !important; }
.mt100 { margin-top: 100px !important; }
.mb0 { margin-bottom: 0px !important; }
.mb5 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb25 { margin-bottom: 25px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb35 { margin-bottom: 35px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb45 { margin-bottom: 45px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb55 { margin-bottom: 55px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb65 { margin-bottom: 65px !important; }
.mb70 { margin-bottom: 70px !important; }
.mb75 { margin-bottom: 75px !important; }
.mb80 { margin-bottom: 80px !important; }
.mb85 { margin-bottom: 85px !important; }
.mb90 { margin-bottom: 90px !important; }
.mb95 { margin-bottom: 95px !important; }
.mb100 { margin-bottom: 100px !important; }
.ml0 { margin-left: 0px !important; }
.ml5 { margin-left: 5px !important; }
.ml10 { margin-left: 10px !important; }
.ml15 { margin-left: 15px !important; }
.ml20 { margin-left: 20px !important; }
.ml25 { margin-left: 25px !important; }
.ml30 { margin-left: 30px !important; }
.ml35 { margin-left: 35px !important; }
.ml40 { margin-left: 40px !important; }
.ml45 { margin-left: 45px !important; }
.ml50 { margin-left: 50px !important; }
.ml55 { margin-left: 55px !important; }
.ml60 { margin-left: 60px !important; }
.ml65 { margin-left: 65px !important; }
.ml70 { margin-left: 70px !important; }
.ml75 { margin-left: 75px !important; }
.ml80 { margin-left: 80px !important; }
.ml85 { margin-left: 85px !important; }
.ml90 { margin-left: 90px !important; }
.ml95 { margin-left: 95px !important; }
.ml100 { margin-left: 100px !important; }
.mr0 { margin-right: 0px !important; }
.mr5 { margin-right: 5px !important; }
.mr10 { margin-right: 10px !important; }
.mr15 { margin-right: 15px !important; }
.mr20 { margin-right: 20px !important; }
.mr25 { margin-right: 25px !important; }
.mr30 { margin-right: 30px !important; }
.mr35 { margin-right: 35px !important; }
.mr40 { margin-right: 40px !important; }
.mr45 { margin-right: 45px !important; }
.mr50 { margin-right: 50px !important; }
.mr55 { margin-right: 55px !important; }
.mr60 { margin-right: 60px !important; }
.mr65 { margin-right: 65px !important; }
.mr70 { margin-right: 70px !important; }
.mr75 { margin-right: 75px !important; }
.mr80 { margin-right: 80px !important; }
.mr85 { margin-right: 85px !important; }
.mr90 { margin-right: 90px !important; }
.mr95 { margin-right: 95px !important; }
.mr100 { margin-right: 100px !important; }
.b-r10 {border-radius: 10px;}
.b-r20 {border-radius: 20px;}
.b-r30 {border-radius: 30px;}

/******************************************************************************
 * FONT
*******************************************************************************/
.bold { font-weight: bold!important; }
.normal { font-weight: normal; }
.underline { text-decoration: underline; }
.font_72 { font-size: 72px;}
.font_64 { font-size: 64px;}
.font_56 { font-size: 56px;}
.font_48 { font-size: 48px;}
.font_40 { font-size: 40px;}
.font_32 { font-size: 32px;}
.font_24 { font-size: 24px;}
.font_20 { font-size: 20px;}
.font_18 { font-size: 18px;}
.font_16 { font-size: 16px;}
.font_14 { font-size: 14px!important;}
.font_13 { font-size: 13px;}
.font_12 { font-size: 12px;}
.font_11 { font-size: 11px;}
.font_10 { font-size: 10px;}

.info-font_24 { font-size: 28px; color :#fff;margin-bottom: 15px;}
.info-font_12 { font-size: 12px; color :#fff}

/******************************************************************************
 * COLOR
*******************************************************************************/
.red { color: #dd0000; }
.redpink { color: #ff6699; }
.pink { color: #ff3399; }
.pink2{ color: #d65678;}
.blue { color: #0099ff; }
.blue2 { color: #4790ce; }
.m-blue { color: #0084cf; }

.green { color: #148f2d; }
.green2 { color: #47a38a; }
.egreen { color: #2abfbf; }
.white { color: #ffffff; }
.orange { color: #ff6633; }
.gold { color: #D0A31A; }
.gray { color: #CCCCCC; }
.gray2 { color: #888888; }
.black { color: #000000; }
.blue-g {
    background: linear-gradient(97.61deg, #0a8be9 13.66%, #0ae9ad 101.36%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.bline {
    font-weight: 700;
    background: linear-gradient(transparent 70%, #ffa5b4 70%);
}
/******************************************************************************
 * bg_color
*******************************************************************************/
.bg_red { background-color: #fff2f2;}
.bg_green { background-color: #229c73; }

.bg_green2 { background-color: #dffaf5; }
.bg_gray { background-color: #fcfcfc; }
.bg_gray2 { background-color: #e9ebf2; }



/******************************************************************************
 * TEXT
*******************************************************************************/
.tx-left { text-align: left!important; }
.tx-center { text-align: center!important; }
.tx-right { text-align: right!important; }
.tx-justify{text-align: justify; text-justify: inter-ideograph;}
.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }
.v-top { vertical-align: top; }
.v-middle { vertical-align: middle; }
.underline { text-decoration:underline;}
.indent-1 {
	padding-left:1em;
	text-indent:-1em;
}
.indent-5 {
	padding-left:.5em;
	text-indent:-.5em;
}
.pc-tx-right { text-align: right!important; }
.pc-tx-center { text-align: center!important; }
@media screen and (max-width: 767px),print {
.pc-tx-center { text-align: left!important; }
.pc-tx-right { text-align: center!important; }	
	}

.border-line {
    border-top: 1px solid #e5e5e5;
    padding-top: 40px;
}
.b_bottom {
	border-bottom: 1px solid #eee;
}

.pc-tx-right { text-align: right!important; }
.pc-tx-center { text-align: center!important; }
.pc-tx-ml{ margin-left:20px;}

@media screen and (max-width: 767px),print {
.pc-tx-center { text-align: left!important; }
.pc-tx-right { text-align: center!important; }
.pc-tx-ml{ margin-left:0px;}	
	}

/******************************************************************************
 * center
*******************************************************************************/
.cts-center{
	margin: 0 auto;
}

/******************************************************************************
 * responsive
*******************************************************************************/
.img-responsive {
  display: block;
  max-width: 100%;
  margin-left:auto;
  margin-right:auto;
  height: auto;
}
.img-no-responsive {
  display: block;
  max-width: auto;
  height: auto;
}
.br-pc{
display:block
}
.br-sp{
display:none
}
@media only screen and (max-width:1599px){
.br-1200{
display:block
}

}
@media only screen and (max-width:1199px){
.br-1200{
display:none
}
.br-900{
display:block
}

}
@media only screen and (max-width:899px){
.br-900{
display:none
}
.br-pc{
display:none
}
.br-sp{
display:block
}

}


.pc_only{
  display: block;
  margin: 0 auto;
}
.sp_only{
  display: none!important;
}
@media only screen and (max-width: 767px) {
  .pc_only{
    display: none!important;
  }
  .sp_only{
    display: block!important;
  }	
}

.no-spam {
    display: none;
}









.img--h a:hover{
	opacity: 0.8;
}
/* Float Clear
=============================================================================*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	line-height: 0;
	font-size:0;
}
.clearfix {	display:inline-block;}
/*\*/
* html .clearfix { height: 1%;}
.clearfix {	display: block;}
/**/
.clear { clear: both; }

/***** title *****/
.ttl-wrap {
    margin-bottom: 60px;
    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;
}
.ttl-sup span {
    display: inline-block;
    font-size: 18px;
    /*font-weight: bold;*/
    padding: 2px 15px 1px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 15px;
}
html .en {
    font-family: "Roboto Condensed",sans-serif;
    line-height: normal;
}

.ttl-sup {
    margin-bottom: 30px;
}
.ttl-sup span.bg-yellow {
    background-color: #27a47f;
	color : #fff;
}
.ttl-main {
    font-size: 32px;
    font-weight: bold;
    line-height: 165%;
    letter-spacing: .06em;
    text-align: center;
}

@media only screen and (max-width: 768px) {
.ttl-wrap {
    margin-bottom: 45px;
}
.ttl-sup {
    margin-bottom: 25px;
}
.ttl-sup span {
    font-size: 16px;
}
.ttl-main {
    font-size: clamp(24px,5vw,6.315vw);
    line-height: normal;
}	
}
.slick-slide img{
max-width: 100%;
border-radius: 15px;	
}
.slider .item{
	margin-left: 10px;
}
/*相談窓口はこちらから*/
#ct-float {
  transition: opacity var(--hover_time);
  opacity: 0;
  width: 90%;
  box-sizing: border-box;
  background-color: var(--color_point);
  color: #ffffff;
  text-align: center;
  padding: var(--pad_ss);
  border-radius: 20px;
  position: fixed;
  z-index: 1000;
  box-shadow: var(--shadow);
  max-width: 300px;
  bottom: var(--pad_xxs);
  right: var(--pad_xxs); }
  @media screen and (max-width: 834px) {
    #ct-float {
      font-size: 1.2rem; } }
  @media screen and (min-width: 835px) {
    #ct-float {
      right: 5%;
      max-width: 400px;
      right: var(--pad_s);
      bottom: 30px } }

.ct-float__ttl {
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5em;
  margin-bottom: .5em;
  font-size: 1.6rem; }
  @media screen and (min-width: 835px) {
    .ct-float__ttl {
      font-size: 2rem; } }
 /* .ct-float__ttl::before, .ct-float__ttl::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background-color: currentColor; }
*/

.ct-float__tel {
  font-weight: 700;
  font-family: var(--font_point);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 3rem; }
  @media screen and (min-width: 835px) {
    .ct-float__tel {
      font-size: 4.2rem; } }
  .ct-float__tel::before {
    content: "tel:";
    font-size: 60.6%; }

.ct-float__inst {
  font-weight: 700;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  position: relative;
  border-radius: 25px;
  max-width: 240px;
  width: 80%;
  background-color: #ffffff;
  color: var(--color_point);
  margin: 1em auto 0;
  height: 38px; }
  @media screen and (min-width: 835px) {
    .ct-float__inst {
      height: 40px; } }
  @media screen and (min-width: 835px) {
    .ct-float__inst {
      transition: opacity var(--hover_time); }
      .ct-float__inst:hover {
        opacity: 0.6; } }

/*----------------------------------------------------
  .scrollView
--------------------------------------------------- */
.scrollView{
  -webkit-transition: all 0.8s 0s ease;
     -moz-transition: all 0.8s 0s ease;
      -ms-transition: all 0.8s 0s ease;
       -o-transition: all 0.8s 0s ease;
          transition: all 0.8s 0s ease;
          opacity: 0;
  -webkit-transform: scale(1,1) translate(-0%,20px);
     -moz-transform: scale(1,1) translate(-0%,20px);
      -ms-transform: scale(1,1) translate(-0%,20px);
       -o-transform: scale(1,1) translate(-0%,20px);
          transform: scale(1,1) translate(-0%,20px);
}
.scrollView.view{
  opacity: 1;
  -webkit-transform: scale(1,1) translate(-0%,0%);
     -moz-transform: scale(1,1) translate(-0%,0%);
      -ms-transform: scale(1,1) translate(-0%,0%);
       -o-transform: scale(1,1) translate(-0%,0%);
          transform: scale(1,1) translate(-0%,0%);

}
/*----------------------------------------------------
  .scrollView
--------------------------------------------------- */
.scrollView{
  -webkit-transition: all 0.8s 0s ease;
     -moz-transition: all 0.8s 0s ease;
      -ms-transition: all 0.8s 0s ease;
       -o-transition: all 0.8s 0s ease;
          transition: all 0.8s 0s ease;
          opacity: 0;
  -webkit-transform: scale(1,1) translate(-0%,20px);
     -moz-transform: scale(1,1) translate(-0%,20px);
      -ms-transform: scale(1,1) translate(-0%,20px);
       -o-transform: scale(1,1) translate(-0%,20px);
          transform: scale(1,1) translate(-0%,20px);
}
.scrollView.view{
  opacity: 1;
  -webkit-transform: scale(1,1) translate(-0%,0%);
     -moz-transform: scale(1,1) translate(-0%,0%);
      -ms-transform: scale(1,1) translate(-0%,0%);
       -o-transform: scale(1,1) translate(-0%,0%);
          transform: scale(1,1) translate(-0%,0%);

}
/******************************************************************************
 * contact
*******************************************************************************/
@media screen and (min-width: 751px) {
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: content-box;
  outline: none; }

select {
  position: relative;
  border: 2px solid #fafafa;
  background: #fafafa;
  padding: 36px 35px 36px;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: inherit;
  position: relative;
  box-sizing: border-box; }

.custom {
  overflow: hidden;
  /* 伸ばした分を隠す */
  position: relative;
  background-image: url(../images/icon_select.png);
  background-size: 38px;
  background-repeat: no-repeat;
  background-position: right 20px center; }

.custom > select {
  width: 100%;
  /* UI分を伸ばす */ }
input.form-text {
  outline: none;
  border: none;
  border: 2px solid #fafafa;
  background: #fafafa;
  padding: 36px 35px 36px;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1px;
  box-sizing: border-box;
  font-family: inherit; }

textarea {
  outline: none;
  height: 320px;
  border: 2px solid #fafafa;
  background: #fafafa;
  padding: 36px 35px 36px;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1px;
  box-sizing: border-box;
  font-family: inherit; }

input.form-text1 {
  width: 350px; }

input.form-text2 {
  width: 295px; }

input.form-text3 {
  width: 173px; }

input.form-text:hover,
input.form-pass:hover,
textarea:hover,
select:hover {
  /*border-color: $blue01;*/ }

input.form-text:focus,
input.form-pass:focus,
select:focus,
select:focus option {
  border: 2px solid #8BC40E;
  background: #fff; }

textarea:focus {
  border: 2px solid #8BC40E;
  background: #fff; }

}
@media screen and (max-width: 750px) {
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: content-box;
  outline: none; }

select {
  border: 2px solid #fafafa;
  background: #fafafa;
  padding: 18px 18px 18px 18px;
  width: 100%;
  font-size: 1.3rem;
  font-family: inherit;
  position: relative;
  box-sizing: border-box; }

.custom {
  overflow: hidden;
  /* 伸ばした分を隠す */
  position: relative;
  background-image: url(../../img/icon_select.png);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: right 10px center; }

.custom > select {
  width: 100%;
  /* UI分を伸ばす */ }
input.form-text {
  outline: none;
  border: 2px solid #fafafa;
  background: #fafafa;
  padding: 18px 18px 18px 18px;
  width: 100%;
  font-size: 1.3rem;
  box-sizing: border-box;
  font-family: inherit; }

textarea {
  outline: none;
  width: 100%;
  height: 200px;
  border: 2px solid #fafafa;
  background: #fafafa;
  padding: 18px 18px 18px 18px;
  font-size: 1.3rem;
  box-sizing: border-box;
  font-family: inherit; }

input.form-text {
  width: 100%; }

input.form-text:focus,
input.form-pass:focus,
textarea:focus,
select:focus,
select:focus option {
  border: 2px solid #8BC40E;
  background: #fff; }

textarea:focus {
  border: 2px solid #8BC40E;
  background: #fff; }


	
}
@media screen and (min-width: 751px) {
dl.form_table {
  width: 100%;
}
dl.form_table dt {
  position: relative;
  width: 100%;
  color: #111419;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-sizing: border-box;
  padding-bottom: 20px;
}
dl.form_table dt span {
  position: relative;
  color: #ff0000;
  font-size: 1rem;
  font-weight: 400;
  top: -3px;
}
dl.form_table dd {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 1.4rem;
  letter-spacing: 1px;
  box-sizing: border-box;
  padding-bottom: 43px;
}
dl.form_table dd .c2 {
  width: 49%;
  box-sizing: border-box;
}
dl.form_table dd input.file {
  width: 100%;
}
dl.form_table dd .file_box_wrap {
  position: relative;
}
dl.form_table dd .file_box_wrap .mwform-file-delete {
  position: absolute;
  right: 10px;
  top: 40%;
}
dl.form_table dd .file_text {
  width: 55%;
  font-size: 1.2rem;
  line-height: 200%;
  padding-top: 25px;
}
dl.form_table dd .mwform-radio-field {
  position: relative;
  width: 32%;
  box-sizing: border-box;
  margin-bottom: 20px;
}
dl.form_table dd .mwform-radio-field input {
  margin-right: 45px;
}
dl.form_table dd .mwform-radio-field label {
  width: 100%;
  display: block;
  position: relative;
  background-color: #fafafa;
  box-sizing: border-box;
  padding: 42px 25px;
}

dl.form_table_checkbox {
  margin-bottom: 50px;
}
dl.form_table_checkbox dd {
  background-color: #fafafa;
  text-align: center;
  justify-content: center;
  padding: 20px 0 20px;
}

.privacy_policy_box {
  display: block;
  width: 100%;
  height: 300px;
  overflow-y: scroll;
  margin: 30px auto 10px;
  padding: 30px 50px;
  box-sizing: border-box;
  border: 1px solid #f0f0f0;
}

.mw_wp_form_preview dl.form_table_checkbox {
  display: none;
}
}
@media screen and (max-width: 750px) {
dl.form_table {
  width: 100%;
}
dl.form_table dt {
  position: relative;
  width: 100%;
  color: #111419;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-sizing: border-box;
  padding-bottom: 15px;
}
dl.form_table dt span {
  position: relative;
  color: #ff0000;
  font-size: 0.8rem;
  font-weight: 400;
  top: -3px;
}
dl.form_table dd {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 1.4rem;
  letter-spacing: 1px;
  box-sizing: border-box;
  padding-bottom: 35px;
}
dl.form_table dd .c2 {
  width: 48%;
  box-sizing: border-box;
}
dl.form_table dd input.file {
  width: 100%;
}
dl.form_table dd .file_text {
  width: 100%;
  font-size: 1rem;
  line-height: 200%;
  padding-top: 10px;
}
dl.form_table dd .mwform-radio-field {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
dl.form_table dd .mwform-radio-field input {
  margin-right: 25px;
}
dl.form_table dd .mwform-radio-field label {
  width: 100%;
  display: block;
  position: relative;
  background-color: #fafafa;
  box-sizing: border-box;
  padding: 25px 10px;
}
dl.form_table dd .horizontal-item {
  margin-left: 0 !important;
}

dl.form_table_checkbox {
  margin-bottom: 50px;
}
dl.form_table_checkbox dd {
  background-color: #fafafa;
  text-align: center;
  justify-content: center;
  padding: 20px 0 20px;
}
	
	
	
}
.form_button p input {
	display: block;
	width: 240px;
	font-size: 16px;
	line-height: 54px;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 1);
	margin: 0 auto;
	padding: 0 0 2px 0;
	-webkit-appearance: none;
	cursor: pointer;
	outline: none;
	box-shadow: none;
	position: relative;
	background-color: #27a47f;
	border: 2px solid #27a47f;
	border-radius: 30px;
	text-align: center;
	font-weight: 700
}
.form_button p input {
	transition-duration: 0.5s;
	transition-timing-function: ease-in-out;
	transition-property: background-color, color
}
.form_button p input:hover {
	background-color: rgba(255, 255, 255, 1);
	color: rgba(0, 0, 0, 1)
}

.form_button p input[disabled] {
	cursor: default;
}
.form_button p input[disabled]:hover {
	background-color: rgba(0, 0, 0, 1);
	color: rgba(255, 255, 255, 1);
}

@media (max-width:559px) {
	.form_button p input {
		width: 175px;
		font-size: 14px;
		line-height: 44px;
		letter-spacing: .5px;
		border-radius: 25px
	}
	
	
}