@charset "utf-8";
/* CSS Document */
html {scroll-behavior: smooth;}
body {
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0em;
	line-height: 1.7em;
	font-size: 15px;
	color: #272626;
}

header {
	width: 100%;
	//position:fixed;/*固定する*/
	position: absolute;
    top: 0px;/*ブラウザの上からの距離はゼロ*/
	//z-index: 999;
    overflow: hidden;
}

nav {}

section {
	display: block;
	padding-top: 100px;
	padding-bottom: 100px;
	width: 100%;
}

.inner {
	max-width: 1220px;
	width: 96%;
	margin: 0 auto;
	
}
.pc-only {display: block !important}
.none-pc {display: none !important}
.sp-only {display: none!important}

@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
	
	
	
	
	.pc-only {display: none !important}
	.none-pc {display: block !important}
	.sp-only {display: none!important}
}


@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	
	.pc-only {display: none !important}
	.none-pc {display: block !important}
	.sp-only {display: block!important}
}


/*--------------
font 要素
--------------*/
h1 {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
}

.noto-serif {
	font-family: 'Noto Serif JP', serif;
}

.barlow {
	font-family: 'Barlow', sans-serif;
}

h2 {
	width: 100%;
	color:  #F3F5DE;
	font-size: 104px;
	font-weight: 700;
	font-family: 'Barlow', sans-serif;
	text-align: center;
	position: relative;
}

h2.__wh {
	color: #fff;
}

h2 p.h2-txt {
	width: 100%;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 25px;
	color: #272626 ;
	text-align: center;
	position: absolute;
	bottom:-36px;
	left: 50%;
	transform: translate(-50%, 0%)
}
h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 2em;
}
h2:before {
  content: '';
  position: absolute;
  bottom: -116px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #F3F5DE;
  border-radius: 2px;
}

h2.__wh:before {
  content: '';
  position: absolute;
  bottom: -116px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 2px;
}

.h2-sub-txt-area {
	text-align: center;
	margin-bottom: 100px;
}

.h2-sub-txt {}

.caution-area {
    padding-left: 1em;
    margin: 2em;
}
.caution {
	font-size: 14px;
    text-indent: -1em;
	padding-left: 1em;
    line-height: 1.3em;
    margin-bottom: 1em;
}

@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	
	h2 {
		font-size: 56px;
	}

	h2.__wh {
		color: #fff;
	}

	h2 p.h2-txt {
		font-size: 20px;
    bottom: -23px;
	}
	
	h2:before, h2.__wh:before {
    	bottom: -76px;
	}
	
}


/*--------------
parallax 要素
--------------*/
.parallax1, .parallax2 {
	position: fixed;
	height: auto;
	z-index: -3;
}
.parallax1 {
	left: -50px;
	top:0px;
	width:250px;
}

.parallax2 {
	right:-50px;
	top: 0px;
	width: 250px;
}

@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	
	.parallax1, .parallax2 {
		width: 100px;
		opacity: 0.5;
	}
	
}



/*--------------
下部追随バナ 要素
--------------*/
.floating-banner {
    position: fixed;
    z-index: 99999;
    bottom: 0;
    right: 0;
    visibility: visible;
    display: block;
    margin-bottom: 33px;
    margin-right: 16px;
    width: auto;
    text-align: right;
    float: right;
}
.banner {
    width: auto;/* バナーの横幅 */
    color: #fff;/* バナー内の文字色 */
    font-weight: bold;
    text-align: center;
    padding:10px 67px 0 0;	
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	
}
.floating-banner a {
    text-decoration: none;/* リンクに下線が入らないように */
}

.copy {
    font-size: 12px;
	padding:0px 1em 0;
    ine-height: 31px;
	background-color: #fff;
	border: 2px solid #00B900;
	border-radius: 5px;
	height: 30px;
	box-shadow: 0px 2px 3px 3px rgba(0,0,0, 0.1);
	color: #272626;
}

.copy::before {
	position: absolute;
    display: block;
    content: '';
    margin: 0;
    top: 66%;
	right: 58px;
    margin-top: -6px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid #00B900;
    transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
}

.copy::after {
	background: url("../img/line_icon.png") no-repeat center center;
	background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 60%;
    background-color: #00B900;
	color: #fff;
    width: 50px;
    height: 50px;
    position: absolute;
    display: block;
    content: '';
    margin: 0;
    padding: 1em;
    top: 0;
    right: 0;
    //border: 3px solid #00B900;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
	//box-shadow: 3px 3px 4px 4px rgba(0,0,0, 0.2);
}
.twitter-area {
	position: absolute;
    right: 50px;
    bottom: 100px;
}
.twitter {
	background-color: #1877f2;
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
}

.twitter i {
    position: absolute;
	top: 50%;
	left: 50%;
	color:#fff;
	transform: translate(-50%, -50%);
	font-size: 25px;
}

.twitter a {
	color: #fff
}


/*--------------
モーダル 要素
--------------*/
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 78px 10px 0px;
  text-align: center
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 70%;
  max-width: 600px;
  padding: 30px 30px 2em;
  border-radius:12px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle
}

.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c!important;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #2b2e38!important
}


/*モーダル内のデザイン設定*/
.modal-ttl {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 15px;
}

.modal-txt {
    margin-bottom: 20px;
}

.modal-img {
}


@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
}



/*--------------
header 要素
--------------*/
header {
	position: absolute;
	top: 0;
	//background-color: #fff;
}

