@charset "utf-8";
/*
Theme Name: Abundance
Version: 1.0.0
*/

/* ========================================================
  ROOT
========================================================= */
:root {
  --color-green: #5ab432;
}

/* ========================================================
  RESET
========================================================= */
* {
	padding: 0px;
	margin: 0px;
	outline: none;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	border: 0px;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
}

body {
	color: #2d2d2d;
	cursor: default;
  font-family: YakuHanRPs, "LINE Seed JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-size: 19px;
	line-height: 1.8;
	word-wrap: break-word;
  letter-spacing: .05em;
  text-align: justify;
}

img {
	max-width:100%;
	height:auto;
	vertical-align: bottom;
	border: 0;
}

a {
	color: #007dd4;
  text-decoration: none;

}
a:hover,
a:hover img {
	opacity: .8;
	-webkit-opacity: .8;
	-moz-opacity: .8;
}

a img {
  transition: all .3s;
}

b {
  font-weight: 700;
}
i {
  font-style: normal;
  font-weight: 300;
}

/* ========================================================
  LAYOUT
========================================================= */
/*  header ------------------  */
.header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transition: all .3s;
}
.header__inner {
  width: 95%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin: 0 auto;
  align-items: center;
  height: 80px;
  transition: all .3s;
}
.logo {
  width: 204px;
  line-height: 1;
}
@media only screen and (max-width: 600px) {
.header__inner {
  height: 50px;
}
.logo {
  width: 120px;
}
}


/*  nav-global ------------------  */
.global-nav {
  width: 100%;
  flex: 1;
}
.global-nav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: right;
  margin: 0 auto;
  list-style: none;
  gap: 25px;
}
.global-nav li.global-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0;
  margin: 0;
}
.global-nav li.global-nav__item a {
  color: #2d2d2d;
  text-decoration: none;
  font-size: 20px;
  display: block;
  position: relative;
  text-align: center;
  width: 100%;
  line-height: 1.8;
}
.global-nav li.global-nav__item a:hover {
  opacity: 1;
}

.global-nav__dropdown-menu {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: -10px;
  white-space: nowrap;
  list-style: none;
  background-color: rgba(0, 125, 212, 0.8);
  padding: 10px 20px;
}
.global-nav .global-nav__item:hover .global-nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: .8s;
  transition:  .8s;
}
.global-nav li.global-nav__item .global-nav__dropdown-menu a::after {
  display: none;
}
.global-nav .global-nav__item .global-nav__dropdown-menu a {
  font-size: 15px;
  font-weight: 400;
  display: block;
  text-align: left;
  padding: 10px 0 5px 10px;
  position: relative;
}
.global-nav .global-nav__item .global-nav__dropdown-menu a::before {
  content: "";
  width: 5px;
  height: 1px;
  display: block;
  background-color: #fff;
  position: absolute;
  top: 60%;
  left: 0;
  transform: translateY(-60%);
  -webkit-transform: translateY(-60%);
}
.global-nav .global-nav__item .global-nav__dropdown-menu a:hover {
  color: #fff;
  opacity: .8;
}
.global-nav .global-nav__item .global-nav__dropdown-menu a:hover::before {
  background-color: #fff;
}

.openbtn {
  display: none;
}


.header {
  z-index: 999;
  position: fixed;
  top: 0;
}
html.fixed {
  height: 100%;
  overflow: hidden;
}
.global-nav {
	position: absolute;
	z-index: 998;
	width: 30em;
  max-width: 100%;
	height: auto;
  top: 0;
  right: 0;;
  padding: 0;
	transition: all .5s;
  opacity: 0;
}
.global-nav.panelactive {
  opacity: 1;
}
.global-nav__wrap {
  background-color: #fffbe5ed;
  position: absolute;
  z-index: 998;
  width: 95%;
  height: auto;
  padding: 60px 20px 60px;
  display: none;
  overflow: auto;
  right: 0;
}
.panelactive .global-nav__wrap {
  display: block;
}
.global-nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  position: static;
  width: 100%;
  white-space: nowrap;
  padding: 0px 20px 10px;
  background-color: inherit;
}
.global-nav li.global-nav__item {
  width: 100%;
  flex-wrap: wrap;
  justify-content: left;
}
.global-nav li.global-nav__item a {
  padding: 15px 0 15px;
  text-align: left;
  text-shadow: none;
  color: #2d2d2d;
}
.global-nav li.global-nav__item a:hover,
.global-nav .global-nav__item .global-nav__dropdown-menu a:hover {
  opacity: .8;
}
.global-nav li.global-nav__item > a {
  border-bottom: 1px solid #d2cdc8;
  font-family: var(--font-serif);
  font-size: 17px;
}
.global-nav__item a::before {
  content: none;
}
.global-nav__item a::before {
  background-size: 50px 38px;
  width: 50px;
  height: 38px;
}
.global-nav__item ul.sub-nav {
  width: 100%;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: all .3s;
}
.global-nav__item ul.sub-nav a {
  font-size: 15px;
}
.has-child.open .sub-nav {
  display: block;
  max-height: 500px;
}
.toggle {
  display: flex!important;
  align-items: center;
}
.toggle::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: -2px;
  margin-left: 12px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform .3s;
}
.has-child.open > .toggle::after {
  transform: rotate(225deg);
}
.global-nav__item .brown {
  color: #b4875a;
}
.global-nav__item .blue {
  color: #2d2d2d;
}
.openbtn {
  position: absolute;
	z-index: 9999;/*ボタンを最前面に*/
	top: 0;
	right: 10px;
	cursor: pointer;
	width: 60px;
	height: 80px;
  display: block;
}
.openbtn span{
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 9px;
	height: 3px;
	border-radius: 2px;
	background-color: #2d2d2d;
	width: 70%;
}
.openbtn span:nth-of-type(1) {
  top:20px;
  transform-origin: 60% 0;
}
.openbtn span:nth-of-type(2) {
  top:35px;
}
.openbtn span:nth-of-type(3) {
  top:50px;
  transform-origin: 80% 0;
}
.openbtn.active span:nth-of-type(1) {
  top: 25px;
  left: 9px;
  transform: translateY(6px) rotate(-45deg);
  width: 70%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3){
  top: 50px;
  left: 9px;
  transform: translateY(-6px) rotate(45deg);
  width: 70%;
}
@media only screen and (max-width: 600px) {
.openbtn {
	width: 50px;
	height: 50px;
  right: 0;
}
.openbtn span{
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 9px;
	height: 3px;
	border-radius: 2px;
	background-color: #2d2d2d;
	width: 60%;
}
.openbtn span:nth-of-type(1) {
  top:15px;
  transform-origin: 60% 0;
}
.openbtn span:nth-of-type(2) {
  top:25px;
}
.openbtn span:nth-of-type(3) {
  top:35px;
  transform-origin: 75% 0;
}
.openbtn.active span:nth-of-type(1) {
  top: 15px;
  left: 9px;
  transform: translateY(6px) rotate(-45deg);
  width: 60%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3){
  top: 35px;
  left: 9px;
  transform: translateY(-6px) rotate(45deg);
  width: 60%;
}
}

