@charset "UTF-8";
/* ====================================================
reset style
==================================================== */
html {
  overflow-y: scroll;
  font-size: 16px;
  /* Base font size, change to 14px or 16px if needed */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

fieldset, img {
  border: 0;
}

img {
  vertical-align: middle;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: '';
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*to enable resizing for IE*/
input, textarea, select {
  *font-size: 100%;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

del, ins {
  text-decoration: none;
}

/* ====================================================
Font
==================================================== */
/* ====================================================
Position & transform
==================================================== */
/* ====================================================
Color
==================================================== */
/* ====================================================
Sizing
==================================================== */
/* ====================================================
Misc
==================================================== */
/* ====================================================
Media Quary
==================================================== */
/* ====================================================
opacity
==================================================== */
/* ====================================================
Base style & container
==================================================== */
body {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 100%;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 80%;
  }
}

a {
  color: #1A0DAB;
  text-decoration: none;
}

a.rollover {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a.rollover:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

a:hover {
  -webkit-backface-visibility: hidden;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  pointer-events: none;
  image-rendering: -webkit-optimize-contrast;
}

.inner {
  margin: 0 auto;
  max-width: 1300px;
  padding: 0 15px;
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 0 20px;
  }
}

figure {
  margin: 0;
  padding: 0;
}

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

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

.d-none {
  display: none !important;
}

/* ====================================================
Float & clear
==================================================== */
.clearfix {
  *zoom: 1;
}

.clearfix:before {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

/* ====================================================
column layout
==================================================== */
/* column2--layout */
.column2--layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.column2--layout a {
  display: block;
}

.column2--layout article {
  width: 49%;
}

@media screen and (min-width: 769px) {
  .column2--layout article {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .column2--layout article {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* column3--layout */
.column3--layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.column3--layout a {
  display: block;
}

.column3--layout article {
  width: 30%;
}

@media screen and (min-width: 769px) {
  .column3--layout article {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .column3--layout article {
    width: 100%;
    margin-bottom: 20px;
  }
}

.column3--layout:after {
  content: "";
}

@media screen and (min-width: 769px) {
  .column3--layout:after {
    width: 100%;
    max-width: 30%;
  }
}

/* column4--layout */
.column4--layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.column4--layout a {
  display: block;
}

@media screen and (min-width: 769px) {
  .column4--layout article {
    width: 24%;
  }
}

@media screen and (max-width: 768px) {
  .column4--layout article {
    width: 100%;
    margin-bottom: 10px;
  }
}

.column4--layout:before {
  content: "";
  width: 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (min-width: 769px) {
  .column4--layout:before {
    max-width: 24%;
  }
}

.column4--layout:after {
  content: "";
  width: 100%;
}

@media screen and (min-width: 769px) {
  .column4--layout:after {
    max-width: 24%;
  }
}

/* ====================================================
float layout
==================================================== */
.left {
  float: left;
}

.right {
  float: right;
}

.ofh {
  overflow: hidden;
}

/* ====================================================
section
==================================================== */
@media screen and (min-width: 769px) {
  .sec {
    padding: 40px 0;
  }
}

@media screen and (max-width: 768px) {
  .sec {
    padding: 20px;
  }
}

.sec .min--inner {
  max-width: 616px;
  margin: 0 auto;
}

/* ====================================================
Header
==================================================== */
.header {
  position: relative;
  z-index: 10;
  width: 100%;
  background: #8CC054;
  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;
  padding: 10px 30px;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 10px 20px;
  }
}

.header .head--logo {
  width: calc(260px / 2);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header .head--logo a {
  display: block;
}

.header .head--nav {
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.header .head--nav__gnavi {
  text-align: right;
  width: 100%;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media screen and (max-width: 768px) {
  .header .head--nav__gnavi {
    position: fixed;
    left: 100vw;
    top: 53px;
    border-top: 1px solid #fff;
  }
}

.header .head--nav__gnavi.active {
  text-align: left;
  background: #8CC054;
}

@media screen and (max-width: 768px) {
  .header .head--nav__gnavi.active {
    left: 0vw;
  }
}

.header .head--nav__gnavi li {
  font-size: 15px;
}

@media screen and (min-width: 769px) {
  .header .head--nav__gnavi li {
    display: inline-block;
  }
}

@media screen and (min-width: 769px) {
  .header .head--nav__gnavi li:not(:last-child) a:after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 20px;
    background: #fff;
    margin: 0 10px;
    position: relative;
    top: 5px;
    left: 2px;
  }
}

.header .head--nav__gnavi li a {
  line-height: 28px;
  display: block;
  color: #fff;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media screen and (max-width: 768px) {
  .header .head--nav__gnavi li a {
    line-height: 50px;
    padding: 0 20px;
    border-bottom: 1px solid #fff;
  }
}

.header .head--nav__gnavi li a:hover {
  color: #FFF726;
}

@media screen and (min-width: 769px) {
  .header .head--nav__gnavi li.gnavi--owner a {
    background: #fff;
    border-radius: 100px;
    color: #8CC054;
    padding: 0 20px;
  }
}

.header .head--nav__gnavi li.gnavi--owner a:hover {
  background: #F1942E;
  color: #fff;
}

.header .head--nav .btn--sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .header .head--nav .btn--sp {
    display: block;
    width: 26px;
    height: 21px;
    position: absolute;
    top: 19px;
    right: 20px;
    z-index: 2;
  }
  .header .head--nav .btn--sp div {
    position: relative;
  }
  .header .head--nav .btn--sp span {
    display: block;
    width: 26px;
    height: 1px;
    background: #fff;
    position: absolute;
    right: 0;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
  }
  .header .head--nav .btn--sp span.top {
    top: 0px;
  }
  .header .head--nav .btn--sp span.middle {
    top: 7px;
  }
  .header .head--nav .btn--sp span.bottom {
    top: 15px;
  }
  .header .head--nav .btn--sp.close span.top {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 10px;
  }
  .header .head--nav .btn--sp.close span.middle {
    opacity: 0;
  }
  .header .head--nav .btn--sp.close span.bottom {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 10px;
  }
}

.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  /*
		display: flex;
		justify-content: space-between;
		align-items: center;
		.head--logo {
			@include mq(md-min) {
				padding-left: 20px;
			}
			a {
				@include mq(md-min) {
					padding: 0 0;
				}
			}
		}
		.head--nav {
			.head--nav__gnavi {
				text-align: right;
				@include mq(md-min) {
					margin-bottom: 0;
				}
				li {
					a {
						border-radius: 0;
						@include mq(md-min) {
							padding: 24px 17px;
						}
					}
				}
			}
		}
	*/
}

/* ====================================================
Footer
==================================================== */
.footer {
  position: relative;
  background: #524341;
  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;
  padding: 0 20px 20px;
  margin-top: 275px;
}

@media screen and (max-width: 768px) {
  .footer {
    display: block;
    margin-top: 154px;
    padding-top: 10px;
  }
}

.footer:before {
  content: "";
  display: block;
  width: 100%;
  height: 174px;
  background: url(../images/common/footer_img.png) repeat-x center top;
  position: absolute;
  top: -174px;
  left: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  .footer:before {
    background-size: contain;
    height: 42px;
    top: -42px;
  }
}

.footer .foot--logo {
  width: 230px;
}

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

.footer .foot--logo__img {
  width: 60%;
}

.footer .foot--nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  .footer .foot--nav {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 769px) {
  .footer .foot--nav .foot--nav__gnavi li {
    display: inline-block;
  }
  .footer .foot--nav .foot--nav__gnavi li:not(:last-child):after {
    content: "|";
    display: inline-block;
    margin: 0 10px;
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .footer .foot--nav .foot--nav__gnavi li {
    margin-top: 10px;
  }
}

.footer .foot--nav .foot--nav__gnavi li a {
  color: #fff;
}

.footer .foot--nav .foot--nav__gnavi li a:hover {
  color: #FFF726;
}

.footer .foot--nav .copyright {
  padding-left: 50px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .footer .foot--nav .copyright {
    padding-left: 0;
  }
}

/* ====================================================
contact area
==================================================== */
.common--contact__area {
  /*
	border-top: 1px solid #C4C4C4;
	*/
}

@media screen and (min-width: 769px) {
  .common--contact__area {
    padding: 65px 0;
  }
}

@media screen and (max-width: 768px) {
  .common--contact__area {
    padding: 40px 20px 0;
  }
}

.common--contact__area .column2--layout article {
  width: 380px;
}

@media screen and (max-width: 768px) {
  .common--contact__area .column2--layout article {
    width: 100%;
  }
}

.common--contact__area .column2--layout article p[class*="icn--"] {
  font-size: 24px;
  font-weight: 500;
  padding: 0;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .common--contact__area .column2--layout article p[class*="icn--"] {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.common--contact__area .column2--layout article p.icn--mail:before, .common--contact__area .column2--layout article p.icn--tel:before {
  content: "";
  display: inline-block;
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 12px;
}

.common--contact__area .column2--layout article p.icn--mail:before {
  background-image: url(../images/common/feather-mail.png);
  width: calc(45px / 2);
  height: calc(36px / 2);
  position: relative;
}

@media screen and (max-width: 768px) {
  .common--contact__area .column2--layout article p.icn--mail:before {
    width: calc(36px / 2);
    height: calc(29px / 2);
    top: 1px;
  }
}

.common--contact__area .column2--layout article p.icn--tel:before {
  background-image: url(../images/common/feather-phone.png);
  width: calc(44px / 2);
  height: calc(44px / 2);
  position: relative;
  top: 3px;
}

@media screen and (max-width: 768px) {
  .common--contact__area .column2--layout article p.icn--tel:before {
    width: calc(36px / 2);
    height: calc(36px / 2);
  }
}

.common--contact__area .column2--layout article a {
  font-size: 16px;
}

/* ====================================================
Content-common
==================================================== */
.container {
  display: block;
  width: 100%;
  padding: 0 10.4166666667%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* ====================================================
MODULE
==================================================== */
.hook {
  height: 0;
  font-size: 0;
}

/*パンくずMODULE*/
/*見出しMODULE*/
.ttl--line {
  max-width: 1282px;
  border-bottom: 3px solid #F1942E;
  padding-bottom: 20px;
  margin: 0 auto 20px;
  font-size: 40px;
  font-weight: 900;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .ttl--line {
    font-size: 24px;
    padding-bottom: 10px;
    margin: 0 auto 10px;
  }
}

.ttl--line span {
  font-size: 18px;
  display: block;
}

.ttl--center {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .ttl--center {
    font-size: 20px;
  }
}

/*テキストMODULE*/
.bold {
  font-weight: 700;
}

/*リンクMODULE*/
/*ボタンMODULE*/
.btn {
  display: block;
  padding: 10px 20px;
  text-align: center;
  font-weight: 900;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.btn--round {
  border-radius: 2em;
}

.btn--bgwhite {
  background: #fff;
  border: 3px solid #fff;
  color: #F1942E;
}

.btn--bgwhite:hover {
  background: #8CC054;
  border: 3px solid #8CC054;
  color: #fff;
}

.btn--bgorange {
  background: #F1942E;
  color: #fff;
  border: 3px solid #F1942E;
}

.btn--bgorange:hover {
  background: #fff;
  color: #F1942E;
}

.btn--bggreen {
  background: #8CC054;
  color: #fff;
  border: 3px solid #8CC054;
}

.btn--bggreen:hover {
  background: #fff;
  color: #8CC054;
}

.btn--border__orange {
  background: #fff;
  border: 3px solid #F1942E;
  color: #F1942E;
  max-width: 570px;
}

.btn--border__orange:hover {
  background: #F1942E;
  color: #fff;
}

/*ボックスMODULE*/
/*セレクト MODULE*/
/*ページトップMODULE*/
.pagetop {
  opacity: 0;
  position: fixed;
  bottom: 75px;
  right: 20px;
  z-index: 10;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.pagetop a {
  background: #F1942E;
  padding: 15px 20px;
  border-radius: 5px;
  color: #fff;
}

.pagetop.is-fade {
  opacity: 1;
}

/* リスト */
.list--disc li {
  position: relative;
  padding-left: 1em;
}

.list--disc li:before {
  content: "";
  border-radius: 50%;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 0.6em;
  background: #FA7725;
}

/* margin */
/* ====================================================
 Index
==================================================== */
.sec-ttl {
  font-size: 50px;
  font-size: 5rem;
  line-height: 1.3;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  .sec-ttl {
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 1.5;
  }
}

.sec-ttl span {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .sec-ttl span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

#index .ttl-wrap {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  #index .ttl-wrap {
    margin-bottom: 30px;
  }
}

#index .ttl-wrap .sec-ttl {
  margin-bottom: 0;
  float: left;
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  #index .ttl-wrap .sec-ttl {
    float: none;
  }
}

#index .ttl-wrap .ttl-intro {
  padding-top: 27px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  #index .ttl-wrap .ttl-intro {
    font-size: 13px;
    font-size: 1.3rem;
    padding-top: 20px;
  }
}

#index .main-visual {
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  #index .main-visual {
    margin-bottom: 45px;
  }
}

#index .main-visual .mv-wrap {
  position: relative;
}

@media screen and (max-width: 1300px) {
  #index .main-visual .mv-wrap {
    padding: 0 55px;
  }
}

@media screen and (max-width: 768px) {
  #index .main-visual .mv-wrap {
    padding: 0;
  }
}

#index .main-visual .mv {
  z-index: 5001;
}

#index .main-visual .mv .mv-item {
  overflow: hidden;
  border-radius: 8px;
}

#index .main-visual .desc {
  position: absolute;
  font-size: 54px;
  font-size: 5.4rem;
  top: 38%;
  left: -63px;
  z-index: 6000;
  text-shadow: 0px 0px 7px #ffffff;
}