.header-inner {
	height: 80px;
	width: 95%;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	
		position: relative;
}

	.header-inner div > div{
		margin-left: 10px;
	}

.header_inner_left {
}

.header_logo {
	height: 80px;
}
.header_logo img {
    margin: 10px 0 0px;
    height: 41px;
}

h3.header-txt {
    font-size: 12px;
    color: #666;
    text-align: center;
    padding: 0;
    margin: 0;
}

.header_inner_right {
	display: block;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-tel {
    line-height: 1.3em;
	font-size: 11px;
	text-align: center;
	
    text-shadow: 2px 2px 2px #fff;
}
.header-tel span {
	display: block;
	font-size: 27px;
	font-weight: 700;
	font-family: 'Barlow', sans-serif;
	letter-spacing: 0.03em;
	line-height: 1.1em;
}
.header-tel span i {
	font-size: 20px;
	margin-right: 8px;
}

.header-form-btn, .header-line-btn {
	width: fit-content;
	text-align: center;
	border-radius: 50vh;
	font-weight: 700;
	padding: 0.5em 2em;
    line-height: 1.3em;
}

.header-form-btn a, .header-line-btn a {
	color: #fff;
}
.form-line-btn {
	background-color: #06C755;
	color: #FFFFFF
}
.header-form-btn {
	background-color: #982429;
}
.header-line-btn {
	background-color: #06C755
}

.header-form-btn span, .header-line-btn span {
	display: block;
	font-size: 13px;
	font-weight:  500;
}
	
	

@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/

	header {
		background-color: transparent;
	}
	.header_logo {
		left: 20px;
		position: fixed;
		top: 0;
		z-index: 999
	}
	.header_inner_right{
		display: none !important;
	}
	.header_logo img {
		height:38px
	}
}
	

@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	
	header {
		background-color: transparent;
	}
	
	.header_logo {
		left: 20px;
		position: fixed;
		top: 0;
		z-index: 999
	}
	.header_inner_right{
		display: none !important;
	}
	
	.header_logo img {
		height: 34px
	}
	
	
	
}


/*--------------
nav 要素
--------------*/
#global-nav.m_fixed {
	left: 0;
	position: fixed;
	top: 0;
	z-index: 999;
	width: 100%
}

.pc-nav {
	box-shadow: 0px 3px 3px 0 rgba(0,0,0,0.2);
	background-color: #fff;
	height: 65px;
}
.pc-nav-wrap {
}

.pc-nav-list-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pc-nav-list {
	height: 65px;
	margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo-area.__spnav {
	width: 92px;
	height: 97px;
}

.logo-area.__spnav img {
	object-fit: contain
}

@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
	
	.pc-nav {
		display: none
	}
	
	
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/

	.pc-nav {
		display: none
	}
	
	
}

/*--------------
kv 要素
--------------*/

section.kv {
	padding-bottom: 0;
	padding-top: 0;
}

.kv-cts {
	height: auto;
	background: url("../img/kv.jpg") no-repeat center center;
	background-size: cover;
	height: 100vh ;
	padding-bottom: 0;
	padding-top: 0;
	margin-top: 0;
	position: relative
}

 .scroll {
    color         : #333;
    font-size     : 13px;
    writing-mode  : vertical-rl;
    position      : absolute;
    bottom        :0%;
    left          : 50%;
    transform     : translate(-50%, -115px);
}
.scroll::after {
      content         : '';
      display         : block;
      position        : absolute;
      right           : 50%;
      bottom          : -100px;
      transform       : translateX(-50%);
      width           : 1px;
      height          : 80px;
      background-color: #333;
    }


.scroll::after {
  animation: scroll 3s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
}

/*--------------
concept 要素
--------------*/
.concept {
	//background-color: #fff;
}

.concept-wrap {
	position: absolute;
	top: 39%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	text-shadow: 1px 1px 1px #fff;
}
.logo-area {
	width: 205px;
	margin: 0 auto;
}

.logo-area img {
	width: 100%;
}

.concept-ttl-area {
	font-size: 22px;
	width: fit-content;
	margin:37px auto;
	text-align: center;
	line-height: 2em;
}

.concept-txt-area {
	font-size: 15px;
	width: fit-content;
	margin:0px auto;
	text-align: center;
}

@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	
	.logo-area {
		width: 142px;
		margin: 0 auto;
	}
	.concept-ttl-area {
    margin: 16px auto;	
	}
	
}

/*--------------
message 要素
--------------*/
.message {
	background-color: #fff;
	box-shadow: 0 0 0 100max #fff;
	clip-path: inset(0 - 100vmax);
	position: relative
}

.msg-area {
	display: flex;
	justify-content: space-between;
	align-items:center;
}

.msg-left-area {
	width: 65%;
}

.msg-center {
	width: 85%;
	margin: 0 auto;
	text-align:center;
}

.msg-ttl {
	font-size: 22px;
	margin-bottom: 35px;
	line-height: 2em;
	font-weight: 700
}

.msg-txt {
	margin-bottom: 20px;
}

.msg-name {
	text-align: right;
}

.msg-right-area {
	width: 30%
}

.msg-img-area {
	width: 100%;
	padding-top: 100%;	
	background: url("../img/face.jpg") no-repeat center center / cover;
	border-radius: 16px;
}

.profile_izumi {
	background-color: #FFFFF0;
	padding-top: 10px;
	padding-bottom: 10px;
	border-radius: 15px;
}