.line-contact {
  display: block;
  border: 2px solid #00b900;
  padding: 2px 10px;
  margin-left: auto;
  margin-right: 60px;
}
.line-contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #00b900;
}
.line-contact img {
  width: 27px;
  height: 27px;
}
@media only screen and (max-width: 600px) {
.line-contact {
  margin-right: 50px;
  padding: 2px 6px;
}
.line-contact a {
  font-size: 13px;
  gap: 5px;
}
.line-contact img {
  width: 20px;
  height: 20px;
}
}


/*  contents ------------------------  */
.contents {
  margin-top: 80px;
}
@media only screen and (max-width: 600px) {
.contents {
  margin-top: 50px;
}
}

.mainvisual {
  background-image: url(images/main_bg_2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-bottom: 100px;
}
.mainvisual .mainvisual__inenr {
  width: 95%;
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
}
.mainvisual .mainvisual__inenr_2 {
  width: 95%;
  max-width: 920px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.mainvisual__mark {
  max-width: 225px;
}
.mainvisual__lead_1 {
  max-width: 120px;
  position: absolute;
  right: 60px;
  top: 45px;
}
.mainvisual__lead_2 {
  max-width: 630px;
  margin: 0 auto;
  padding-top: 10em;
}
@media only screen and (max-width: 600px) {
.mainvisual {
  background-image: url(images/main_bg_sp.webp);
  background-size: cover;
  padding-bottom: 0;
}
.mainvisual__lead_1 {
  max-width: 26px;
  right: 60px;
}
.mainvisual__mark {
  max-width: 150px;
}
.mainvisual__lead_2 {
  padding-top: 16em;
}
}

.btn-1col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 440px;
  margin: 0 auto;
}
.btn-2col {
  display: flex;
  gap: 20px;
  max-width: 910px;
  width: 95%;
  margin: 0 auto;
}
@media only screen and (max-width: 600px) {
.btn-1col {
  gap: 10px;
}
.btn-2col {
  flex-direction: column;
}
}

.dot-top {
  position: relative;
  display: inline-block;
  padding-top: 12px;
}
.dot-top::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
}
@media only screen and (max-width: 600px) {
.dot-top {
  padding-top: 10px;
}
.dot-top::before {
  font-size: 7px;
}
}

.green {
  color: #5ab432;
}