@media screen and (min-width: 769px) {
  #index .main-visual .desc {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 1300px) {
  #index .main-visual .desc {
    left: 0;
  }
}

@media screen and (max-width: 768px) {
  #index .main-visual .desc {
    font-size: 22px;
    font-size: 2.2rem;
    background: #FFF;
    top: inherit;
    bottom: 0;
    border-radius: 0 8px 0 0;
    padding: 5px 0 0;
  }
}

#index .sec-concept {
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  #index .sec-concept {
    padding-bottom: 90px;
  }
}

#index .sec-concept .bg {
  background: url(../images/index/concept_logo.png) no-repeat right top;
  background-size: 97px auto;
}

@media screen and (max-width: 768px) {
  #index .sec-concept .bg {
    background-size: 48px auto;
    background-position: right top 10px;
  }
}

#index .sec-concept .sec-ttl {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  #index .sec-concept .sec-ttl {
    margin-bottom: 25px;
  }
}

#index .sec-concept .concept-txt {
  max-width: 830px;
  margin: 0 auto;
}

#index .sec-concept .concept-txt p {
  line-height: 1.8;
  margin-bottom: 30px;
}

#index .sec-concept .concept-txt p:last-of-type {
  margin-bottom: 0;
}

#index .sec-concept .concept-txt p span {
  font-weight: bold;
}

#index .sec-concept .counseling-btn {
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  #index .sec-concept .counseling-btn {
    margin-top: 35px;
  }
}

#index .sec-concept .counseling-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 30px 40px;
  background: #FFF;
  border: 1px solid #A38362;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  #index .sec-concept .counseling-btn a {
    padding: 15px 20px;
  }
}

#index .sec-concept .counseling-btn a p {
  line-height: normal;
  margin-bottom: 0;
}

#index .sec-concept .counseling-btn a .counseling-ttl {
  font-size: 22px;
  font-size: 2.2rem;
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  #index .sec-concept .counseling-btn a .counseling-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#index .sec-concept .counseling-btn a .counseling-ttl span {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  #index .sec-concept .counseling-btn a .counseling-ttl span {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

#index .sec-concept .counseling-btn a .counseling-intro {
  background: #F8F8ED;
  border-radius: 50px;
  padding: 5px 30px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  #index .sec-concept .counseling-btn a .counseling-intro {
    background: none;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 0 0 0 10px;
    margin-top: 10px;
  }
}

#index .sec-concept .counseling-btn a::after {
  content: "\f105";
  font-family: 'FontAwesome';
  display: block;
  font-size: 20px;
  font-size: 2rem;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #A38362;
}

#index .sec-info {
  background: #F8F8ED;
  padding: 85px 0 60px;
}

@media screen and (max-width: 768px) {
  #index .sec-info {
    padding: 35px 0 40px;
  }
}

#index .sec-info .sec-ttl {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  #index .sec-info .sec-ttl {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.4;
  }
}

#index .sec-info .col-wrap {
  display: table;
  width: 100%;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #index .sec-info .col-wrap {
    display: block;
    margin-bottom: 35px;
  }
}

#index .sec-info .col-wrap .ttl-col, #index .sec-info .col-wrap .info-col {
  display: table-cell;
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  #index .sec-info .col-wrap .ttl-col, #index .sec-info .col-wrap .info-col {
    display: block;
  }
}

#index .sec-info .col-wrap .ttl-col {
  position: relative;
  width: 175px;
  padding-bottom: 55px;
}

@media screen and (max-width: 768px) {
  #index .sec-info .col-wrap .ttl-col {
    position: relative;
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
}

#index .sec-info .info-list li {
  font-size: 16px;
  font-size: 1.6rem;
  border-bottom: 1px solid #DFDFDF;
}

#index .sec-info .info-list li a {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 15px 0;
}

@media screen and (max-width: 768px) {
  #index .sec-info .info-list li a {
    padding: 10px 0 5px;
  }
}

#index .sec-info .info-list li a::after {
  content: "\f105";
  font-family: 'FontAwesome';
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  position: absolute;
  right: 0;
  top: 50%;
}

@media screen and (min-width: 769px) {
  #index .sec-info .info-list li a::after {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 768px) {
  #index .sec-info .info-list li a::after {
    top: inherit;
    bottom: 5px;
  }
}