.profile_izumi p{
	margin-bottom: 2px;
}

.msg-img-area img {
	object-fit: cover;
}

.msg-bg-img {
	position: absolute;
	background: url("../img/leaf-center.png") center top no-repeat / contain;
	width: 749px;
	height: 286px;
	bottom: -280px;
	left: 50%;
	transform: translate(-50%,0%);
	z-index: 999
}

@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
	.msg-left-area {
		margin: 0 auto;
	}
	.msg-ttl {
		text-align: center;
	}
	.msg-img-area {
		width: 80%;
		padding-top: 80%;
		margin: 0 auto;
	}
	.msg-txt-wrap {
		margin-top: 30px;
	}

	.msg-right-area {
		display: none;
	}
	.msg-center {
		width: 85%;
		margin: 0 auto;
		text-align:center;
	}
	
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	
	.msg-left-area {
		width: 96%;
		margin: 0 auto;
	}
	.msg-ttl {
		text-align: center;
		font-size:3.8vw;
	}
	.msg-img-area {
		width: 80%;
		padding-top: 80%;
		margin: 0 auto;
	}
	.msg-txt-wrap {
		margin-top: 30px;
	}
	.msg-right-area {
		display: none;
	}
	.msg-center {
		width: 95%;
		margin: 0 auto;
		text-align:center;
	}
	.profile_izumi p{
		margin-bottom: 2px;
		text-align:left;
	}
	
}

/*--------------
point 要素
--------------*/
.point {
	background-color: #F8F9EF;
	box-shadow: 0 0 0 100max #F8F9EF;
	clip-path: inset(0 - 100vmax);
	padding-top: 200px;
}
.point-list-wrap {
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
}

.point-box {
	max-width: 272px;
	width: 30%;
}
.point-box.__02 {
	margin-top: 80px;
}

.point-ttl {
	font-size: 22px;
	text-align: center;
}

.point-subttl {
	font-size: 18px;
	text-align: center;
	color: #982429;
	margin-bottom: 18px;
	font-weight: 700
}

.point-img01, .point-img02, .point-img03 {
	width: 272px;
	padding-top: 100%;
	border-radius: 100vh;
	margin: 25px 0;
}
.point-img01 {
	background: url("../img/point01.jpg") no-repeat center center / cover;
}
.point-img02 {
	background: url("../img/point02.jpg") no-repeat center center / cover;
}
.point-img03 {
	background: url("../img/point03.jpg") no-repeat center center / cover;
}
.read-more-btn {
	display: none;
}



@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/

	.point-ttl {
		font-size:2.3vw;
	}
	.point-img01, .point-img02, .point-img03 {
		width: auto;
	}

	.read-more-btn {
		display: none;
	}

}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	
	.point-list-wrap {
		flex-direction: column;
	}
	.point-box {
		max-width: 500px;
		width: 90%;
		margin: 0 auto 80px auto;
	}
	.point-box.__02 {
    	 margin-top: 0px;
	}
	.point-img01, .point-img02, .point-img03 {
		width: auto;
		padding-top: 100%;
		border-radius: 100vh;
		margin: 25px 0;
	}
	.point-txt {
		display: none;
	}
	.read-more-btn {
		display: block;
		border: 1px solid #707070;
		width: fit-content;
		padding: 0.5em 4em;
		border-radius: 100vh;
		margin: 0 auto;
		background-color: #fff;
	}
	.read-more {
		text-align: center;
		position: relative;
	}
	.read-more::after {
		content: "\f0da";
		font-weight: 900;
		font-family: "Font Awesome 5 Free";
		font-size: 16px;
		position: absolute;
		right: -2em;
		top: 50%;
		transform: translate(0%, -50%);
	}
	
	
	
	
}

/*--------------
feature 要素
--------------*/

.ftr-box {
  background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
  padding: 0.3rem;
  border-radius: 27px;
	width: 90%;
}

.ftr-box.__right {
	margin: 85px 0 85px auto;
}

.ftr-num {
	font-family: 'Rochester', cursive;
	height: 58px;
}

.ftr-num p {
	font-size: 74px;
}
.ftr-num.__rightside {
	font-family: 'Rochester', cursive;
	font-size: 74px;
}

.ftr-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
  background: #FFF;
  padding: 1.6rem;
  border-radius: 20px;
}

.ftr-inner.reverse {
	flex-direction: row-reverse;
}

.ftr-img-area {
    max-width: 360px;
    width: 39%;
	height: 280px;
}
.ftr-img-area img {
    width: 360px;
    height: 280px;
	object-fit: cover;
	border-radius: 8px;
}
.ftr-txt-area {
    width: 58%;
}

.ftr-ttl {
	font-family: 'Noto Serif JP', serif;
	font-size: 20px;
	margin-bottom: 26px;
    color: #982429;
}


@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
	
	.ftr-inner {
		position: relative;
	}
	.ftr-num {
    position: absolute;
    left: 16%;
    top: -7px;
	}
	.ftr-num.__rightside {
		left: 72%;
    top: -7px;
	}
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	
	.ftr-box {
		width: 100%
	}
	.ftr-box.__right {
		margin: 85px auto;
	}

	.ftr-box.__left {
		margin: 85px auto;
	}

	.ftr-inner {
		position: relative;
    	padding: 3.5rem 1.6rem 1.6rem;
	}
	.ftr-num {
		position: absolute;
		left: 50%;
		top: -21px;
		transform: translate(-50%, 0);
	}
	.ftr-img-area.__no-sp {
		display: none;
	}

	.ftr-inner.reverse {
		flex-direction: row;
	}
	.ftr-ttl {
		text-align: center;
		font-size: 18px;
	}
	.ftr-txt-area {
		width: 100%;
	}
	.ftr-img-area {
		width: 100%;
		margin: 0 auto 20px;
	}



}