.marker {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.marker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 0.6em;
  background: linear-gradient(90deg, #ffdc00, #ffeebb);
  z-index: -1;
}

/*  heading ------------------  */
.heading-lv2 {
  word-break: break-word;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 1em;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0;
}
.heading-lv2 b {
  font-size: 44px;
}
.heading-lv2 img {
  width: 80px;
  margin-right: 10px;
}
.heading-lv2-2 {
  word-break: break-word;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 1em;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0;
}
.heading-lv2-underline {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 1em;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0;
  border-bottom: 2px solid #000;
  display: inline-block;
  margin: 0 auto 1em;
}
@media only screen and (max-width: 800px) {
.heading-lv2 {
  font-size: 24px;
}
.heading-lv2 b {
  font-size: 36px;
}
.heading-lv2 img {
  width: 60px;
}
.heading-lv2-2 {
  font-size: 32px;
}
.heading-lv2-underline {
  font-size: 24px;
}
}
@media only screen and (max-width: 600px) {
.heading-lv2 {
  font-size: 21px;
}
.heading-lv2 b {
  font-size: 32px;
  letter-spacing: -.05em;
}
.heading-lv2 img {
  width: 50px;
}
.heading-lv2-2 {
  font-size: 22px;
}
.heading-lv2-underline {
  font-size: 18px;
}
}
@media only screen and (max-width: 390px) {
.heading-lv2 {
  font-size: 20px;
}
}

.underline {
  display: inline;
  border-bottom: 3px solid var(--color-green);
  padding-bottom: 0.02em;
  vertical-align: baseline;
}
_::-webkit-full-page-media, _:future, :root .underline {
    padding-bottom: 0;
}
@media only screen and (max-width: 600px) {
.underline {
  display: inline;
  border-bottom: 3px solid var(--color-green);
}
}

.heading-Jagged {
  font-size: 33px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  padding-bottom: 25px;
  background: url(images/line_jagged.svg) repeat-x left bottom;
  background-size: 20px;
  margin: 0 auto 30px;
  display: table;
}
.heading-underline {
  font-size: 29px;
  font-weight: 700;
  display: inline;
  border-bottom: 2px solid var(--color-green);
  padding-bottom: 5px;
	line-height: 2
}
.ex-mark {
  font-size: 34px;
  display: inline-flex;
  position: relative;
}
.ex-mark::before {
  content: "";
  background: url(images/scene_emark.webp) no-repeat 0px 5px;
  width: 25px;
  height: 36px;
  display: block;
  background-size: contain;
  transform: rotate(340deg);
}
.ex-mark::after {
  content: "";
  background: url(images/scene_emark.webp) no-repeat 15px 5px;
  width: 25px;
  height: 36px;
  display: block;
  background-size: contain;
  transform: rotate(25deg);
}
@media only screen and (max-width: 800px) {
.heading-Jagged {
  font-size: 28px;
  padding-bottom: 20px;
}
.heading-underline {
  font-size: 24px;
}
.ex-mark {
  font-size: 30px;
}
}
@media only screen and (max-width: 600px) {
.heading-Jagged {
  background-size: 12px;
  font-size: 25px;
  padding-bottom: 12px;
}
.heading-underline {
  font-size: 19px;
}
.ex-mark {
  font-size: 24px;
}
.ex-mark::before {
  width: 14px;
  height: 30px;
}
.ex-mark::after {
  width: 20px;
  height: 30px;
  background-position-y: 5px;
  background-position-x: 8px;
}
}

.section.section--onayami {
  margin-top: -50px;
  padding-top: 0;
}
@media only screen and (max-width: 600px) {
.section.section--onayami {
  margin-top: 25px;
}
}
.onayami-1 {
  background-image: url(images/onayami_bg.webp);
  background-size: cover;
  margin-bottom: 1em;
  padding: 2em 0 0;
}
.onayami-1::after {
  content: "";
  background-image: url(images/onayami_bg2.svg);
  background-size: cover;
  background-position: bottom center;
  width: 100%;
  height: 80px;
  display: block;
}
.onayami-1 ul {
  font-size: 28px;
  background-image: url(images/onayami_img_1.webp);
  background-size: 290px;
  background-position: 90% 90%;
  background-repeat: no-repeat;
  list-style:none;
  margin-left: 0;
  padding: 0 5% 2em;
}
.onayami-1 ul li{
  background:url(images/list_check.svg) no-repeat 0 15px;
  background-size: auto 20px;
  padding-left: 30px;
}
@media only screen and (max-width: 800px) {
.onayami-1 ul {
  background-size: 226px;
  font-size: 22px;
  padding: 0 3% 2em;
}
.onayami-1 ul li {
  background-size: auto 14px;
  padding-left: 20px;
}
}
@media only screen and (max-width: 600px) {
.onayami-1::after {
  height: 40px;
}
.onayami-1 ul {
  background-size: 190px;
  font-size: 16px;
  padding: 0 3% 2em;
}
.onayami-1 ul li {
  background-size: auto 14px;
  background-position: 0 7px;
  padding-left: 20px;
}
}
.onayami-2 {
  background-image: url(images/onayami_ashiura_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 2em;
}
.onayami-2 h3 {
  font-size: 33px;
  color: #fff;
  background-image: linear-gradient(90deg, #2d2d2d, #808080);
  text-align: center;
}
.onayami-2__inner {
  padding: 20px 5% 20px 5%;
  text-align: center;
}
.onayami-2 ul {
  margin: 0 0 20px 0;
  list-style: none;
  display: flex;
  gap: 15px;
}
.onayami-2 li {
  width: calc(25% - 15px);
}
.onayami-2 li figcaption {
  text-align: center;
  line-height: 1.3;
  margin-top: 10px;
}

.onayami-3 {
  display: flex;
  align-items: stretch;
}
.onayami-3 .onayami-3__bad {
  width: 50%;
  display: flex;
  flex-direction: column;
  background-color: #575757;
  border-radius: 20px 20px 0 0;
}
.onayami-3 .onayami-3__good {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.onayami-3 .onayami-3__bad .bad__inner {
  background-color: #575757;
  border-bottom: 2px solid #575757;
  border-left: 2px solid #575757;
  border-right: 2px solid #575757;
  padding: 20px;
}
.onayami-3 .onayami-3__good .good__inner {
  background-color: #fff;
  border-bottom: 2px solid #5ab432;
  border-left: 2px solid #5ab432;
  border-right: 2px solid #5ab432;
  padding: 20px;
}
.onayami-3 ul {
  list-style: none;
  font-size: 25px;
  font-weight: 600;
  margin-left: .5em;
}
.onayami-3 ul li {
  display: flex;
  align-items: center;
  line-height: 1.3;
  margin-bottom: .5em;
}
.onayami-3 .onayami-3__bad ul {
  color: #fff;
}
.onayami-3 .onayami-3__bad ul li::before{
  content: "▲";
  color: #fff;
  font-size: .5em;
  margin-right: 0.35em;
}
.onayami-3 .onayami-3__good ul li::before{
  content: "●";
  color: #5ab432;
  font-size: .5em;
  margin-right: 0.35em;
}
.onayami-3 .onayami-3__bad h3 {
  font-size: 44px;
  font-weight: 800;
  text-align: center;
  background-color: #2d2d2d;
  color: #fff;
  border-radius: 20px 20px 0 0;
}
.onayami-3 .onayami-3__good h3 {
  font-size: 44px;
  font-weight: 800;
  text-align: center;
  background-color: #5ab432;
  color: #ffdc00;
  border-radius: 20px 20px 0 0;
}
.onayami-3 img {
  max-width: 330px;
  width: 100%;
  margin: 0 auto 30px;
  display: block;
}
@media only screen and (max-width: 800px) {
.onayami-2 h3 {
  font-size: 23px;
  padding: 5px;
}
.onayami-3 .onayami-3__bad h3,
.onayami-3 .onayami-3__good h3 {
  font-size: 34px;
}
.onayami-3 ul {
  font-size: 21px;
  margin-left: 0;
}
}
@media only screen and (max-width: 600px) {
.onayami-2 {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.onayami-2 ul {
  flex-wrap: wrap;
  gap: 10px;
}
.onayami-2 li {
    width: calc(50% - 10px);
}
.onayami-2 li figcaption {
  font-size: 14px;
  margin-bottom: 10px;
}
.onayami-3 .onayami-3__bad h3,
.onayami-3 .onayami-3__good h3 {
  font-size: 19px;
  padding: 5px;
}
.onayami-3 ul {
  font-size: 13px;
}
.onayami-3 img {
  margin: 0 auto 15px;
}
.onayami-3 .onayami-3__good .good__inner,
.onayami-3 .onayami-3__bad .bad__inner {
  padding: 10px;
}
}
@media only screen and (max-width: 390px) {
.onayami-2 li figcaption {
  font-size: 13px;
}
}

.section.section--taping {
  background-color: #ffdc00;
}
.taping-1 {
  background-color: #fff;
  border-radius: 20px;
  padding: 7%;
}
.taping-check-1 {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.taping-check-1__img {
  width: 240px;
}
.taping-check-1__txt {
  flex: 1;
}
.section--taping img.taping-check {
  width: 120px;
}
.section--taping h3 {
  font-size: 35px;
  color: #5f3714;
  line-height: 1.2;
  margin-bottom: 10px;
}
.section--taping p {
  font-size: 24px;
}
.taping-check-1__txt p .number {
  width: 24px;
  vertical-align: text-bottom;
}
.taping-check-2 {
  margin-bottom: 50px;
}
.taping-check-2 img {
  max-width: 630px;
  width: 100%;
}
.taping-check-3 {
  margin-bottom: 50px;
  background-image: url(images/taping_2_1.webp);
  background-repeat: no-repeat;
  background-size: 46%;
  background-position: bottom right;
  display: grid;
}
.section--taping .taping-check-3__txt h3 {
  color: #2d2d2d;
  line-height: 1.8;
  margin-bottom: 4em;
}
.section--taping .taping-check-3__txt h3 i {
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -.05em;
}
@media only screen and (max-width: 800px) {
.taping-check-1__img {
  width: 180px;
}

.section--taping img.taping-check {
  width: 80px;
}
.section--taping p {
  font-size: 21px;
}
.section--taping h3 {
  font-size: 26px;
}
.section--taping .taping-check-3__txt h3 i {
  font-size: 21px;
}
.taping-check-1__txt p .number {
  width: 21px;
}
.taping-check-2 {
  margin-bottom: 20px;
}
.taping-check-3 {
  margin-bottom: 20px;
}
}
@media only screen and (max-width: 600px) {
.taping-1 {
  padding: 4%;
}
.taping-check-1__img {
  width: 110px;
}
.section--taping img.taping-check {
  width: 60px;
}
.section--taping p {
  font-size: 15px;
}
.section--taping h3 {
  font-size: 18px;
}
.section--taping .taping-check-3__txt h3 i {
  font-size: 16px;
}
.taping-check-1__txt p .number {
  width: 18px;
}
}

.usage-img {
  margin-bottom: 40px;
}
@media only screen and (max-width: 600px) {
.usage-img {
  margin-bottom: 10px;
}
}

.section.section--kasahara_method {
  padding-top: 0;
  padding-bottom: 0;
}
.section--kasahara_method .heading-lv2.heading-bg-green {
  background-color: var(--color-green);
  color: #fff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 20px;
}
.kasahara_method__profile {
  display: flex;
  align-items: center;
  max-width: 700px;
  width: 95%;
  margin: 0 auto 2em;
}
.kasahara_method__profile .profile-info {
  width: 66%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  align-items: center;
  position: relative;
}
.kasahara_method__profile .profile-info .profile-img {
  width: 37%;
}
.kasahara_method__profile .profile-info .profile-img img {
  margin-left: 0;
}
.kasahara_method__profile .profile-info .profile-name .name-1 {
  background-color: var(--color-green);
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
  padding: 3px 10px;
  display: inline-block;
  line-height: 1.2;
}
.kasahara_method__profile .profile-info .profile-name {
  flex: 1;
}
.kasahara_method__profile .profile-info .profile-name h3 {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.3;
}
.kasahara_method__profile .profile-info .profile-name .name-2 {
  font-size: 22px;
  color: var(--color-green);
}
.kasahara_method__profile .profile-book {
  width: 34%;
}
.kasahara_method__profile .profile-book img {
  margin-left: -10px;
}
.kasahara_method__profile .profile-info .profile-name__under {
  width: 100%;
  border-top: 1px solid var(--color-green);
  padding-top: 20px;
}
.kasahara_method__profile .profile-info .profile-name__under img {
  max-width: 180px;
  width: 100%;
}
.kasahara_method__profile .profile-info .profile-name__under p {
  font-size: 22px;
  line-height: 1.6;
}
@media only screen and (max-width: 800px) {
.kasahara_method__profile .profile-info .profile-name .name-1 {
  font-size: 18px;
}
.kasahara_method__profile .profile-info .profile-name h3 {
  font-size: 40px;
}
.kasahara_method__profile .profile-info .profile-name .name-2 {
  font-size: 18px;
}
.kasahara_method__profile .profile-info .profile-name__under p {
  font-size: 22px;
  line-height: 1.6;
}
.kasahara_method__profile .profile-info .profile-name__under img {
  max-width: 90px;
}
.kasahara_method__profile .profile-info .profile-name__under p {
  font-size: 18px;
}
}
@media only screen and (max-width: 600px) {
.kasahara_method__profile {
  width: 75%;
  width: 90%;
}
.kasahara_method__profile .profile-info {
  gap: 10px 10px;
}
.kasahara_method__profile .profile-info .profile-name .name-1 {
  font-size: 14px;
  margin-bottom: 5px;
}
.kasahara_method__profile .profile-info .profile-name h3 {
  font-size: 27px;
  line-height: 1.1;
}
.kasahara_method__profile .profile-info .profile-name .name-2 {
  font-size: 12px;
}
.kasahara_method__profile .profile-info .profile-name__under {
  padding-top: 10px;
}
.kasahara_method__profile .profile-info .profile-name__under p {
  font-size: 12px;
}
.kasahara_method__profile .profile-book img {
  margin-left: -10px;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 135px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.section--kasahara_method .heading-lv2 {
  font-size: 18px;
}
.section--kasahara_method .heading-lv2 b {
  font-size: 22px;
}
}

.section--kasahara_method .kasahara_method-wrap {
  background-color: #f5ebdc;
  padding: 2.5em 0 4em;
}
.section--kasahara_method .kasahara_method-wrap .heading-lv2-2 {
  font-size: 33px;
}
.section--kasahara_method .kasahara_method-wrap .heading-lv2 {
  font-size: 44px;
  margin-bottom: .5em;
}
.section--kasahara_method .kasahara_method-wrap .heading-lv2 b {
  font-size: 52px;
}
@media only screen and (max-width: 800px) {
.section--kasahara_method .kasahara_method-wrap .heading-lv2-2 {
  font-size: 26px;
}
.section--kasahara_method .kasahara_method-wrap .heading-lv2 {
  font-size: 34px;
}
.section--kasahara_method .kasahara_method-wrap .heading-lv2 b {
  font-size: 42px;
}
}
@media only screen and (max-width: 600px) {
.section--kasahara_method .kasahara_method-wrap .heading-lv2-2 {
  font-size: 16px;
  letter-spacing: -.05em;
}
.section--kasahara_method .kasahara_method-wrap .heading-lv2 {
  font-size: 18px;
}
.section--kasahara_method .kasahara_method-wrap .heading-lv2 b {
  font-size: 24px;
}
}
.kasahara_method__theory {
  max-width: 740px;
  margin: 0 auto;
}
.triangle_down {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 29px solid transparent;
  border-left: 29px solid transparent;
  border-top: 32px solid #b4823c;
  border-bottom: 0;
  margin: 0 auto;
}
@media only screen and (max-width: 600px) {
.triangle_down {
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
  border-top: 20px solid #b4823c;
}
}
.kasahara_method__point {
  background-color: #fff;
  border-radius: 20px;
  margin: 2em auto;
  padding: 8%;
}
.kasahara_method__point .heading-point {
  font-size: 38px;
  color: #fff;
  background-color: #b4823c;
  border-radius: 100px;
  text-align: center;
  padding: 0 10px;
}
.kasahara_method__point .heading-point b {
  font-size: 48px;
}
@media only screen and (max-width: 800px) {
.kasahara_method__point .heading-point {
  font-size: 32px;
}
.kasahara_method__point .heading-point b {
  font-size: 42px;
}
}
@media only screen and (max-width: 600px) {
.kasahara_method__point {
  padding: 4%;
}
.kasahara_method__point .heading-point {
  font-size: 18px;
  line-height: 1.5;
}
.kasahara_method__point .heading-point b {
  font-size: 26px;
}
}
.point-item {
  margin: 2em 0 3em;
}
.point-item:last-child{
  margin: 2em 0 0;
}
.point-item .point-number {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  color: #b4823c;
  border: 2px solid #b4823c;
  padding: 2px 1em;
  display: inline-block;
}
.point-item h4 {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.4;
  color: #b4823c;
  margin: 20px 0;
}
@media only screen and (max-width: 800px) {
.point-item .point-number {
  font-size: 20px;
}
.point-item h4 {
  font-size: 25px;
}
}
@media only screen and (max-width: 600px) {
.point-item .point-number {
  font-size: 14px;
}
.point-item h4 {
  font-size: 16px;
  margin: 10px 0;
}
}
.point-item .point-item__inner {
  display: flex;
  gap: 25px;
}
@media only screen and (max-width: 600px) {
.point-item .point-item__inner {
  gap: 15px;
}
}
.point-item .point-item__inner .point-item__txt {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.point-item .point-item__inner .point-item__img {
  width: 46%;
}
.point-item--3.point-item .point-item__inner .point-item__img {
  width: 50%;
}
.point-item--5.point-item .point-item__inner .point-item__img {
  width: 37%;
}
.product-nav {
  display: flex;
  gap: 20px;
  flex-direction: column;
  font-size: 27px;
  font-family: 'Noto Sans JP';
  font-weight: 600;
  margin-bottom: 2em;
}
@media only screen and (max-width: 600px) {
.product-nav {
  font-size: 14px;
}
}
#product_list_1 {
  padding-bottom: 70px;
  border-bottom: 1px solid #2d2d2d;
}
#product_list_2 {
  margin-top: 70px;
}
@media only screen and (max-width: 600px) {
#product_list_1 {
  padding-bottom: 30px;
}
#product_list_2 {
  margin-top: 60px;
}
}
.product-nav a.list-1 {
  color: #b4823c;
  background-image: url(images/icon_aroow_1.svg);
  background-size: 30px;
  background-position: center right;
  background-repeat: no-repeat;
  padding-right: 1.5em;
}
.product-nav a.list-2 {
  color: #325573;
  background-image: url(images/icon_aroow_2.svg);
  background-size: 30px;
  background-position: center right;
  background-repeat: no-repeat;
  padding-right: 1.5em;
}
@media only screen and (max-width: 600px) {
.product-nav a.list-1 {
  background-size: 16px;
}
.product-nav a.list-2 {
  background-size: 16px;
}
}
.product-list {
  display: flex;
  gap: 20px;
  margin: 30px auto 50px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-list .product-list__item {
  width: calc(50% - 10px);
}
.product-list .product-list__item figcaption {
  font-size: 24px;
}
@media only screen and (max-width: 600px) {
.product-list {
  gap: 10px;
}
.product-list .product-list__item {
  width: calc(50% - 5px);
}
.product-list .product-list__item figcaption {
  font-size: 14px;
}
}
.product-info {
  border: 1px solid #2d2d2d;
  padding: 6% 10%;
  font-family: 'Noto Sans JP';
  font-size: 18px;
}
@media only screen and (max-width: 600px) {
.product-info {
  padding: 2% 3%;
  font-size: 14px;
}
}
.product-info__item {
  border-bottom: 1px dotted #d2cdc8;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.product-info__item dt {
  font-weight: 600;
}
.product-info__item dd span {
  display: inline-block;
}
.osusume-wrap {
  display: flex;
  gap: 20px;
  margin: 2.5em auto;
}
.osusume__txt {
  flex: 1;
}
.osusume__img {
  width: 35%;
}
@media only screen and (max-width: 600px) {
.osusume-wrap {
  gap: 10px;
}
.osusume__img {
  width: 30%;
}
}
.osusume-wrap h4 {
  font-size: 33px;
  font-weight: 600;
  color: #325573;
  display: inline-block;
  margin-bottom: .5em;
  padding: 5px 1em;
  line-height: 1.3;
  border: 2px solid #325573;
}
.osusume-wrap ul {
  list-style: none;
  font-size: 28px;
  margin-left: 0;
  line-height: 1.5;
}
.osusume-wrap ul li {
  margin-bottom: 10px;
}
.osusume-wrap ul li:before{ 
  display:inline-block; 
  vertical-align: middle;
  content:'';
  width: .5em;
  height: .5em;
  background: #325573;
  border-radius: 50%;
  margin-right: 8px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 800px) {
.osusume-wrap h4 {
  font-size: 26px;
}
.osusume-wrap ul {
  font-size: 22px;
}
.osusume-wrap ul li {
  margin-bottom: 5px;
}
}
@media only screen and (max-width: 600px) {
.osusume-wrap h4 {
  font-size: 14px;
}
.osusume-wrap ul {
  font-size: 14px;
}
.osusume-wrap ul li:before{ 
  width: .4em;
  height: .4em;
  margin-right: 6px;
  margin-bottom: 4px;
}
}

.section--banner {
  background-color: #e1e6eb;
}
.section--banner .section__inner {
  max-width: 760px;
}

.section--message {
  background-color: #b4875a;
}
.section--message .section__inner {
  background-image: url(images/message_bg.webp);
  background-repeat: repeat-y;
  background-size: contain;
  border-radius: 20px;
  padding: 0 5% 3%;
}
.section--message .heading-message {
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  position: relative;
  display: block;
  text-align: center;
  z-index: 0;
}
.section--message .heading-message::after {
  content: "";
  position: absolute;
  display: block;
  width: 250px;
  height: 125px;
  border-radius: 0 0 125px 125px;
  background: #b4875a;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: -1;
}
.section--message .heading-message-2 {
  font-size: 36px;
  font-weight: 400;
  color: #5f3714;
  text-align: center;
  margin: 50px 0 1.5em;
  position: relative;
}
.section--message .heading-message-2::before {
  content: "";
  width: 80px;
  height: 1px;
  background-color: #5f3714;
  display: block;
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.section--message .section__inner p {
  font-size: 18px;
  line-height: 2.4;
  color: #5f3714;
}
.message-wrap {
  display: flex;
  gap: 20px;
  align-items: end;
  margin-top: 20px;
}
.message-wrap .message__img {
  width: 44%;
}
.message-wrap .message__name {
  flex: 1;
}
.message-wrap .message__name p {
  font-size: 20px;
  line-height: 1.6;
}
.message-wrap .message__name p b {
  font-size: 28px;
  font-weight: 400;
}
@media only screen and (max-width: 800px) {
.section--message .heading-message {
  font-size: 18px;
}
.section--message .heading-message::after {
  width: 170px;
  height: 80px;
  border-radius: 0 0 80px 80px;
  top: -25px;
}
.section--message .heading-message-2 {
  font-size: 26px;
}
.section--message .heading-message-2::before {
  width: 40px;
  bottom: -14px;
}
.section--message .section__inner p {
  font-size: 16px;
  line-height: 1.6;
}
.message-wrap .message__name p {
  font-size: 18px;
}
.message-wrap .message__name p b {
  font-size: 22px;
}
}
@media only screen and (max-width: 600px) {
.section--message .heading-message {
  font-size: 18px;
}
.section--message .heading-message::after {
  width: 170px;
  height: 80px;
  border-radius: 0 0 80px 80px;
  top: -25px;
}
.section--message .heading-message-2 {
  font-size: 21px;
}
.section--message .section__inner p {
  font-size: 15px;
  line-height: 1.6;
}
.message-wrap {
  gap: 10px;
  flex-direction: column;
  align-items: center;
}
.message-wrap .message__img {
  width: 80%;
}
.message-wrap .message__name p {
  font-size: 14px;
  text-align: center;
}
.message-wrap .message__name p b {
  font-size: 18px;
}
}

.section--voice {
  background-color: #cccccc;
}
.section--voice .heading-lv2 {
  margin-bottom: .2em;
}
.voice-lead {
  font-size: 26px;
  font-weight: 600;
  color: #5f3714;
  text-align: center;
  margin-bottom: 1.2em!important;
  padding: 0 20px;
}
.section--voice .voice-wrap {
  background-color: #fff;
  border-radius: 20px;
  margin: 25px 0;
  padding: 5% 9%;
}
.section--voice .voice-wrap:last-child {
  margin: 0;
}
.voice-wrap .voice-head {
  text-align: center;
}
.voice-wrap .voice-head p {
  font-size: 20px;
  margin-bottom: 0;
}
.voice-wrap .voice-head h3 {
  font-size: 36px;
  font-weight: 400;
  color: #5f3714;
  line-height: 1.4;
}
.voice-wrap img {
  width: 185px;
  margin-bottom: 20px;
}
.voice-wrap .voice-sentence {
  border-top: 2px solid #5f3714;
  margin-top: 1em;
  padding-top: 1em;
  line-height: 2;
}
.voice-wrap .voice-sentence p {
  font-size: 18px;
}

.section.section--footevisual {
  padding-top: 0;
}
.section--footevisual .section__inner {
  max-width: 1024px;
  width: 100%;
}

.section.section--store {
  background-color: #3c5096;
  padding: 3em 0;
}
@media only screen and (max-width: 600px) {
.voice-lead {
  font-size: 18px;
}
.voice-wrap .voice-head p {
  font-size: 14px;
}
.voice-wrap .voice-head h3 {
  font-size: 21px;
}
.voice-wrap img {
  width: 90px;
}
.voice-wrap .voice-sentence p {
  font-size: 14px;
  line-height: 1.6;
}
}


/*  Page common ------------------------  */
.indent {
  margin-top: auto;
  font-size: 13px!important;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.4;
  font-family: 'Noto Sans JP';
}
.indent-2 {
  margin-top: auto;
  font-size: 15px!important;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.4;
}
@media only screen and (max-width: 600px) {
.indent {
  font-size: 12px!important;
  line-height: 1.3;
}
.indent-2 {
  font-size: 13px!important;
  line-height: 1.3;
}
}
@media only screen and (max-width: 600px) {
.indent-2 {
  font-size: 11px !important;
}
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list li {
  position: relative;
  padding-left: 2em;
  text-indent: 0em;
  margin-bottom: .3em;
}
.list li::before {
  content: "";
  display: block;
  width: 2.3rem;
  height: 1.5rem;
  border-left: 6px solid #007dd4;
  border-bottom: 6px solid #007dd4;
  transform: rotate(-45deg);
  position: absolute;
  top: 1rem;
  left: 0;
}
@media only screen and (max-width: 800px) {
.list li::before {
  width: 2rem;
  height: 1.2rem;
  border-left: 5px solid #007dd4;
  border-bottom: 5px solid #007dd4;
  top: .5em;
}
}

.p-l-25 {
  padding-left: 25px;
}

.dl-list {
  display: flex;
  flex-wrap: wrap;
}
.dl-list dt {
  width: 50%;
}
.dl-list dd {
  width: 50%;
}

.table-dl {
  display: flex;
  gap: 0 5px;
  margin-top: -2px;
}
.table-dl dt {
  border-top: 2px solid #2e4f6f;
  border-bottom: 2px solid #2e4f6f;
  width: 14em;
  padding: 1em 0 1em 1em;
  font-weight: 600;
  text-align: left;
}
.table-dl dd {
  border-top: 2px solid #bec2c9;
  border-bottom: 2px solid #bec2c9;
  flex: 1;
  padding: 1em 0 1em 1em;
  text-align: left;
}
.table-dl.table-dl--3col dt {
  width: 20em;
}
.table-dl.table-dl--3col dd:last-of-type {
  width: 6em;
  flex: none;
  padding: 1em;
  text-align: right;
}
@media only screen and (max-width: 800px) {
  .table-dl {
    flex-direction: column;
  }
  .table-dl dt {
    width: 100%;
    padding-bottom: 0;
    position: relative;
    border-top: none;
  }
  .table-dl dt::before {
    content: "";
    display: block;
    position: absolute;
    width: 65%;
    height: 2px;
    background-color: #bec2c9;
    top: 0;
    right: 0;
  }
  .table-dl dt::after {
    content: "";
    display: block;
    position: absolute;
    width: 35%;
    height: 2px;
    background-color: #2e4f6f;
    top: 0;
    left: 0;
  }
  .table-dl dd {
    padding-top: .5em;
  }
  .table-dl-wrap .table-dl dt {
    border-bottom: none;
  }
  .table-dl-wrap .table-dl dd {
    border-top: none;
  }
  .table-dl.table-dl--3col {
    flex-direction: initial;
    flex-wrap: wrap;
    border-bottom: 2px solid #bec2c9;
  }
  .table-dl.table-dl--3col dt {
    width: 100%;
  }
  .table-dl.table-dl--3col dd {
    border-bottom: none;
  }
}

/*  slider ------------------  */
.slider {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  list-style: none;
}
.slider li {
  height: auto;
  margin-right: 10px;
  margin-left: 10px;
}
.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider a {
  text-decoration: none;
  color: #000;
}
.slider-arrow {
  bottom: 0;
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
  z-index: 2;
  cursor:pointer;
  transition: all .2s;
}
.prev-arrow {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1.2em;
  height: 1.2em;
  transform: translateX(-25%) rotate(225deg);
  left: -25px;
  filter: drop-shadow(0px 0px 2px #000);
}
.prev-arrow::before,
.prev-arrow::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}
.prev-arrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.prev-arrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 2px;
}
.next-arrow {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1.2em;
  height: 1.2em;
  transform: translateX(-25%) rotate(45deg);
  right: -30px;
  filter: drop-shadow(0px 0px 2px #000);
}
.next-arrow::before,
.next-arrow::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}
.next-arrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.next-arrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 2px;
}
.prev-arrow:hover  {
  opacity: .7;
}
.next-arrow:hover {
  right: -32px;
}

/*  footer ------------------  */
.footer {
  padding: 2em 0;
  position: relative;
  background-color: #ffdc00;
}
.footer__inner {
  max-width: 1024px;
  width: 95%;
  margin: 0 auto;
  text-align: center;
}
.footer__logo {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: .5em;
}
.copyright {
  font-size: 14px;
  font-weight: 400;
  margin-left: auto;
}
@media only screen and (max-width: 600px) {
.footer__logo {
  font-size: 21px;
}
.copyright {
  font-size: 11px;
}
}


.table-1 {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.6;
  border-top: 1px solid #9fa0a0;
  width: 100%;
  line-height: 1.6;
  text-align: left;
}
.table-1 th,
.table-1 td {
  border-bottom: 1px solid #9fa0a0;
  padding: 25px 5px 25px 1em;
  vertical-align: middle;
}
.table-1 th {
  border-top: 1px solid #1e61b4;
  border-bottom: 1px solid #1e61b4;
  padding: 25px 5px;
  vertical-align: middle;
  color: #1e61b4;
  font-weight: 500;
  width: 30%;
}

@media screen and (max-width: 800px) {
.table-sp-col1 th,
.table-sp-col1 td {
  display: inline-block;
  width: 100%;
}
.table-sp-col1 th {
  border-bottom: none;
  padding: 20px 0 10px 0;
}
.table-sp-col1 td {
  padding: 0 0 20px 0;
}
}

/*  common ------------------  */
.section {
  position: relative;
  padding: 3.5em 0 4.5em;
}
@media only screen and (max-width: 600px) {
.section {
  position: relative;
  padding: 2em 0 2em;
}
}
.section__inner {
  max-width: 820px;
  width: 94%;
  margin: 0 auto;
  position: relative;
}

.section__inner--1200 {
  max-width: 1200px;
  margin: 0 auto;
}

.section-googlemap {
  padding: 3em 0 0;
}
.section-googlemap iframe {
  vertical-align: bottom;
}

.section.section--gray {
  background-color: #eeeeee;
  position: relative;
}

.section.section--plaid {
  background-image: url(company/images/plaid_bg.png);
  background-repeat: repeat;
}
.section.section--btmline {
  border-bottom: 1px solid #c9caca;
}

.section p {
  margin-bottom: 1em;
}
.section p:last-of-type {
  margin-bottom: 0;
}

.col-wrap {
  display : flex;
  flex-wrap : wrap;
  justify-content:space-between;
  gap: 25px 2%;
}
/* 子要素 */
.col-2 .col__item { 
  width: 48%;
}
.col-3 .col__item { 
  width: 31%;
}
.col-4 .col__item { 
  width: 23%;
}
.col-wrap.col-3::after {
  content: "";
  display: block;
  width: 31%;
}
.col-wide__item { 
  flex: 1;
}
.col-narrow__item { 
  width: 33%;
}
.col-reverse {
  flex-direction: row-reverse;
}
.col-align-items--center {
  align-items: center;
}

@media screen and (max-width: 800px) {
.col-wrap { 
  gap: 25px 0;
}
.col-2 .col__item,
.col-3 .col__item,
.col-4 .col__item,
.col-narrow__item { 
  width: 100%;
}
}

ul {
  margin-left: 1em;
}
ol {
  margin-left: 1.5em;
}
ul li,
ol li {
  margin-bottom: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.6;
}

.br-sp {
  display: none;
}

.text-s {
  font-size: 14px;
  line-height: 1.6;
}
.text-l {
  font-size: 18px;
  line-height: 1.6;
}
.text-l2 {
  font-size: 21px;
  line-height: 1.6;
}
.text-b {
  font-weight: 600;
}

.red {
  color: #ff0007;
}

.white {
  color: #fff;
}

.annotation {
  padding-left: 1em;
  text-indent: -1em;
}

.center {
  text-align: center;
}

.align-right {
  text-align: right;
}
.align-left {
  text-align: left;
}

.nowrap {
  white-space: nowrap;
  display: inline-block;
}

.m-t-0 {margin-top: 0!important;}
.m-t-10 {margin-top: 10px!important;}
.m-t-20 {margin-top: 20px!important;}
.m-t-30 {margin-top: 30px!important;}
.m-t-40 {margin-top: 40px!important;}
.m-t-50 {margin-top: 50px!important;}
.m-t-60 {margin-top: 60px!important;}
.m-t-70 {margin-top: 70px!important;}
.m-t-80 {margin-top: 80px!important;}
.m-b-0 {margin-bottom: 0!important;}
.m-b-10 {margin-bottom: 10px!important;}
.m-b-20 {margin-bottom: 20px!important;}
.m-b-30 {margin-bottom: 30px!important;}
.m-b-40 {margin-bottom: 40px!important;}
.m-b-50 {margin-bottom: 50px!important;}
.m-b-60 {margin-bottom: 60px!important;}
.m-b-70 {margin-bottom: 70px!important;}
.m-b-80 {margin-bottom: 80px!important;}
@media only screen and (max-width: 600px) {
.m-t-10 {margin-top: 5px!important;}
.m-t-20 {margin-top: 10px!important;}
.m-t-30 {margin-top: 20px!important;}
.m-t-40 {margin-top: 30px!important;}
.m-t-50 {margin-top: 40px!important;}
.m-t-60 {margin-top: 50px!important;}
.m-t-70 {margin-top: 55px!important;}
.m-t-80 {margin-top: 60px!important;}
.m-b-0 {margin-bottom: 0!important;}
.m-b-10 {margin-bottom: 5px!important;}
.m-b-20 {margin-bottom: 10px!important;}
.m-b-30 {margin-bottom: 20px!important;}
.m-b-40 {margin-bottom: 30px!important;}
.m-b-50 {margin-bottom: 40px!important;}
.m-b-60 {margin-bottom: 50px!important;}
.m-b-70 {margin-bottom: 55px!important;}
.m-b-80 {margin-bottom: 60px!important;}
}

/*  animation ------------------  */
.fadeUpTrigger,
.fadeDownTrigger,
.fadeInTrigger,
.fadeRightTrigger {
  opacity: 0;
}
.fadeIn {
animation-name: fadeInAnime;
animation-duration: 1.5s;
animation-fill-mode: forwards;
opacity: 0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.fadeUp {
animation-name: fadeUpAnime;
animation-duration: 1.0s;
animation-fill-mode: forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
  opacity: 0;
  transform: translateY(60px);
  }

  to {
  opacity: 1;
  transform: translateY(0);
  }
}
.fadeDown {
animation-name: fadeDownAnime;
animation-duration: 1.0s;
animation-fill-mode: forwards;
opacity: 0;
}
@keyframes fadeDownAnime{
  from {
  opacity: 0;
  transform: translateY(-60px);
  }

  to {
  opacity: 1;
  transform: translateY(0);
  }
}
.fadeLeft {
animation-name: fadeLeftAnime;
animation-duration: 1.0s;
animation-fill-mode: forwards;
opacity: 0;
}
@keyframes fadeLeftAnime{
  from {
  opacity: 0;
  transform: translateX(-30px);
  }

  to {
  opacity: 1;
  transform: translateY(0);
  }
}
.fadeBlur {
	animation-name: blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}
.fadeBlur2 {
	animation-name: blurAnime;
	animation-duration:1.4s;
	animation-fill-mode:forwards;
}
@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
  }

  to {
	filter: blur(0);
	transform: scale(1);
  }
}
.fadeRight {
animation-name: fadeRightAnime;
animation-duration: 1.0s;
animation-fill-mode: forwards;
opacity: 0;
}
@keyframes fadeRightAnime{
  from {
  opacity: 0;
  transform: translateX(30px);
  }

  to {
  opacity: 1;
  transform: translateY(0);
  }
}
.fadeBlur {
	animation-name: blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}
.fadeBlur2 {
	animation-name: blurAnime;
	animation-duration:1.4s;
	animation-fill-mode:forwards;
}
@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
  }

  to {
	filter: blur(0);
	transform: scale(1);
  }
}


@media only screen and (max-width: 1080px) {
body  {
  font-size: 18px;
}
}

@media only screen and (max-width: 800px) {
body  {
  font-size: 16px;
}

.br-pc {
  display: none;
}
.br-sp {
  display: block;
}
}

@media only screen and (max-width: 600px) {
body  {
  font-size: 14px;
  line-height: 1.4;
}
}