#index .sec-info .info-list li a:hover dd {
  text-decoration: underline;
}

#index .sec-info .info-list li dt {
  color: #A2A2A2;
  float: left;
  width: 145px;
  font-family: 'Poppins', sans-serif;
}

@media screen and (max-width: 768px) {
  #index .sec-info .info-list li dt {
    float: none;
    width: 100%;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

#index .sec-info .info-list li dd {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  #index .sec-info .info-list li dd {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

#index .sec-info .more-btn {
  width: 112px;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  #index .sec-info .more-btn {
    width: 70px;
    top: 5px;
    bottom: inherit;
    right: 0;
    left: inherit;
  }
}

#index .sec-info .more-btn .btn {
  width: 100%;
  display: block;
  height: 43px;
  line-height: 43px;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  #index .sec-info .more-btn .btn {
    height: 32px;
    line-height: 32px;
  }
}

#index .sec-info .blog-btn {
  width: 100%;
  max-width: 965px;
  float: right;
}

#index .sec-info .blog-btn a {
  display: block;
  position: relative;
  padding: 30px 40px;
  background: #FFF;
  border: 1px solid #A38362;
  border-radius: 8px;
}

@media screen and (min-width: 991px) {
  #index .sec-info .blog-btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 768px) {
  #index .sec-info .blog-btn a {
    padding: 15px 20px;
  }
}

#index .sec-info .blog-btn a::after {
  content: "\f105";
  font-family: 'FontAwesome';
  display: block;
  font-size: 20px;
  font-size: 2rem;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #A38362;
}

@media screen and (max-width: 768px) {
  #index .sec-info .blog-btn a::after {
    display: none;
  }
}

#index .sec-info .blog-btn .blog-ttl {
  width: 241px;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  #index .sec-info .blog-btn .blog-ttl {
    width: 153px;
  }
}

#index .sec-info .blog-btn .blog-img {
  position: absolute;
  top: 50%;
  right: 55px;
  width: 201px;
  margin-top: -80px;
}

@media screen and (max-width: 768px) {
  #index .sec-info .blog-btn .blog-img {
    width: 103px;
    margin-top: -41px;
    right: 10px;
  }
}

@media screen and (max-width: 320px) {
  #index .sec-info .blog-btn .blog-img {
    right: 5px;
  }
}

#index .sec-info .blog-btn .blog-intro {
  background: #F8F8ED;
  border-radius: 50px;
  padding: 5px 30px;
  display: inline-block;
}

@media screen and (max-width: 990px) {
  #index .sec-info .blog-btn .blog-intro {
    display: block;
    margin-top: 15px;
    max-width: 420px;
  }
}

@media screen and (max-width: 768px) {
  #index .sec-info .blog-btn .blog-intro {
    background: none;
    padding: 0;
    position: relative;
    z-index: 1;
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 10px;
  }
}

@media screen and (max-width: 320px) {
  #index .sec-info .blog-btn .blog-intro {
    font-size: 10px;
    font-size: 1rem;
  }
}

#index .sec-menu {
  padding: 115px 0 150px;
}

@media screen and (max-width: 768px) {
  #index .sec-menu {
    padding: 45px 0 65px;
  }
}

#index .sec-menu hr.spline {
  margin: 30px 0;
  border: solid 1px #eee;
}

#index .sec-menu #fortune-telling {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #index .sec-menu #fortune-telling {
    margin-bottom: 0px;
  }
}

#index .sec-menu .w20 {
  width: 15%;
  float: left;
}

@media screen and (max-width: 768px) {
  #index .sec-menu .w20 {
    width: 100%;
  }
}

#index .sec-menu .w80 {
  width: 85%;
  float: right;
}

@media screen and (max-width: 768px) {
  #index .sec-menu .w80 {
    width: 100%;
    float: none;
  }
}

#index .sec-menu .menu-cat-ttl {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  min-height: 757px;
  float: left;
  border-right: 2px #DFDFDF solid;
}

@media screen and (max-width: 768px) {
  #index .sec-menu .menu-cat-ttl {
    min-height: auto;
    border-right: none;
    writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
  }
}

#index .sec-menu .menu-cat-ttl.phyto {
  min-height: 1345px;
}

@media screen and (max-width: 768px) {
  #index .sec-menu .menu-cat-ttl.phyto {
    min-height: auto;
  }
}

#index .sec-menu .menu-cat-ttl span {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: #A2A2A2;
}

@media screen and (max-width: 768px) {
  #index .sec-menu .menu-cat-ttl span {
    font-size: 1rem;
  }
}

#index .sec-menu .menu-cat-ttl h2 {
  font-size: 6.8rem;
  letter-spacing: 26px;
  text-indent: -55px;
}

@media screen and (max-width: 768px) {
  #index .sec-menu .menu-cat-ttl h2 {
    font-size: 4.8rem;
    text-indent: 0;
    margin-bottom: 0px;
  }
}

#index .sec-menu .menu-cat-ttl h2.phyto {
  letter-spacing: 4px;
}

#index .sec-menu .menu-cat-intro {
  margin-bottom: 50px;
}

#index .sec-menu .menu-cat-intro p {
  line-height: 1.8;
}

#index .sec-menu .menu-intro .txt-wrap {
  position: relative;
  float: right;
  width: 57%;
}

@media screen and (max-width: 768px) {
  #index .sec-menu .menu-intro .txt-wrap {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

#index .sec-menu .menu-intro .txt-wrap p {
  line-height: 1.8;
  margin-bottom: 30px;
}

#index .sec-menu .menu-intro .txt-wrap p.caution {
  font-size: 13px;
  font-size: 1.3rem;
  color: #555555;
}

@media screen and (max-width: 768px) {
  #index .sec-menu .menu-intro .txt-wrap p.caution {
    font-size: 12px;
    font-size: 1.2rem;
    padding-top: 40px;
  }
}

#index .sec-menu .menu-intro .img-wrap {
  position: relative;
  width: 38.5%;
  float: left;
  margin-bottom: 50px;
}

@media screen and (min-width: 769px) {
  #index .sec-menu .menu-intro .img-wrap {
    -webkit-box-shadow: -12px 8px 26px -5px #d0d0d0;
            box-shadow: -12px 8px 26px -5px #d0d0d0;
  }
}

@media screen and (max-width: 768px) {
  #index .sec-menu .menu-intro .img-wrap {
    width: 100%;
    float: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-bottom: 15px !important;
  }
}

#index .sec-menu .menu-intro .img-wrap img {
  border-radius: 8px;
}

#index .sec-menu .menu-intro.menu01 {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #index .sec-menu .menu-intro.menu01 {
    margin-bottom: 20px;
  }
}

#index .sec-menu .menu-intro.menu01 .txt-wrap {
  margin-left: 30px;
}

#index .sec-menu .menu-intro.menu02 {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  #index .sec-menu .menu-intro.menu02 {
    margin-bottom: 0px;
  }
}

#index .sec-menu .menu-intro.menu02 .txt-wrap {
  margin-top: 0;
  float: left;
  margin-left: 0;
  margin-right: -7.9%;
}

@media screen and (max-width: 768px) {
  #index .sec-menu .menu-intro.menu02 .txt-wrap {
    margin: 0;
    float: none;
  }
}

#index .sec-menu .menu-intro.menu02 .img-wrap {
  float: right;
}

@media screen and (min-width: 769px) {
  #index .sec-menu .menu-intro.menu02 .img-wrap {
    -webkit-box-shadow: 12px 8px 26px -5px #d0d0d0;
            box-shadow: 12px 8px 26px -5px #d0d0d0;
  }
}

@media screen and (max-width: 768px) {
  #index .sec-menu .menu-intro.menu02 .img-wrap {
    margin: 0;
    float: none;
  }
}

#index .sec-menu .menu-intro.menu03 {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #index .sec-menu .menu-intro.menu03 {
    margin-bottom: 50px;
  }
}

#index .sec-menu .menu-intro.menu04 {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  #index .sec-menu .menu-intro.menu04 {
    margin-bottom: 60px;
  }
}

#index .sec-menu .menu-intro.menu04 .txt-wrap {
  margin-top: 0;
  float: left;
  margin-left: 0;
  margin-right: -7.9%;
}

@media screen and (max-width: 768px) {
  #index .sec-menu .menu-intro.menu04 .txt-wrap {
    margin: 0;
    float: none;
  }
}

#index .sec-menu .menu-intro.menu04 .img-wrap {
  float: right;
}

@media screen and (min-width: 769px) {
  #index .sec-menu .menu-intro.menu04 .img-wrap {
    -webkit-box-shadow: 12px 8px 26px -5px #d0d0d0;
            box-shadow: 12px 8px 26px -5px #d0d0d0;
  }
}

@media screen and (max-width: 768px) {
  #index .sec-menu .menu-intro.menu04 .img-wrap {
    margin: 0;
    float: none;
  }
}

#index .sec-menu .menu-intro .menu-ttl {
  font-size: 38px;
  font-size: 3.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #index .sec-menu .menu-intro .menu-ttl {
    font-size: 26px;
    font-size: 2.6rem;
    margin-bottom: 15px;
  }
}