/*--------------
plan 要素
--------------*/
.plan {
	background-color: #F8F9EF;
	border-radius: 150px;
}

.plan-basic, .plan-special, .plan-opt-area{
	margin-bottom: 100px;
}
.plan-ttl {
	position: relative;
  padding: 0 65px;
  text-align: center;
	margin-bottom: 45px;
	font-size: 18px;
	font-weight: 700;
}

.plan-ttl:before {
   position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #000;
}

.plan-ttl span {
  position: relative;
  padding: 0 1em;
  background: #F8F9EF;
}

.plan-box-area {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-top: 45px;
}

.plan-box {
	max-width: 467px;
	width: 45%;
	background-color: #fff;
	padding:50px 0;
	border-radius: 25px;
}

.plan-en {
	text-align: center;
	font-size: 44px;
	margin-bottom:0.5em;
}

.wht-bk-bdr-btn {
	width: fit-content;
	padding: 0.5em 2em;
	border: 1px solid #272626;
	border-radius: 50vh;
	background-color: #fff;
	margin: 0 auto;
}

.btn-txt {}

.plan-cmnt {
	background-color: #982429;
	width: fit-content;
	font-size: 12px;
	color: #fff;
	margin: 0 auto;
	padding: 0.2em 1em;
	border-radius: 50vh;
}
.plan-name {
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	margin: 1em 0;
}

.plan-check-list-wrap {
	margin:40px auto 2em;
	width: fit-content;
}

.plan-check-list {
	width: fit-content;
	padding-bottom: 1em;
    padding-left: 1em;
    text-indent: -2em;
}


.plan-check-list::before {
	content: url( "../img/check.png");
  vertical-align: middle;
  padding-right: 5px;
}

.rd-btn {
	background-color: #982429;
	width: fit-content;
	font-size: 14px;
	color: #fff;
	margin: 0 auto;
	padding: 0.8em 4em;
	border-radius: 50vh;
	position: relative;
}

.rd-btn i {
	position: absolute;
	right: 0%;
	top: 50%;
	transform: translate(-1.5em, -50%);
}


/*プランモーダル内要素*/
.plan-table-wrap {
	max-width: 600px;
	width: 95%;
	margin: 0 auto;
	border: 2px solid #982429;
}

.plam-table-ttl {
	width: 100%;
	text-align: center;
	background-color: #982429;
	color: #fff;
}
.plan-list-inner {
	margin: 15px 30px;
}
.plan-list {
	border-bottom: 1px solid #707070;
	max-width: 430px;
	width: 95%;
	margin: 0 auto;
	padding: 0.5em 0;
	display: flex;
	justify-content: space-between;
	align-items: center
}
.plan-list:last-child {
	border-bottom: none;
}
.plan-list-name {
	width: 50%;
	text-align: left;
	font-size: 14px;
	font-weight: 700;
}

.plan-list-conts {
	width: 50%;
	text-align: right;
	font-size: 14px;
}


/*オプションプラン要素*/
.opt-list-wrap {
	
}

.opt-list {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.opt-list-box {
	background-color: #fff;
	border-radius: 50vh;
	text-align: center;
	padding: 1em 2em;
}
.opt-txt-area {
	width: 100%;
	text-align: center;
	margin-top: 30px;
}




@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	
	.plan {
		background-color: #F8F9EF;
		border-radius: 100px;
	}
	.plan-cmnt-nosp {
		display: none;
	}
	
	.plan-ttl span.none-sp {
		display: none;
	}
	
	/*===========
	.scroll-box
	===========*/
	.scroll-box {
	  overflow-x: auto;
	  padding-bottom: 10px;
		margin-bottom: 45px;
	  -webkit-overflow-scrolling: touch;
	}

	/*===========
	scrollbar
	===========*/
	/*スクロールバー全体の高さ*/
	.scroll-box::-webkit-scrollbar {
	  height: 4px;
	}
	/*スクロールバー全体の背景*/
	.scroll-box::-webkit-scrollbar-track {
	  background: #eee;
	}
	/*スクロールバーの動く部分*/
	.scroll-box::-webkit-scrollbar-thumb {
	  background: #aaa;
	  border: none;
	}
	/*スクロールバーの動く部分のホバー（マウスオーバー）*/
	.scroll-box::-webkit-scrollbar-thumb:hover {
	  background: #999;
	}

	/*===========
	.f_area
	===========*/
	.scroll-box .f_area {
	  display: flex;
	  justify-content: flex-start;
		flex-wrap: initial;
	}
	.scroll-box .f_area .f_one {
	  width: 50%;
		flex: 0 0 80%;
		margin-right: 4%;
	}
	.scroll-box .f_area .f_one a {
	  display: block;
	  overflow: hidden;
	  backface-visibility: hidden;
	}
	.scroll-box .f_area .f_one a img {
	  max-width: 100%;
	  height: auto;
	  vertical-align: top;
	  transform: scale(1);
	  transition: .5s;
	}
	.scroll-box .f_area .f_one a img:hover {
	  transform: scale(1.1);
	}

	/*オプションプラン要素*/
	.opt-list-wrap {

	}

	.opt-list {
    flex-direction: column;
	}

	.opt-list-box {
		max-width: 260px;
		width: 100%;
		margin: 0 auto;
	}
	.opt-txt-area {
	}
	ul.opt-list li ~ li {
   	 margin-top: 10px;
	}
	
	
}

/*--------------
flow 要素
--------------*/

.flow-list-area {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #982429;
	margin-bottom: 95px;
}
.flow-list {
	width: 14.7%;
	color: #fff;
	height: 75px;
	padding: 10px 0 0 20px;
  position: relative;
	border-radius: 4px;
	font-size: 20px;
}
.flow-list:last-child {
	width: 11.8%;
	padding: 10px 0 0 27px;
}

.flow-list span {
	font-size: 27px;
	padding-left: 5px;
	font-weight: 500;
}

.flow-list a {
	color: #fff;
}
.flow-list a::after {	
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-size: 24px;
  position: absolute;
  top: 73%;
  transform: translateY(-50%);
  right: 57%;
  /* solidなのでfont-weightに900を設定 */
  font-weight: 900;
}

.flow-list.__last a:last-child::after {
  top: 73%;
  transform: translateY(-50%);
  right: 38%;
}

/* beforeで三角を表現 */
.flow-list::before, .flow-list::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}
.flow-list::before {
    right: 0;
    bottom: 0px;
    border-width: 0px 0px 37px 39px;
}
.flow-list::after{ 
    right: 0px;
    top: 0px;
    border-width: 0px 39px 37px 0px;
    transform: rotate(180deg);
}

.flow-list:last-child::after,.flow-list:last-child::before {
    content: "";
	border: none
}


.flow-box {
	max-width: 895px;
	width: 90%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0 auto;
	border: 2px solid #982429;
	padding: 0 2% 2%;	
  -webkit-backdrop-filter: blur(30px); /* ぼかしエフェクト */
  backdrop-filter: blur(30px);
  box-shadow: 0 5px 20px rgba(255, 255,255, 0.5); /* 薄い影 */
	position: relative
}
.flow-box::after {
		content: "\f0d7";
		font-weight: 900;
		font-family: "Font Awesome 5 Free";
		font-size:30px;
		position: absolute;
	color: #982429;
		bottom: -30px;
		left: 50px;
	}
	.flow-box:last-child::after {
		content: "";
		display: none;
	}

.flow-box-area > .flow-box {
	margin-bottom: 36px;
}

.flow-text-area {
	width: calc(100% - 357px)
}

.flow-no-tag {
	background-color: #982429;
	display: flex;
	justify-content:flex-start;
	align-items: center;
	color: #fff;
	width: fit-content;
	padding: 0.8em 1em;
	border-bottom-right-radius: 14px;
	border-bottom-left-radius: 14px;
	margin-bottom: 37px;
}

.flow-no {
	margin-right: 1em;
}

.flow-ttl-area {
	font-family: 'Noto Serif JP', serif;
	color: #982429;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 22px;
}

.flow-txt {
	line-height: 1.5em;
}
.flow-img-area {
	width: 295px;
	height: 245px;
	margin-top: 35px;
}

.flow-img-area img {
	width:100%;
	height:100%;
	object-fit: cover;
	border-radius: 8px;
}

@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	
	.flow-list {
		border-radius: 0;
    	line-height: 1.4em;
		text-align: center;
		font-size: 14px;
		padding: 7px 0 0 0;
	}
	.flow-list span {
		display: block;
		padding: 0;
	}

	/* before afterで>を表現 */
	.flow-list::before, .flow-list::after {
	  content: '';
	  position: absolute;
	  display: block;
    width: 3px;
    height: 45px;
	  border-style: none;
	  border-color:none;
    background-color: #fff;
	}
	.flow-list::before {
		right: 0;
		bottom: -4px;
		border-width: 0px 0px 37px 39px;
		transform: rotate(30deg);
	}
	.flow-list::after{ 
		right: 0px;
		top: -4px;
		border-width: 0px 39px 37px 0px;
		transform: rotate(-30deg);
	}
	
	.flow-list a::after {
		right: 43%;		
		top: 85%;
		font-size: 8px;
	}
	
	.flow-list:last-child {
		padding: 7px 0 0 0;
    font-size: 14px;
	}
	.flow-list:last-child::after,.flow-list:last-child::before {
		background: none;
	}
	.flow-list.__last a:last-child::after {
    top: 85%;
    transform: translateY(-50%);
    right: 38%;
	}
	　
	/* ここから流れの説明*/
	.flow-box-area > .flow-box {
		margin-bottom: 36px;
		font-size: 14px;
		padding: 0 3% 5%;
	}
	.flow-box {
		width: 100%;
		position: relative;
    	padding: 0 3% 4%;
	}

	.flow-box::after {
		content: "\f0d7";
		font-weight: 900;
		font-family: "Font Awesome 5 Free";
		font-size:30px;
		position: absolute;
		color: #982429;
		bottom: -30px;
		left: 50%;
		transform: translate(-50%, 0)
	}

	.flow-no-tag {
    	margin: 0 auto 291px;
	}
	.flow-text-area {
		width: 100%;
	}
	.flow-img-area {
		position: absolute;
		top: 42px;
		left: 50%;
		transform: translate(-50%, 0);
	}
	
	.red-btn {
		margin: 2em auto 0;
	}
}