#index .sec-menu .menu-intro .menu-ttl span {
  font-size: 16px;
  font-size: 1.6rem;
  display: block;
}

@media screen and (max-width: 768px) {
  #index .sec-menu .menu-intro .menu-ttl span {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

#index .sec-menu .blog-btn {
  width: 100%;
  max-width: 965px;
  float: right;
}

#index .sec-menu .blog-btn a {
  display: block;
  position: relative;
  margin: 30px 0 60px 0;
  padding: 30px 40px;
  background: #FFF;
  border: 1px solid #A38362;
  border-radius: 8px;
}

@media screen and (min-width: 991px) {
  #index .sec-menu .blog-btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 768px) {
  #index .sec-menu .blog-btn a {
    padding: 15px 20px;
  }
}

#index .sec-menu .blog-btn a::after {
  content: "\f105";
  font-family: 'FontAwesome';
  display: block;
  font-size: 20px;
  font-size: 2rem;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #A38362;
}

#index .sec-menu .blog-btn .blog-ttl {
  font-size: 3rem;
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  #index .sec-menu .blog-btn .blog-ttl {
    font-size: 1.5rem;
    margin-right: 0;
  }
}

#index .sec-menu .blog-btn .blog-intro {
  background: #F8F8ED;
  border-radius: 50px;
  padding: 5px 30px;
  display: inline-block;
}

@media screen and (max-width: 990px) {
  #index .sec-menu .blog-btn .blog-intro {
    display: block;
    margin-top: 15px;
    max-width: 420px;
  }
}

@media screen and (max-width: 768px) {
  #index .sec-menu .blog-btn .blog-intro {
    background: none;
    padding: 0;
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 10px;
  }
}

@media screen and (max-width: 320px) {
  #index .sec-menu .blog-btn .blog-intro {
    font-size: 10px;
    font-size: 1rem;
  }
}

#index .sec-menu .more-btn {
  width: 140px;
  margin: 23px 0;
  display: inline-block;
  float: left;
}

@media screen and (max-width: 768px) {
  #index .sec-menu .more-btn {
    float: none;
    display: block;
    margin: 23px auto;
  }
}

#index .sec-menu .more-btn .btn {
  height: 43px;
  line-height: 43px;
}

#index .sec-price {
  background: #F8F8ED;
  padding: 95px 0 135px;
}

@media screen and (max-width: 768px) {
  #index .sec-price {
    padding: 40px 0 50px;
  }
}

#index .sec-price .ttl-wrap {
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  #index .sec-price .ttl-wrap {
    position: relative;
  }
}

#index .sec-price .ttl-wrap .sec-ttl {
  line-height: 1.6;
}

#index .sec-price .ttl-wrap .ttl-intro {
  text-align: right;
  font-weight: normal;
  color: #555555;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  #index .sec-price .ttl-wrap .ttl-intro {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

#index .sec-price .plan-wrap .col {
  position: relative;
  width: 31.6%;
  float: left;
  margin: 0 0 2.6% 2.6%;
  background: #FFF;
  padding: 40px 30px 30px;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  #index .sec-price .plan-wrap .col {
    width: 100%;
    margin: 0 0 20px;
    padding: 30px 20px 30px;
  }
}

#index .sec-price .plan-wrap .col:first-of-type, #index .sec-price .plan-wrap .col:nth-child(4n) {
  margin-left: 0;
}

#index .sec-price .plan-wrap .col .icon {
  position: absolute;
  left: 15px;
  top: 15px;
}

@media screen and (max-width: 768px) {
  #index .sec-price .plan-wrap .col .icon.mini {
    width: 24px;
  }
}

@media screen and (max-width: 768px) {
  #index .sec-price .plan-wrap .col .icon.mini1 {
    width: 32px;
  }
}

#index .sec-price .plan-wrap .col .plan-ttl {
  display: table;
  width: 100%;
  text-align: center;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.4;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  #index .sec-price .plan-wrap .col .plan-ttl {
    margin-bottom: 20px;
    height: inherit !important;
  }
}

@media screen and (max-width: 375px) {
  #index .sec-price .plan-wrap .col .plan-ttl {
    font-size: 5.5vw;
  }
}

@media screen and (max-width: 320px) {
  #index .sec-price .plan-wrap .col .plan-ttl {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

#index .sec-price .plan-wrap .col .plan-ttl span {
  display: table-cell;
  vertical-align: middle;
}

#index .sec-price .plan-wrap .col .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;
  position: relative;
  background: #F8F8ED;
  text-align: center;
  border-radius: 8px;
  padding: 20px 0;
  margin-bottom: 25px;
}

#index .sec-price .plan-wrap .col .box > div {
  width: 100%;
}

#index .sec-price .plan-wrap .col .box .d-table {
  display: table;
  width: 100%;
}

#index .sec-price .plan-wrap .col .box .box-inner {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}

#index .sec-price .plan-wrap .col .box .hour-price {
  text-align: left;
  padding-left: 40px;
  margin-top: 10px;
  line-height: 1.3;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  #index .sec-price .plan-wrap .col .box .hour-price {
    padding-left: 25px;
  }
}

#index .sec-price .plan-wrap .col .box .hour-price dt {
  float: left;
  width: 35px;
  font-size: 14px;
  font-size: 1.4rem;
  padding-top: 8px;
}

#index .sec-price .plan-wrap .col .box .hour-price dd {
  overflow: hidden;
  font-size: 16px;
  font-size: 1.6rem;
}

#index .sec-price .plan-wrap .col .box .hour-price dd span {
  color: #A38362;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 400;
}

#index .sec-price .plan-wrap .col .box .plan-txt {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  display: block;
  margin: 0 20px;
}

#index .sec-price .plan-wrap .col .box .plan-txt.border-top {
  border-top: 1px solid #DFDFDF;
  padding-top: 14px;
  margin-top: 10px;
}

#index .sec-price .plan-wrap .col .box .plan-txt.under {
  margin-top: 30px;
}

#index .sec-price .plan-wrap .col .box .plan-txt span {
  font-size: 12px;
  font-size: 1.2rem;
}

#index .sec-price .plan-wrap .col .box .plan-price {
  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;
  line-height: 1.3;
  font-weight: bold;
}

#index .sec-price .plan-wrap .col .box .plan-price dt {
  font-size: 14px;
  font-size: 1.4rem;
  margin-right: 20px;
}

#index .sec-price .plan-wrap .col .box .plan-price dd {
  font-size: 16px;
  font-size: 1.6rem;
}

#index .sec-price .plan-wrap .col .box .plan-price dd span {
  color: #A38362;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 400;
}

#index .sec-price .plan-wrap .col .box .price-txt {
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.3;
  padding-top: 10px;
}

#index .sec-price .plan-wrap .col .box .price-txt .hour {
  font-size: 14px;
  font-size: 1.4rem;
  display: block;
}

#index .sec-price .plan-wrap .col .box .price-txt .price {
  color: #A38362;
  font-size: 44px;
  font-size: 4.4rem;
  font-weight: 400;
}

#index .sec-price .plan-wrap .col .box .price-txt.extension {
  position: absolute;
  top: 61%;
  right: 15px;
  padding: 0 15px 0 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  #index .sec-price .plan-wrap .col .box .price-txt.extension {
    position: static;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    display: inline-block;
    width: 150px;
    margin-top: 15px;
  }
}

@media screen and (max-width: 320px) {
  #index .sec-price .plan-wrap .col .box .price-txt.extension {
    position: static;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    display: inline-block;
    width: 150px;
    margin-top: 15px;
  }
}

#index .sec-price .plan-wrap .col .box .price-txt.extension::before, #index .sec-price .plan-wrap .col .box .price-txt.extension::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 10px;
  height: 44px;
  background-size: 100% auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#index .sec-price .plan-wrap .col .box .price-txt.extension::before {
  left: 0;
  background-image: url(../images/index/frame_l.png);
}

#index .sec-price .plan-wrap .col .box .price-txt.extension::after {
  right: 0;
  background-image: url(../images/index/frame_r.png);
}

#index .sec-price .plan-wrap .col .box .price-txt.extension .hour {
  font-size: 12px;
  font-size: 1.2rem;
}

#index .sec-price .plan-wrap .col .box .price-txt.extension .price {
  font-size: 22px;
  font-size: 2.2rem;
}

#index .sec-price .plan-wrap .col .open {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#index .sec-price .plan-wrap .col .open::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, white 10%, rgba(255, 255, 255, 0));
  z-index: 5;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

#index .sec-price .plan-wrap .col .open[aria-expanded="true"]::before {
  display: none;
}

#index .sec-price .plan-wrap .col .btn_more {
  position: relative;
  top: 0px;
  z-index: 1;
  display: block;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #index .sec-price .plan-wrap .col .btn_more {
    top: 10px;
  }
}

#index .sec-price .plan-wrap .col .btn_more_close {
  position: relative;
  top: 10px;
  z-index: 1;
  display: block;
  text-align: center;
}