/*--------------
contanct 要素
--------------*/
section.contact {
	padding-top: 50px;
}

.contact-sec-ttl {
	background-color: #F2DEDF;
	font-size: 26px;
	height: 150px;
	padding: 50px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
    font-weight: 700;
}

.contact-sec-ttl:after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #F2DEDF transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}

.contact h4 {
	font-weight: 700;
	box-sizing: 2em;
	text-align: center;
	font-weight: 700;
}

.ctt-text-area {
	text-align: center;
	margin: 0 0 80px 0;
}


.contact-btn-area {
	display: flex;
	justify-content: space-around;
	align-items: center
}
.ctt-btn-box {
	max-width: 264px;
	width: 30%;
}

.go-form-btn, .go-line-btn, .go-tell-btn, .go-sns-btn {
	text-align: center;
	width: 100%;
	height: 100px;
	border-radius: 8px;
	position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
	
}
.btn-comment {
	position: absolute;
	font-size: 0.8em;
	top: -2em;
	left: 50%;
	transform: translate(-50%, 0%);
	width: max-content;
	color: #272626;
}
.btn-comment::before, .btn-comment::after {
	  content: '';
	  position: absolute;
	  top: 50%;
	  display: inline-block;
	  width: 13px;
	  height: 1px;
	  background-color: black;
}
.btn-comment::before {
 	 left:-1.3em;
	  -webkit-transform: rotate(60deg);
	  transform: rotate(60deg);
}
.btn-comment::after {
  	right: -1.3em;
	  -webkit-transform: rotate(-60deg);
	  transform: rotate(-60deg);
}



.go-form-btn {
	background-color: #982429;
	color: #FFFFFF
}

.go-line-btn {
	background-color: #06C755;
	color: #FFFFFF
}

.go-tell-btn {
	background-color: #F3F5DE;
}

.go-sns-btn {
	background-color: #4C64D3;
	color: #FFFFFF
}

.ctt-txt {
	font-weight: 700;
	font-size:18px;
}
.phone-num {
	font-family: 'Barlow', sans-serif;
	font-weight: 700;
	font-size:22px;
	letter-spacing: 0.1em
}
.ctt-txt span {
	display: block;
	font-size: 0.8em;
	font-weight: 500
}


@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	
	.contact-btn-area {
		flex-direction: column;
	}
	
	.contact-btn-area div ~ div {
		margin-top: 65px;
	}
	.ctt-btn-box {
		width: 80%;
	}
	
	
}

/*--------------
FAQ 要素
--------------*/

.faq {
	background-color: #F8F9EF;
}

details {
	background-color: #fff;
	margin: 0 0 15px 0;
	border: solid 1px #272626;
}

summary {
	list-style: none;
	position: relative;
	margin-bottom: 10px;
	padding: 20px 70px 20px 30px;
	cursor: pointer;
	//background-color: #d8be39;
	font-family: 'Noto Serif JP', serif;
}

summary::-webkit-details-marker {
	display: none;
}

summary:hover,
details[open] summary {
	//background-color: #bc9e04;
}
summary::before {
	content: 'Q';
	font-size: 35px;
	font-family: 'Noto Serif JP', serif;
	color: #982429;
	margin-right: 0.5em
}
summary::after {
	content: '+';
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	transition: transform 0.5s;
	font-size: 30px;
}

details[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
}

.answer {
	padding: 20px 30px;
}

.answer p {
	line-height: 1.25;
}

details[open] .answer {
	animation: fadein 0.5s ease;
}

@keyframes fadein {
	0% { opacity: 0; }
	100% { opacity: 1; }
}


@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	
	details {
		position: relative;
	}
	summary {
    	padding: 20px 3em 20px 4em;
	}
	summary::before {
		position: absolute;
		left:0.5em;
		top: 25px;
	}
	summary::after {
    	right:0.7em;
	}
	
	
}

/*--------------
form 要素
--------------*/

/*=====問合せの流れ要素=======*/
.form-step-area {
	max-width:875px;
	width: 90%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
}

.form-step {
	max-width: 255px;
	width: 30%;
	box-shadow: 0 3px 6px	#ddd;
	border-radius: 8px;
	position: relative;
	padding: 23px 2%;
}

.form-step-no {
	width: 73px;
	
	height: 73px;
	border-radius: 50vh;
	background-color: #982429;
	color: #fff;
	font-size: 13px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%)
}

.form-step-no span {
	font-size: 33px;
	font-weight: 700;
	display: block;
	font-family: 'Barlow', sans-serif;
}

.form-step-img {
	max-width: 206px;
	height: 134px;
	margin: auto
}

.form-step-img img {
	border-radius: 7px;
}

.form-step-txt-area {
	font-size: 13px;
	line-height: 1.5em;
	max-width: 206px;
	margin:  15px auto 0;
}

/*=====問合せボタン要素=======*/
.form-btn-area{
	max-width:875px;
	width: 90%;
	margin:80px auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.form-btn-box {
	width: 47.5%
}
.form-btn-box .go-line-btn {
	width: 100%
}

.form-tell-btn, .form-line-btn {
	text-align: center;
	width:100%;
	height: 100px;
	border-radius: 8px;
	position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-tell-btn {
	background-color: #F3F5DE;	
}
.form-line-btn {
	background-color: #06C755;
}
.form-line-btn a {
	color: #FFFFFF
}

.form-txt {
	font-size: 1.5em;
	font-weight: 700;
}
.form-txt span {
	font-weight: 500;
}

.form-txt .fa {
	padding-right: 12px;
}

.form-txt .fab {
	padding-left: 12px;
}

.form-txt span {
	display: block;
	font-size: 0.5em;
}

/*=====フォーム要素=======*/
#formWrap {
	max-width:875px;
	width: 90%;
	margin:0 auto;
}

	.area-info {
		background-color: #F3F5DE;
    padding: 1em 2em;
		border-radius: 15px;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
    margin-top: 1em;
	}
	
	.area-info-txt01 {
		font-weight: 700;
		width: 30%;
	}
	
	.area-info-txt02 {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		width: 70%;
	}
	
	.area-info-list {
		font-size: 12px;
		width: 100%
	}
	.area-info-list.__last {
		width: 100%;
		font-size: 10px;
	}
	
.form-ttl-area {
	background-color: #F3F5DE;
	padding: 1em 0.5em;
	font-weight: 700;
	border-bottom:solid 5px #D4DE64;
	margin-bottom: 30px;
}
table.formTable{
	width:95%;
	margin:0 auto 30px;
	border-collapse:collapse;
}
table.formTable tr {
	border-top:1px dotted #707070;
}
table.formTable tr:first-child {
	border-top:none;
}
table.formTable td,table.formTable th{
	padding:1.5em 0
}
table.formTable th{
    vertical-align: top;
	width:30%;
	font-weight:normal;
	text-align:left;
}

table.formTable th.must::after {
	content: "必須";
	background-color: #982429;
	color: #fff;
	font-weight: 700;
	font-size: 10px;
	padding: 0.2em 1.5em;
	text-align: center;
	border-radius: 50vh;
	margin-left: 2em;
}

input {
	border: 1px solid #707070;
	padding: 3px;
}
textarea {
	border: 1px solid #707070;
	padding: 3px;
}
table.formTable td span {
	width: 20%;
    display: inline-block;
}
table.formTable td input {
	width: 80%;
}
table.formTable td.age-area input {
	width: 50px;
}
	table.formTable td.input-w100 input[type="text"], table.formTable td.input-w100 textarea {
		width: 100%!important;
	}

/*RadioとText*/
label.radio_text {
	cursor       : pointer;
	position     : relative;
	padding-left : 5px;
	margin-right : 20px;
	overflow     : hidden;
	padding-left : 20px;
	display      : inline-block;
}
label.radio_text:before {
	position      : absolute;
	width         : 16px;
	height        : 16px;
	border        : 1px solid #666;
	border-radius : 50%;
	left          : 0px;
	top           : 4px;
	content       : '';
	z-index       : 3;
}
label.radio_text:after {
	content          : '';
	position         : absolute;
	width            : 11px;
	height           : 11px;
	border-radius    : 100%;
	left             : 3px;
	top              : 7px;
	background-color : #D65;
	z-index          : 1;
}
label.radio_text input[type="radio"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	position   : absolute;
	z-index    : 2;
	width      : 20px;
	height     : 20px;
	left       : -23px;
	top        : 1px;
	margin     : 0px;
	box-shadow : 20px -1px #FFF;
}
label.radio_text input[type="radio"]:checked {
	box-shadow : none;
}
label.radio_text input[type="radio"]:focus {
	opacity    : 0.2;
	box-shadow : 20px -1px #FFF;
}


/*CheckBoxとText */
label.checkbox_text {
	cursor       : pointer;
	position     : relative;
	padding-left : 25px;
	margin-right : 20px;
	overflow     : hidden;
	position     : relative;
	padding-left : 25px;
	display      : inline-block;
	box-sizing   : border-box;
}
label.checkbox_text:before {
	content  : '';
	position : absolute;
	width    : 20px;
	height   : 20px;
	left     : 0px;
	top      : 0;
	border   : 1px solid #B3B3B3;
	z-index  : 3;
}
label.checkbox_text:after {
	content           : '';
	position          : absolute;
	top               : 40%;
	left              : 6px;
	display           : block;
	margin-top        : -8px;
	width             : 8px;
	height            : 12px;
	border-right      : 3px solid #D65;
	border-bottom     : 3px solid #D65;
	transform         : rotate(45deg);
	-webkit-transform : rotate(45deg);
	-moz-transform    : rotate(45deg);
	z-index           : 1;
}
label.checkbox_text input[type="checkbox"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	position   : absolute;
	left       : -40px;
	width      : 20px;
	height     : 20px;
	display    : block;
	box-shadow : 41px 0px #FFF;
	z-index    : 2;
	margin     : 0px;
	padding    : 0px;
}
label.checkbox_text input[type="checkbox"]:checked {
	box-shadow : none;
}
label.checkbox_text input[type="checkbox"]:checked:focus {
	box-shadow : 40px 0px #666;
	opacity    : 0.1;
}
label.checkbox_text input[type="checkbox"]:focus {
	box-shadow : 41px 0px #EEE;
}


/*プライバシーポリシー要素 */
.form-privacy-btn {
	text-align: center;
	margin-bottom: 20px;
}

.form-privacy-btn a {
	text-decoration: underline;
	color: #982429
}
.pp-ttl-area {
	margin-bottom: 15px;
	font-weight: 700
}

.pp-txt-area {
	text-align: left;
	margin-bottom: 15px;
}
.pp-subttl {
	font-weight: 700;
    margin-top: 20px;
}
.pp-txt {
	margin-bottom: 8px;
}


.submit-btn {
	max-width: 380px;
	width: 100%;
	margin: 0 auto;
}
/*送信ボタン */
input[type="submit"] {
    font-size: 15px;
	width: 100%;
    color: #fff;
	display: inline-block;
    padding: 15px 0px;
    text-align: center;
	background-color: #982429;
    border: 1px solid #982429;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 1s;
}

/*--hover--*/
input[type="submit"]:hover {
    color: #982429;
    background-color: #ffffff;
    border: 1px solid #982429;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 1s;
}

.caution-text-box {
	width: 100%;
	background-color: gainsboro;
	border-radius: 8px;
	padding: 2em;
	margin: 1em 0;
}
.caution-ttl {
	width: 100%;
	text-align: center;
	font-weight: 700;
}
.caution-txt {
	text-align: left;
	width: fit-content;
	margin: 0 auto;
}



@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}