#index .sec-price .plan-wrap .col .txt {
  margin-bottom: 30px;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  #index .sec-price .plan-wrap .col .txt {
    margin-bottom: 25px;
    line-height: 1.6;
  }
}

#index .sec-price .plan-wrap .col .txt:last-of-type {
  margin-bottom: 0;
}

#index .sec-price .plan-wrap .col .txt.small {
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  #index .sec-price .caution {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

#index .sec-profile {
  padding: 100px 0 150px;
}

@media screen and (max-width: 768px) {
  #index .sec-profile {
    padding: 35px 0 65px;
  }
}

#index .sec-profile .sec-ttl {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .sec-ttl {
    margin-bottom: 20px;
  }
}

#index .sec-profile .intro-wrap {
  margin-bottom: 75px;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .intro-wrap {
    margin-bottom: 35px;
  }
}

#index .sec-profile .intro-wrap .ttl-col, #index .sec-profile .intro-wrap .slider-col {
  float: left;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .intro-wrap .ttl-col, #index .sec-profile .intro-wrap .slider-col {
    float: none;
  }
}

#index .sec-profile .intro-wrap .ttl-col {
  width: 36.9%;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .intro-wrap .ttl-col {
    width: 100%;
  }
}

#index .sec-profile .intro-wrap .slider-col {
  width: 63.1%;
  padding-top: 20px;
  padding-left: 60px;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .intro-wrap .slider-col {
    width: 100%;
    padding: 0;
  }
}

#index .sec-profile .salon-slider {
  margin-bottom: 25px;
  -webkit-box-shadow: 12px 8px 26px -5px #d0d0d0;
          box-shadow: 12px 8px 26px -5px #d0d0d0;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .salon-slider {
    margin-bottom: 15px;
  }
}

#index .sec-profile .salon-slider-thum {
  padding-bottom: 28px;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .salon-slider-thum {
    padding-bottom: 30px;
  }
}

#index .sec-profile .salon-slider-thum .slick-list {
  padding-right: 60px;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .salon-slider-thum .slick-list {
    padding-right: 30px;
  }
}

#index .sec-profile .salon-slider-thum .item {
  position: relative;
  overflow: hidden;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .salon-slider-thum .item {
    margin-right: 10px;
  }
}

#index .sec-profile .salon-slider-thum .item::after {
  content: "";
  display: block;
  padding-top: 100%;
}

#index .sec-profile .salon-slider-thum .item img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

#index .sec-profile .salon-intro {
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
  padding: 15px 0;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .salon-intro {
    padding: 5px 0 13px;
    margin-bottom: 20px;
  }
}

#index .sec-profile .salon-intro dt {
  font-size: 28px;
  font-size: 2.8rem;
  width: 150px;
  float: left;
  text-align: center;
  padding-top: 5px;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .salon-intro dt {
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-size: 2.4rem;
    float: none;
    margin-bottom: 5px;
  }
}

#index .sec-profile .salon-intro dd {
  overflow: hidden;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.9;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .salon-intro dd {
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

#index .sec-profile .txt {
  margin-bottom: 25px;
  line-height: 1.8;
}

#index .sec-profile .map-area {
  position: relative;
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .map-area {
    margin-bottom: 50px;
  }
}

#index .sec-profile .map-area .add-box {
  position: absolute;
  z-index: 500;
  top: 30px;
  right: 30px;
  background: #FFF;
  width: 100%;
  max-width: 633px;
  padding: 20px 25px;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .map-area .add-box {
    position: static;
    padding: 0;
    padding-top: 35px;
    border-top: 1px solid #DFDFDF;
    background: none;
    margin-bottom: 12px;
  }
}

#index .sec-profile .map-area .add-box .add {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 10px;
  line-height: 1.8;
}

#index .sec-profile .map-area .add-box .way {
  font-size: 12px;
  font-size: 1.2rem;
}

#index .sec-profile .map-area .map {
  height: 650px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .map-area .map {
    height: 500px;
  }
}

#index .sec-profile .map-area .map iframe {
  height: 100%;
  width: 100%;
}

#index .sec-profile .profile-wrap .ttl-wrap {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .profile-wrap .ttl-wrap {
    border-top: 1px solid #222222;
    border-bottom: 1px solid #222222;
    text-align: center;
    padding: 10px 0 15px;
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 768px) {
  #index .sec-profile .profile-wrap .ttl-wrap .ttl-intro {
    padding-top: 5px;
  }
}

#index .sec-profile .profile-wrap .sec-ttl {
  font-size: 28px;
  font-size: 2.8rem;
  padding: 20px 30px;
  margin-bottom: 0;
}

@media screen and (min-width: 769px) {
  #index .sec-profile .profile-wrap .sec-ttl {
    border-top: 1px solid #222222;
    border-bottom: 1px solid #222222;
  }
}

@media screen and (max-width: 768px) {
  #index .sec-profile .profile-wrap .sec-ttl {
    font-size: 24px;
    font-size: 2.4rem;
    padding: 0;
    margin: 0;
  }
}

#index .sec-profile .profile-wrap .profile-intro {
  padding-bottom: 45px;
  margin-bottom: 45px;
  border-bottom: 1px solid #DFDFDF;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .profile-wrap .profile-intro {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 35px;
  }
}

#index .sec-profile .profile-wrap .profile-intro .img-col {
  width: 42.2%;
  float: left;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .profile-wrap .profile-intro .img-col {
    width: 100%;
    float: none;
    margin-bottom: 5px;
  }
}

#index .sec-profile .profile-wrap .profile-intro .txt-col {
  width: 53.6%;
  float: right;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .profile-wrap .profile-intro .txt-col {
    width: 100%;
    float: none;
  }
}

#index .sec-profile .profile-wrap .profile-intro .txt-col ul {
  padding-top: 20px;
}

#index .sec-profile .profile-wrap .profile-intro .txt-col ul li {
  width: 40%;
  display: inline-block;
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .profile-wrap .profile-intro .txt-col ul li {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 420px) {
  #index .sec-profile .profile-wrap .profile-intro .txt-col ul li {
    font-size: 3.3vw;
  }
}

#index .sec-profile .profile-wrap .profile-intro .txt-col ul li.w100 {
  width: 100%;
}

#index .sec-profile .profile-wrap .profile-intro .txt-col ul li br {
  display: none;
}

@media screen and (max-width: 500px) {
  #index .sec-profile .profile-wrap .profile-intro .txt-col ul li br {
    display: block;
  }
}

#index .sec-profile .profile-wrap .profile-intro.profile02 .img-col {
  float: right;
}

#index .sec-profile .profile-wrap .profile-intro.profile02 .txt-col {
  float: left;
}

#index .sec-profile .profile-wrap .profile-intro:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

#index .sec-profile .profile-wrap .profile-intro .name-ttl {
  font-size: 32px;
  font-size: 3.2rem;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .profile-wrap .profile-intro .name-ttl {
    width: 100%;
    float: none;
    margin-bottom: 0px;
    font-size: 26px;
    font-size: 2.6rem;
  }
}

#index .sec-profile .profile-wrap .profile-intro .name-ttl span {
  font-size: 16px;
  font-size: 1.6rem;
  padding-left: 15px;
}

@media screen and (max-width: 768px) {
  #index .sec-profile .profile-wrap .profile-intro .name-ttl span {
    padding-left: 7px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

#index .sec-contact {
  background: #F8F8ED;
  padding: 100px 0 180px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #index .sec-contact {
    padding: 40px 0;
  }
}

#index .sec-contact .sec-ttl {
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  #index .sec-contact .sec-ttl {
    margin-bottom: 20px;
  }
}

#index .sec-contact .contact-box {
  max-width: 520px;
  margin: 0 auto;
  background: #F0F0DF;
  padding: 20px 0;
  border-radius: 8px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #index .sec-contact .contact-box {
    padding: 15px 0;
    margin-bottom: 25px;
  }
}

#index .sec-contact .contact-box .ttl {
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  #index .sec-contact .contact-box .ttl {
    font-size: 12px;
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
}

#index .sec-contact .contact-box .tel {
  font-size: 33px;
  font-size: 3.3rem;
  color: #A38362;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  #index .sec-contact .contact-box .tel {
    font-size: 20px;
    font-size: 2rem;
  }
}

#index .sec-contact .contact-box .tel a {
  color: #A38362;
  text-decoration: underline;
}

#index .sec-contact .form-box {
  max-width: 840px;
  margin: 0 auto;
  border-radius: 8px;
  background: #FFF;
  padding: 45px 30px 80px;
  border: 1px solid #E6DCD0;
}

@media screen and (max-width: 768px) {
  #index .sec-contact .form-box {
    padding: 10px 20px 25px;
  }
}

_::-webkit-full-page-media, _:future, #index .sec-menu .menu-cat-ttl h2 {
  text-indent: 0px;
}