@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	
	
	.form-ttl-area {
		margin-bottom: 0px;
	}
	
	/*===========
	.f_area　お問い合わせの流れ
	===========*/
	.scroll-box .f_area2 {
	  display: flex;
	  justify-content: flex-start;
		flex-wrap: initial;
	}
	.scroll-box .f_area2 .f_one {
	  width: 33.33%;
		flex: 0 0 70%;
		margin-right: 4%;
	}
	.scroll-box .f_area2 .f_one a {
	  display: block;
	  overflow: hidden;
	  backface-visibility: hidden;
	}
	.scroll-box .f_area2 .f_one a img {
	  max-width: 100%;
	  height: auto;
	  vertical-align: top;
	  transform: scale(1);
	  transition: .5s;
	}
	.scroll-box .f_area2 .f_one a img:hover {
	  transform: scale(1.1);
	}
	
	
	.form-step {
		margin-top: 3em;
		padding: 2em 2% 1em;
	}
	
	.form-btn-area {
    flex-direction: column;
    width: 90%;
	}
	
	.form-btn-box {
		width: 100%;
    	margin: 0 auto 20px;
	}
	.form-txt {
		font-weight: 700;
	}
	.form-txt span {
		font-weight: 500;
	}
	
	/* お問い合わせフォーム要素 */
	
	#formWrap {
		width:95%;
		margin:0 auto;
	}
	
	
	.area-info {
		flex-direction: column
	}
	
	.area-info-txt01, .area-info-txt02 {
		width: 100%;
	}
	
	.area-info-txt02 {
    margin-left: 2em;
    margin-top: 0.5em;
	}
	
	table.formTable th, table.formTable td {
		width:auto;
		display:block;
	}
	table.formTable th {
		margin-top:5px;
		border-bottom:0;
		padding:30px 0 0.5em 0;
		font-weight: 700;
		vertical-align: top;
		width:100%;
		text-align:left;
	}
	
	table.formTable td {
    padding: 0em 0 30px 1em;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		font-size: 14px;
	}
	table.formTable td input {
		width: 75%;
	}
	label.radio_text {
		margin: 0 auto 0 0;
	}
	table.formTable td.checkbox-area {
    	justify-content: flex-start;
	}
	table.formTable td.input-w100 input[type="text"], table.formTable td.input-w100 textarea {
		width: 100%!important;
	}
	table.formTable label.checkbox_text {
		width: 100%!important;
	}
	form input[type="text"], form textarea {
		width:80%;
		padding:0;
		margin: 1%;
		display:block;
	}
	 form input[type="reset"], form input[type="button"] {
		display:block;
		width:100%;
		height:40px;
	}
	table.formTable br {
		display: none;
	}
	table.formTable span {
		width: 23%
	}

	table.formTable td.age-area {
		justify-content: flex-start
	}

	
}

/*--------------
footer 要素
--------------*/

footer {
	background-color: #F8F9EF;
	padding: 65px 0 0;
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	max-width: 1220px;
	width: 90%;
	margin: 0 auto;
}

.footer-left {
	width: fit-content;
}

.footer-left img {
	width: 150px;
	
}

.footer-right {
	width: fit-content;
}

/* 会社概要 */
dl.ftr-info{
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: flex-start;	
	max-width: 420px;
	width: 100%;
	border-top: 1px solid #ccc;
	border-bottom: none;
}
dl.ftr-info.__last {
	border-bottom: 1px solid #ccc;
}
dl.ftr-info dt{
	padding: 5px;
	width: 150px;
	//border-bottom: 1px solid #ccc;
	height: 100%
}
dl.ftr-info dd{
	padding: 5px;
	width: 270px;
	//border-bottom: 1px solid #ccc;
}

.copyright {
	background-color: #E7ECBB;
	text-align: center;
	font-size: 10px;
	margin-top: 50px;
	padding: 1em 0;
}




@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}

@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	
	.footer-inner {
		flex-direction: column;
	}
	.footer-left {
    margin: 0 auto;
    text-align: center;
	}
	.footer-right {
		width: 100%;
    margin-top: 30px;
		font-size: 14px;
	}
	dl.ftr-info dt {
		width: 40%;
		
	}
	dl.ftr-info dd {
		width: 50%;
		
	}

	
	
	
	
}
	
	
	