.form-area .contact-intro {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 25px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .form-area .contact-intro {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}

.form-area .form-table {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 20px;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .form-area .form-table {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}

.form-area .form-table tr:last-of-type th, .form-area .form-table tr:last-of-type td {
  border-bottom: none;
}

.form-area .form-table th, .form-area .form-table td {
  border-bottom: 1px solid #E6DCD0;
  padding: 30px 0;
}

@media screen and (max-width: 768px) {
  .form-area .form-table th, .form-area .form-table td {
    display: block;
    width: 100% !important;
  }
}

.form-area .form-table th {
  width: 160px;
  vertical-align: top;
  font-weight: bold;
  padding-top: 45px;
}

@media screen and (max-width: 768px) {
  .form-area .form-table th {
    border-bottom: none;
    padding: 15px 0 5px 0;
  }
}

@media screen and (max-width: 768px) {
  .form-area .form-table td {
    padding: 0px 0 15px 0;
  }
}

.form-area .form-table input[type="text"],
.form-area .form-table input[type="tel"],
.form-area .form-table input[type="email"],
.form-area .form-table textarea {
  width: 100%;
  height: 53px;
  border: 1px solid #E6DCD0;
  border-radius: 8px;
  padding: 10px 15px;
}

@media screen and (max-width: 768px) {
  .form-area .form-table input[type="text"],
  .form-area .form-table input[type="tel"],
  .form-area .form-table input[type="email"],
  .form-area .form-table textarea {
    -webkit-appearance: none;
    height: 44px;
  }
}

.form-area .form-table textarea {
  height: 180px;
}

.form-area .btn-area {
  text-align: center;
}

.form-area .btn-area .submit-btn {
  width: 240px;
  display: inline-block;
  margin: 0 10px;
}

@media screen and (max-width: 768px) {
  .form-area .btn-area .submit-btn {
    width: 100%;
    display: block;
    margin: 0 0 10px;
  }
}

.form-area .btn-area .back-btn {
  width: 188px;
  display: inline-block;
  margin: 0 10px;
}

@media screen and (max-width: 768px) {
  .form-area .btn-area .back-btn {
    width: 100%;
    display: block;
    margin: 0 0 10px;
  }
}

.form-area .btn-area .back-btn .btn {
  background: #C1C1C1;
}

.form-area .btn-area .back-btn .btn:hover {
  background: #d8d8d8;
}

.form-area .confirm-area {
  background: #F8F7F5;
  padding: 15px;
  border-radius: 8px;
}

.form-area .form-ttl {
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .form-area .form-ttl {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
}

.form-area .border-txt {
  text-align: center;
  border-top: 1px solid #DFDFDF;
  margin: 30px auto 0;
  padding-top: 25px;
  font-size: 14px;
  font-size: 1.4rem;
  max-width: 680px;
}

@media screen and (max-width: 768px) {
  .form-area .border-txt {
    font-size: 13px;
    font-size: 1.3rem;
    margin-top: 20px;
    padding-top: 15px;
  }
}

.form-modal {
  padding: 50px 30px 70px;
}

@media screen and (max-width: 768px) {
  .form-modal {
    padding: 30px 20px 40px;
  }
}

.form-modal .form-area .contact-intro {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 0px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .form-modal .form-area .contact-intro {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.form-modal .form-area .form-table input[type="text"],
.form-modal .form-area .form-table input[type="tel"],
.form-modal .form-area .form-table input[type="email"],
.form-modal .form-area .form-table textarea {
  background: #F8F7F5;
  border: none;
}

@media screen and (max-width: 768px) {
  .form-modal .form-area .form-table input[type="text"],
  .form-modal .form-area .form-table input[type="tel"],
  .form-modal .form-area .form-table input[type="email"],
  .form-modal .form-area .form-table textarea {
    -webkit-appearance: none;
  }
}

.err {
  text-align: left;
}

.err .msg {
  color: red;
}

/* ====================================================
pages
==================================================== */
.mainimage {
  border-bottom: 10px solid #8CC054;
  position: relative;
}

.mainimage .index--kv {
  width: 100%;
  height: calc(100vh - 65px);
}

@media screen and (max-width: 768px) {
  .mainimage .index--kv {
    padding-left: 0;
    height: auto;
    margin-top: 40px;
  }
}

.mainimage .index--kv li {
  height: calc(100vh - 65px);
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .mainimage .index--kv li {
    height: 50vh;
    background-size: cover;
  }
}

.mainimage .index--kv .bg01 {
  background-image: url(../images/index/kv_img01.jpg);
  background-position: top right;
}

@media screen and (max-width: 768px) {
  .mainimage .index--kv .bg01 {
    background-image: url(../images/index/kv_img01_sp.jpg);
    background-position: top center;
  }
}

.mainimage .index--kv .bg02 {
  background-image: url(../images/index/kv_img02.jpg);
  background-position: top right;
}

@media screen and (max-width: 768px) {
  .mainimage .index--kv .bg02 {
    background-image: url(../images/index/kv_img02_tb.jpg);
    background-position: bottom right;
  }
}

@media screen and (max-width: 640px) {
  .mainimage .index--kv .bg02 {
    background-image: url(../images/index/kv_img02_sp.jpg);
    background-position: bottom right;
  }
}

.mainimage .index--kv .bg03 {
  background-image: url(../images/index/kv_img03.jpg);
  background-position: top right;
}

@media screen and (max-width: 768px) {
  .mainimage .index--kv .bg03 {
    background-image: url(../images/index/kv_img03_tb.jpg);
    background-position: bottom right;
  }
}

@media screen and (max-width: 640px) {
  .mainimage .index--kv .bg03 {
    background-image: url(../images/index/kv_img03_sp.jpg);
    background-position: bottom right;
  }
}

.mainimage .index--kv--catch {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  background: linear-gradient(106deg, #F1942E 0%, #F1942E 46%, transparent 46%, transparent 100%);
}

@media screen and (max-width: 768px) {
  .mainimage .index--kv--catch {
    top: -40px;
    background: linear-gradient(167deg, #F1942E 0%, #F1942E 46%, transparent 46%, transparent 100%);
  }
}

.mainimage .index--kv--catch > div {
  position: relative;
  width: 40%;
  height: 100%;
  margin-left: 2%;
}

@media screen and (max-width: 768px) {
  .mainimage .index--kv--catch > div {
    width: 100%;
    margin-left: 0;
  }
}

.mainimage .index--kv--catch > div > div {
  position: absolute;
  left: 3.95833333333%;
}

@media screen and (min-width: 769px) {
  .mainimage .index--kv--catch > div > div {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (max-width: 768px) {
  .mainimage .index--kv--catch > div > div {
    padding: 20px 20px 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: auto;
  }
}

.mainimage .index--kv--catch > div h1 {
  margin-bottom: 40px;
  font-weight: bold;
  color: #fff;
}

@media screen and (min-width: 769px) {
  .mainimage .index--kv--catch > div h1 {
    font-size: 100px;
    line-height: 110px;
    letter-spacing: -12px;
  }
}

@media screen and (max-width: 768px) {
  .mainimage .index--kv--catch > div h1 {
    margin-bottom: 10px;
    font-size: 45px;
    line-height: 55px;
    letter-spacing: -3px;
  }
}

.mainimage .index--kv--catch > div h1:before {
  content: "";
  display: block;
  background: url(../images/index/kv_logo.png) no-repeat;
  background-size: cover;
  width: 150px;
  height: 150px;
  margin: 0 auto 70px;
}

@media screen and (max-width: 768px) {
  .mainimage .index--kv--catch > div h1:before {
    width: 100px;
    height: 100px;
    margin-bottom: 0;
    position: absolute;
    top: 40px;
    right: 40px;
  }
}

@media screen and (max-width: 640px) {
  .mainimage .index--kv--catch > div h1:before {
    width: 80px;
    height: 80px;
    margin-bottom: 0;
    position: absolute;
    top: 20px;
    right: 20px;
  }
}

.mainimage .index--kv--catch > div .txt {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .mainimage .index--kv--catch > div .txt {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .mainimage .index--kv--catch > div .btn {
    padding: 5px 20px;
  }
}

.mainimage .index--kv--catch > div .scroll {
  text-align: center;
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .mainimage .index--kv--catch > div .scroll {
    bottom: -30px;
  }
}

.mainimage .index--kv--catch > div .scroll:after {
  content: "";
  display: block;
  background: url(../images/index/scroll_line.png) no-repeat center top;
  width: 5px;
  height: 45px;
  margin: 5px auto 0;
}

.index--about {
  padding: 90px 0;
}

@media screen and (max-width: 768px) {
  .index--about {
    padding: 40px 0;
  }
}

.index--about .column3--layout {
  padding-top: 40px;
}

.index--about .column3--layout article {
  width: 30%;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .index--about .column3--layout article {
    width: 100%;
    margin-bottom: 40px;
  }
}

.index--about .column3--layout article figure {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .index--about .column3--layout article figure {
    text-align: center;
  }
}

.index--about .column3--layout article h4 {
  border-bottom: 3px solid #F1942E;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  .index--about .column3--layout article h4 {
    font-size: 18px;
  }
}

.index--howtouse {
  padding: 60px 0;
  background: #fcead5;
}

@media screen and (max-width: 768px) {
  .index--howtouse {
    padding: 40px 0;
  }
}

.index--howtouse .ttl--line {
  max-width: 608px;
  margin: 0 auto 60px;
}

@media screen and (max-width: 768px) {
  .index--howtouse .ttl--line {
    max-width: 100%;
  }
}

.index--howtouse .column2--layout {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 140px;
}

.index--howtouse .column2--layout:first-of-type {
  margin-bottom: 70px;
}

@media screen and (max-width: 990px) {
  .index--howtouse .column2--layout {
    margin-bottom: 40px !important;
  }
}

.index--howtouse .column2--layout article {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  position: relative;
}

@media screen and (max-width: 990px) {
  .index--howtouse .column2--layout article {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 0;
  }
}

.index--howtouse .column2--layout article .num {
  font-size: 237px;
  font-weight: 700;
  color: #FBE1C4;
  line-height: 157px;
  padding-right: 10px;
  float: left;
}

@media screen and (max-width: 768px) {
  .index--howtouse .column2--layout article .num {
    font-size: 150px;
    line-height: 107px;
  }
}

.index--howtouse .column2--layout article > div {
  overflow: hidden;
}

.index--howtouse .column2--layout article > div h3 {
  font-size: 30px;
  font-weight: 900;
  border-bottom: 3px solid #F1942E;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .index--howtouse .column2--layout article > div h3 {
    font-size: 20px;
  }
}

.index--howtouse .column2--layout article > div .link--color {
  color: #F1942E;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .index--howtouse .column2--layout article > div .link--color {
    font-size: 20px;
  }
}

.index--howtouse .column2--layout article > div .link--color a {
  color: inherit;
  word-break: break-word;
}

.index--howtouse .column2--layout article > div .point {
  background: #fff;
  border: 2px solid #F1942E;
  border-radius: 16px;
  position: relative;
  padding: 30px 20px 30px 30px;
  margin-top: 30px;
}

.index--howtouse .column2--layout article > div .point:before {
  content: "Point";
  position: absolute;
  top: -15px;
  left: 25px;
  background: #F1942E;
  border-radius: 100px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  max-width: 105px;
  width: 100%;
  text-align: center;
  line-height: 26px;
}

.index--howtouse .column2--layout article > div .point ul {
  color: #F1942E;
}

.index--howtouse .column2--layout article > div .point p {
  color: #F1942E;
}

@media screen and (min-width: 769px) {
  .index--howtouse .column2--layout .img--smart:nth-child(odd) {
    padding-right: 11%;
  }
  .index--howtouse .column2--layout .img--smart:nth-child(even) {
    padding-left: 11%;
  }
}

.index--howtouse .column2--layout .sp--order1 {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .index--howtouse .column2--layout .sp--order1 {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 990px) {
  .index--howtouse .column2--layout .sp--order1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (min-width: 1025px) {
  .index--howtouse .column2--layout:nth-of-type(1) article:after {
    content: "";
    display: block;
    width: 206px;
    height: 206px;
    background: url(../images/index/line01.png) no-repeat;
    position: absolute;
    bottom: -30px;
    left: 50%;
  }
}

@media screen and (min-width: 1025px) {
  .index--howtouse .column2--layout:nth-of-type(2) article:after {
    content: "";
    display: block;
    width: 206px;
    height: 206px;
    background: url(../images/index/line02.png) no-repeat;
    position: absolute;
    bottom: -110px;
    left: -50px;
  }
}

.index--howtouse .useful {
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  background: #fff;
  border: 5px solid #F1942E;
  border-radius: 22px;
  padding: 50px 120px;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 768px) {
  .index--howtouse .useful {
    padding: 25px 30px;
  }
}

.index--howtouse .useful:before {
  content: "";
  display: block;
  position: absolute;
  top: -85px;
  left: -45px;
  background: url(../images/index/fukidashi01.png) no-repeat;
  background-size: cover;
  width: 175px;
  height: 175px;
}

@media screen and (max-width: 768px) {
  .index--howtouse .useful:before {
    top: -55px;
    left: -20px;
    width: 75px;
    height: 75px;
  }
}

.index--howtouse .useful h3 {
  color: #F1942E;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .index--howtouse .useful h3 {
    font-size: 20px;
  }
}

.index--howtouse .useful h3 span {
  font-size: 36px;
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  .index--howtouse .useful h3 span {
    font-size: 25px;
  }
}

.index--howtouse .useful article:after {
  display: none !important;
}

.index--howtouse .useful article h4 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .index--howtouse .useful article h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.index--howtouse .useful .column2--layout:nth-of-type(1) {
  border-bottom: 3px solid rgba(241, 148, 46, 0.5);
  padding-bottom: 10px;
  margin-bottom: 30px !important;
}

@media screen and (min-width: 769px) {
  .index--howtouse .useful .column2--layout:nth-of-type(1) div {
    padding-left: 30px;
  }
}

@media screen and (max-width: 768px) {
  .index--howtouse .useful .column2--layout:nth-of-type(1) {
    padding-bottom: 20px;
    margin-bottom: 20px !important;
  }
}

.index--howtouse .useful .column2--layout:nth-of-type(2) {
  margin-bottom: 0;
}

@media screen and (min-width: 769px) {
  .index--howtouse .useful .column2--layout:nth-of-type(2) div {
    padding-right: 30px;
  }
}

.index--scene {
  padding: 60px 0;
}

@media screen and (max-width: 768px) {
  .index--scene {
    padding: 40px 0;
  }
}

.index--scene .ttl--line {
  max-width: 608px;
  margin: 0 auto 90px;
}

@media screen and (max-width: 768px) {
  .index--scene .ttl--line {
    margin: 0 20px 40px;
  }
}

.index--scene .column2--layout {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 90px;
}

@media screen and (max-width: 768px) {
  .index--scene .column2--layout {
    position: relative;
    margin-bottom: 0;
  }
}

.index--scene .column2--layout figure {
  width: 60%;
}

@media screen and (max-width: 768px) {
  .index--scene .column2--layout figure {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}

.index--scene .column2--layout article {
  position: relative;
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  z-index: 8;
}

@media screen and (max-width: 768px) {
  .index--scene .column2--layout article {
    position: initial;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    padding: 30px 20px;
    display: block;
  }
}

.index--scene .column2--layout article h3 {
  font-size: 28px;
  font-weight: 700;
  border-bottom: 2px solid #F1942E;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .index--scene .column2--layout article h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .index--scene .column2--layout article h3:after {
    display: none !important;
  }
}

.index--scene .column2--layout article:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.index--scene .column2--layout article:nth-child(even) {
  padding-right: 7%;
}

.index--scene .column2--layout article:nth-child(even):after {
  background: linear-gradient(66deg, transparent 0%, transparent 26%, #fff 26%, #fff 100%);
  left: -36%;
}

@media screen and (max-width: 768px) {
  .index--scene .column2--layout article:nth-child(even):after {
    background: linear-gradient(66deg, transparent 0%, transparent 81%, #fff 81%, #fff 100%);
    left: auto;
    right: 0;
    top: 0;
  }
}

.index--scene .column2--layout article:nth-child(even) h3:after {
  content: "";
  display: block;
  height: 2px;
  width: 50%;
  position: absolute;
  bottom: -2px;
  left: -22%;
  background: #F1942E;
}

.index--scene .column2--layout article:nth-child(odd) {
  padding-left: 7%;
}

.index--scene .column2--layout article:nth-child(odd):after {
  background: linear-gradient(298deg, transparent 0%, transparent 26%, #fff 26%, #fff 100%);
  right: -36%;
}

@media screen and (max-width: 768px) {
  .index--scene .column2--layout article:nth-child(odd):after {
    background: linear-gradient(298deg, transparent 0%, transparent 81%, #fff 81%, #fff 100%);
    left: 0;
    right: auto;
    top: 0;
  }
}

.index--scene .column2--layout article:nth-child(odd) h3:after {
  content: "";
  display: block;
  height: 2px;
  width: 50%;
  position: absolute;
  bottom: -2px;
  right: -23%;
  background: #F1942E;
}

.index--search {
  padding: 60px 0;
  background: #e8f3dd;
}

@media screen and (max-width: 768px) {
  .index--search {
    padding: 40px 0;
  }
}

.index--search .ttl--line {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .index--search .ttl--line {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .index--search article {
    margin-bottom: 30px;
  }
}

.index--search h3 {
  font-size: 20px;
  font-weight: 700;
  padding: 10px 0;
}

.index--search .sns--area {
  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;
}

@media screen and (max-width: 768px) {
  .index--search .sns--area {
    margin-top: 40px;
  }
}

.index--search .sns--area p {
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .index--search .sns--area p {
    font-size: 16px;
  }
}

.index--search .sns--area ul li {
  display: inline-block;
  margin-left: 20px;
}

.index--contact h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .index--contact h3 {
    font-size: 18px;
  }
}

.index--contact a {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .index--contact a {
    margin-bottom: 20px;
  }
}

.index--contact p {
  margin-top: 90px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .index--contact p {
    margin-top: 40px;
    margin-bottom: 10px;
  }
}

/* second page */
.page--head {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .page--head {
    margin-top: 15px;
    display: block;
  }
}

.page--head .page--name {
  background: #F1942E;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  padding: 0 20px;
}

@media screen and (min-width: 991px) {
  .page--head .page--name {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    max-width: 30%;
  }
}

@media screen and (max-width: 768px) {
  .page--head .page--name {
    padding: 20px;
    min-height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .page--head .page--name .sp--flex {
    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;
  }
}

.page--head .page--name .page--logo {
  width: 60%;
  margin: 0 auto 20px;
}

@media screen and (max-width: 768px) {
  .page--head .page--name .page--logo {
    margin: 0 10px 0 0;
    width: 20%;
  }
}

.page--head .page--name h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .page--head .page--name h2 {
    font-size: 18px;
  }
}

.page--head .page--name p {
  font-size: 18px;
  font-weight: 700;
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  .page--head .page--name p {
    font-size: 13px;
    padding-top: 10px;
  }
}

.page--head .page--img {
  width: 100%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.page--head .page--img img {
  width: 100%;
}

.sec {
  padding: 90px 0 0;
}

@media screen and (max-width: 768px) {
  .sec {
    padding-top: 30px;
  }
}

.sec .backhome {
  margin-top: 90px;
}

@media screen and (max-width: 768px) {
  .sec .backhome {
    margin-top: 40px;
  }
}

/* terms */
@media screen and (max-width: 768px) {
  .sec--terms,
  .sec--privacy {
    font-size: 13px;
    line-height: 24px;
  }
}

.sec--terms h3,
.sec--privacy h3 {
  margin: 60px 0 20px;
}

@media screen and (max-width: 768px) {
  .sec--terms h3,
  .sec--privacy h3 {
    margin: 30px 0 10px;
  }
}

.sec--terms .date,
.sec--privacy .date {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .sec--terms .date,
  .sec--privacy .date {
    margin-top: 30px;
  }
}

/* about */
.sec--about:first-of-type {
  background: #fef4e9;
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .sec--about:first-of-type {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .sec--about {
    font-size: 13px;
    line-height: 24px;
  }
}

.sec--about .main--catch {
  text-align: center;
  font-size: 70px;
  font-weight: 900;
  line-height: normal;
  color: #F1942E;
  padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .sec--about .main--catch {
    font-size: 30px;
    padding-bottom: 20px;
  }
}

.sec--about .main--copy {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 40px;
  color: #F1942E;
  padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .sec--about .main--copy {
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 30px;
  }
}

.sec--about .about--belief {
  border: 4px solid #F1942E;
  border-radius: 20px;
  background: #fff;
  padding: 5% 10% 4%;
}

@media screen and (max-width: 768px) {
  .sec--about .about--belief {
    border-width: 2px;
    border-radius: 10px;
    padding: 20px;
  }
}

.sec--about .ttl--about {
  background: #F1942E;
  text-align: center;
  color: #fff;
  font-size: 24px;
  padding: 10px 30px;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .sec--about .ttl--about {
    font-size: 18px;
    padding: 10px;
    margin-bottom: 25px;
  }
}

.sec--about .tbl--belief {
  width: 100%;
}

.sec--about .tbl--belief tr:not(:last-of-type) th, .sec--about .tbl--belief tr:not(:last-of-type) td {
  border-bottom: 1px solid #F1942E;
}

.sec--about .tbl--belief th, .sec--about .tbl--belief td {
  padding: 25px 40px;
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  .sec--about .tbl--belief th, .sec--about .tbl--belief td {
    padding: 10px;
  }
}

.sec--about .tbl--belief th {
  white-space: nowrap;
}

.sec--about .tbl--belief td p {
  padding-bottom: 20px;
}

.sec--about .tbl--belief td span {
  display: block;
  padding-bottom: 10px;
}

/* owner */
.sec--owner {
  padding: 90px 0;
}

@media screen and (max-width: 768px) {
  .sec--owner {
    padding: 40px 0;
  }
}

.sec--owner .column3--layout {
  padding-top: 140px;
}

@media screen and (max-width: 768px) {
  .sec--owner .column3--layout {
    padding-top: 0;
  }
}

.sec--owner .column3--layout article {
  width: 30%;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .sec--owner .column3--layout article {
    width: 100%;
    margin-bottom: 0;
    padding-top: 60px;
    overflow: hidden;
  }
}

.sec--owner .column3--layout article figure {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .sec--owner .column3--layout article figure {
    display: none;
  }
}

.sec--owner .column3--layout article h4 {
  border-bottom: 3px solid #F1942E;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 900;
  position: relative;
}

@media screen and (max-width: 768px) {
  .sec--owner .column3--layout article h4 {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .sec--owner .column3--layout article h4:after {
    content: "";
    display: block;
    width: 130px;
    height: 70px;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -50px;
    right: -20px;
  }
}

@media screen and (max-width: 768px) {
  .sec--owner .column3--layout article h4.img01:after {
    background-image: url(../images/owner/img01.png);
    right: -12px;
  }
}

@media screen and (max-width: 768px) {
  .sec--owner .column3--layout article h4.img02:after {
    background-image: url(../images/owner/img02.png);
  }
}

@media screen and (max-width: 768px) {
  .sec--owner .column3--layout article h4.img03:after {
    background-image: url(../images/owner/img03.png);
  }
}

.sec--owner .column2--layout .left--area,
.sec--owner .column2--layout .right--area {
  width: 48%;
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .sec--owner .column2--layout .left--area,
  .sec--owner .column2--layout .right--area {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .sec--owner .column2--layout .left--area {
    margin-top: 20px;
  }
}

.sec--owner .column2--layout .left--area .clearfix {
  margin-bottom: 20px;
}

.sec--owner .column2--layout .left--area .search--area {
  float: left;
  width: 60%;
  margin-right: 30px;
}

.sec--owner .column2--layout .left--area .search--area h4 {
  background: #F1942E;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  padding: 7px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .sec--owner .column2--layout .left--area .search--area h4 {
    font-size: 16px;
  }
}

.sec--owner .column2--layout .left--area .search--area + div {
  overflow: hidden;
}

.sec--owner .column2--layout .left--area .txt--area {
  background: #fff;
  border-radius: 8px;
  padding: 15px 20px;
}

.sec--owner .column2--layout .right--area {
  background: #fff;
  border: 1px solid #F1942E;
  border-radius: 8px;
  padding: 15px 20px;
}

@media screen and (max-width: 768px) {
  .sec--owner .column2--layout .right--area {
    margin-top: 50px;
  }
}

.sec--owner .column2--layout .right--area .ttl--fukidashi {
  font-size: 24px;
  font-weight: 700;
  color: #F1942E;
  padding: 0 0 10px 90px;
  margin-bottom: 30px;
  position: relative;
  border-bottom: 2px solid #F1942E;
}

@media screen and (max-width: 768px) {
  .sec--owner .column2--layout .right--area .ttl--fukidashi {
    font-size: 16px;
    padding-left: 45px;
    margin-bottom: 10px;
  }
}

.sec--owner .column2--layout .right--area .ttl--fukidashi:before {
  content: "";
  display: block;
  background-image: url(../images/owner/fukidashi.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 115px;
  height: 115px;
  position: absolute;
  left: -25px;
  top: -80px;
}

@media screen and (max-width: 768px) {
  .sec--owner .column2--layout .right--area .ttl--fukidashi:before {
    width: calc(115px / 2);
    height: calc(115px / 2);
    top: -40px;
  }
}

.sec--owner .column2--layout .right--area h5 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .sec--owner .column2--layout .right--area h5 {
    font-size: 16px;
  }
}

.sec--owner .column2--layout .right--area p:not(:last-child) {
  margin-bottom: 30px;
}

.sec--owner.bg--orange {
  margin-bottom: 40px;
}

.sec--owner.bg--green .column4--layout {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .sec--owner.bg--green .column4--layout {
    margin-top: 30px;
  }
}

.sec--owner.bg--green .column4--layout article {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
}

.sec--owner.bg--green .column4--layout article h4 {
  font-size: 18px;
  font-weight: 700;
  color: #8CC054;
  text-align: center;
  border-bottom: 2px solid #8CC054;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.sec--owner.bg--green .column4--layout article .list--disc {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .sec--owner.bg--green .column4--layout article .list--disc {
    height: auto !important;
  }
}

.sec--owner.bg--green .column4--layout article img {
  width: 100%;
}

.sec--owner2 {
  padding-bottom: 0;
}

.sec--owner2 h3 {
  text-align: center;
  color: #F1942E;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 45px;
}

@media screen and (max-width: 768px) {
  .sec--owner2 h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.sec--owner2 p {
  margin-bottom: 20px;
}

.txt--center {
  text-align: center;
}

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

.orange {
  color: #F1942E;
}

.green {
  color: #8CC054;
}

i {
  font-style: normal;
}

.bg--orange {
  background: #fcead5;
}

.bg--green {
  background: #e8f3dd;
}
/*# sourceMappingURL=styles.css.map */