@charset "UTF-8";
/* ========================================================================== 
 * Responsive 
 * ========================================================================== */ 
/*PCのみ表示(959px以下非表示)*/  
/*PCのみ表示(640px以下非表示)*/
@media screen and (max-width: 640px) {
	.visible-pc {
		display: none !important;
	}
}
/*SPのみ表示(641px以上非表示)*/
@media screen and (min-width: 641px) {
	.visible-sp {
		display: none !important;
	}
}
/*PCのみ非表示(640px以上非表示)*/
@media screen and (min-width: 640px) {
	.hidden-pc {
		display: none !important;
	}
	.visible-pc {
		display: block;
	}
}
/*SPのみ非表示(641px以下非表示)*/
@media screen and (max-width: 641px) {
	.hidden-sp {
		display: none !important;
	}
}
/*SPのみ非表示(599px以下非表示)*/ @media screen and (max-width: 599px) { 
	.hidden-sp { 
		display: none !important; 
	}  
}
/* ==========================================================================
 * Font face
 * ========================================================================== */
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 100;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 200;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 300;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 400;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Bold");
	font-weight: bold;
}
/* ==========================================================================
 * Root
 * ========================================================================== */
*,
::before,
::after {
	background-repeat: no-repeat;
	box-sizing: border-box;
}
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
}
body {
	margin: 0;
	font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", Meiryo, Osaka, sans-serif;
	font-size: 1.6em;
	font-size: 1.8rem;
	line-height: 1.5;
	color: #282a32;
	background-color: #E2E3DE;
}

/* ==========================================================================
 * HTML5 display definitions
 * ========================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}
audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}
audio:not([controls]) {
	display: none;
	height: 0;
}

/* ==========================================================================
 * Anchor
 * ========================================================================== */
a:link,
a:visited {
	background-color: transparent;
	color: #4f7aac;
	text-decoration: none;
}
a:active,
a:hover {
	outline: 0;
	text-decoration: underline;
}

/* ==========================================================================
 * Embedded
 * ========================================================================== */
img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: bottom;
}
svg:not(:root) {
	overflow: hidden;
}

/* ==========================================================================
 * Grouping
 * ========================================================================== */
figure {
	margin: 0;
}
hr {
	box-sizing: content-box;
	height: 0;
	border: none;
	border-top: 1px solid #bbb;
}
dd {
	margin-left: 0;
}

/* ==========================================================================
 * Float
 * ========================================================================== */
.clear {
	clear: both;
}
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}

/* ==========================================================================
 * List
 * ========================================================================== */
ul,
ol {
	padding: 0;
}
ul {
	margin: 0;
	list-style: none;
}
ul.list-disc {
	margin-left: 1.55em;
	list-style: disc;
}
ul.list-annotation {
	margin-left: 1.3em;
	font-size: 1.2rem;
    color: #85868c;
	width: 390px;
    margin: 0 auto;
}
ul.list-annotation li::before {
	margin-left: -1.3em;
	content: "※\0020";
}
ol {
	margin-left: 1.3em;
}
ol.list-annotation {
	margin-left: 2em;
	padding: 0;
	counter-reset: number;
	list-style: none;
}
ol.list-annotation li::before {
	margin-left: -2em;
	counter-increment: number;
	content: "※"counter(number)"\0020";
}

/* ==========================================================================
 * Text
 * ========================================================================== */
b,
strong {
	font-weight: bold;
}
mark {
	background: #ff0;
	color: #000;
}
small,
.txt-small{
	font-size: 80%;
}
.txt_list-annotation {
	font-size: 1.4rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
address {
	font-style: normal;
}
h1,
.h1 {
	font-size: 3.2rem;
	line-height: 1.2;
	margin: 0;
}
h2,
.h2 {
	font-size: 2.4rem;
	line-height: 1.2;
	margin: 0;
	text-align: center;
}
h3,
.h3 {
	font-size: 1.8rem;
	line-height: 1.2;
	margin: 0;
}
h4,
.h4 {
	font-size: 1.6rem;
	line-height: 1.2;
	margin: 0;
}
p {
	margin: 0;
}
p + p {
	margin-bottom: 0;
}
.txt-left {
	text-align: left;
}
.txt-center {
	text-align: center;
}
.txt-right {
	text-align: right;
}
.txt-unbold {
	font-weight: normal;
}
.txt-bold {
	font-weight: bold;
}
.txt-emphasis {
	color: #e74c3c;
}
.txt-notes {
	color: #7f8c8d;
}
.pink {
	color: #e4415f;
}
.yellow {
	color: #ffff8e;
}
/* ==========================================================================
 * Table
 * ========================================================================== */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
td,
th {
	padding: 0;
}

/* ==========================================================================
 * Form
 * ========================================================================== */
button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
	border: 1px solid #dddde4;
    border-radius: 5px;
    background: #fafafa;
	height: 50px;
	padding: 0 10px;
	font-size: 1.6rem;
    font-weight: 300;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	width: 100%;
	height: 30px;
    padding: 10px;
    font-size: 1.4rem;
    font-weight: 300;
}
button {
	overflow: visible;
	border: none;
	background: none;
}
button,
select {
	text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}
button[disabled],
html input[disabled] {
	cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
input {
	line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
textarea {
	overflow: auto;
}
@media screen and (max-width: 640px) {
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	textarea {
		font-size: 1.2rem;
	}
}
/* ==========================================================================
 * Spacing
 * ========================================================================== */
.margin-none  {margin:           0px !important;}
.padding-none {padding:          0px !important;}

.margin-T0    {margin-top:       0px !important;}
.margin-T5    {margin-top:       5px !important;}
.margin-T10   {margin-top:      10px !important;}
.margin-T15   {margin-top:      15px !important;}
.margin-T20   {margin-top:      20px !important;}
.margin-T25   {margin-top:      25px !important;}
.margin-T30   {margin-top:      30px !important;}
.margin-T35   {margin-top:      35px !important;}
.margin-T40   {margin-top:      40px !important;}
.margin-T45   {margin-top:      45px !important;}
.margin-T50   {margin-top:      50px !important;}
.margin-T60   {margin-top:      60px !important;}
.margin-T70   {margin-top:      70px !important;}
.margin-T80   {margin-top:      80px !important;}
.margin-T90   {margin-top:      90px !important;}
.margin-T100  {margin-top:     100px !important;}

.margin-R0    {margin-right:     0px !important;}
.margin-R5    {margin-right:     5px !important;}
.margin-R10   {margin-right:    10px !important;}
.margin-R15   {margin-right:    15px !important;}
.margin-R20   {margin-right:    20px !important;}

.margin-B0    {margin-bottom:    0px !important;}
.margin-B5    {margin-bottom:    5px !important;}
.margin-B10   {margin-bottom:   10px !important;}
.margin-B15   {margin-bottom:   15px !important;}
.margin-B20   {margin-bottom:   20px !important;}

.margin-L0    {margin-left:      0px !important;}
.margin-L5    {margin-left:      5px !important;}
.margin-L10   {margin-left:     10px !important;}
.margin-L15   {margin-left:     15px !important;}
.margin-L20   {margin-left:     20px !important;}

.padding-T0   {padding-top:      0px !important;}
.padding-T5   {padding-top:      5px !important;}
.padding-T10  {padding-top:     10px !important;}
.padding-T15  {padding-top:     15px !important;}
.padding-T20  {padding-top:     20px !important;}
.padding-T25  {padding-top:     25px !important;}
.padding-T30  {padding-top:     30px !important;}
.padding-T35  {padding-top:     35px !important;}
.padding-T40  {padding-top:     40px !important;}
.padding-T45  {padding-top:     45px !important;}
.padding-T50  {padding-top:     50px !important;}
.padding-T60  {padding-top:     60px !important;}
.padding-T70  {padding-top:     70px !important;}
.padding-T80  {padding-top:     80px !important;}
.padding-T90  {padding-top:     90px !important;}
.padding-T100 {padding-top:    100px !important;}

.padding-R0   {padding-right:    0px !important;}
.padding-R5   {padding-right:    5px !important;}
.padding-R10  {padding-right:   10px !important;}
.padding-R15  {padding-right:   15px !important;}
.padding-R20  {padding-right:   20px !important;}

.padding-B0   {padding-bottom:   0px !important;}
.padding-B5   {padding-bottom:   5px !important;}
.padding-B10  {padding-bottom:  10px !important;}
.padding-B15  {padding-bottom:  15px !important;}
.padding-B20  {padding-bottom:  20px !important;}

.padding-L0   {padding-left:     0px !important;}
.padding-L5   {padding-left:     5px !important;}
.padding-L10  {padding-left:    10px !important;}
.padding-L15  {padding-left:    15px !important;}
.padding-L20  {padding-left:    20px !important;}

/* ==========================================================================
 * Common
 * ========================================================================== */
#page_container {
	max-width: 640px;
	margin: 0 auto;
	background: #fff;
}
.inner_width {
	width: 95%;
	margin-right: auto;
	margin-left:  auto;
	max-width: 608px;
}
/*-------------------- Back to Top --------------------*/
a.backtotop {
	position: fixed;
	bottom: 80px;
	right: 1%;
	width: 40px;
	height: 40px;
	padding: 38px 0 0;
	background-color: #ccc;
	color: #fff;
	text-align: center;
	font-size: 14px;
	cursor: pointer;
	opacity: .5;
	border-radius: 50%;
}
a.backtotop::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 10px 17.3px 10px;
	border-color: transparent transparent #ffffff transparent;
}
.annotation {
	display: block;
	text-align: left;
	font-size: 1.2rem;
	color: #8b7355;
}
@media screen and (max-width: 640px) {
	img {
		width: 100%;
	}
}
/* ==========================================================================
 * Header
 * ========================================================================== */
.header__wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
	width: 100%;
	max-width: 608px;
	position: fixed;
	z-index: 1000;
}
@media screen and (max-width: 640px) {
	.header__wrap {
		max-width: none;
	}
}
.header__cta {
	margin-top: 0;
	cursor: pointer;
	filter: drop-shadow(0px 4px 2px rgba(0,0,0,0.2));
}
.header__cta img:hover {
    opacity: 0.7;
    transform: scale(0.99);
}
.header__logo {
	width: 100px;
	display: flex;
	min-width: 100px;
}
#page-container > header > div > div > li.visible-sp {
	list-style: none;
}
.gnavi {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: right;
}
.gnavi__list {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.gnavi__list li {
	text-align: center;
	font-size: 1.6rem;
	padding: 0 8px;
	border-right: solid 1px #e0690f;
}
.gnavi__list li:last-child {
	border: none;
}
.gnavi__list li a {
	color: #000;
	text-decoration: none;
}
/* hamburger menu */
.menu__btn {
	align-items: center;
	display: flex;
	height: 30px;
	justify-content: center;
	top: auto;
	right: 15px;
	padding: 30px 0;
	z-index: 90;
	width: 30px;
}
@media screen and (max-width: 640px) {
	.menu__btn {
		position: fixed;
		top: auto;
		right: 15px;
	}
}
.menu__btn span,
.menu__btn span:before,
.menu__btn span:after {
	content: '';
	background: #565656;
	border-radius: 3px;
	display: block;
	height: 3px;
	position: absolute;
	width: 25px;
}
.menu__btn span:before {
	bottom: 8px;
}
.menu__btn span:after {
	top: 8px;
}
#menu__btn--check:checked ~ .menu__btn span {
	background-color: rgba(255, 255, 255, 0);
}
#menu__btn--check:checked ~ .menu__btn span::before {
	bottom: 0;
	transform: rotate(45deg);
}
#menu__btn--check:checked ~ .menu__btn span::after {
	top: 0;
	transform: rotate(-45deg);
}
#menu__btn--check {
	display: none;
}
.gnavi__hamburger-menu {
	background: #fff;
	height: 100%;
	position: fixed;
	top: 0;
	left: 100%;
	z-index: 80;
	transition: all 0.5s;
	width: 100%;
	max-width: 640px;
}
#menu__btn--check:checked ~ .gnavi__hamburger-menu {
	left: 50%;
	transform: translateX(-50%);
}
.gnavi__hamburger-menu ul {
	padding: 70px 10px 0;
}
.gnavi__hamburger-menu ul li {
	border-bottom: solid 1px #e0690f;
	list-style: none;
	padding: 0 0 0 3%;
	width: 100%;
}
.gnavi__hamburger-menu ul li a {
	box-sizing: border-box;
	color: #333;
	display: block;
	font-size: 15px;
	padding: 18px 15px 15px 0;
	position: relative;
	text-decoration: none;
	width: 100%;
	font-family: "Shippori Mincho", serif;
}
.gnavi__hamburger-menu ul li a::before {
	border-top: solid 2px #d9832f;
	border-right: solid 2px #d9832f;
	content: "";
	height: 7px;
	transform: rotate(45deg);
	position: absolute;
	right: 11px;
	top: 26px;
	width: 7px;
}
.gnavi__hamburger-menu ul li:last-child {
	border-bottom: none;
	margin: 20px 0 0;
}
.gnavi__hamburger-menu ul li:last-child a::before {
	border-top: none;
	border-right: none;
	display: none;
}
.navi__link {
	background: none;
}
.navi__link a {
	filter: drop-shadow(0px 4px 2px rgba(139, 115, 85, 0.4));
}
/* /hamburger menu */
/* ==========================================================================
 * Header
 * ========================================================================== */
#fv {
	max-width: 640px;
}
.fv__bg {
	display: flex;
    justify-content: space-between;
}
/* ==========================================================================
 * cta
 * ========================================================================== */
.cta {
	background: url(../../../html02/assets/images/cta_bg@2x.jpg);
	text-align: center;
	padding: 40px 0;
}
.cta__cont {
	margin-bottom: 5%;
}
.btn__microcppy {
	margin-bottom: 3%;
}
.cta__btn {
	margin-bottom: 5%;
}
.btn {
	filter: drop-shadow(0px 4px 2px rgba(139, 115, 85, 0.4));
}
.five__benefit {
	margin-bottom: 6%;
	filter: drop-shadow(0px 4px 2px rgba(139, 115, 85, 0.5));
}
/* ==========================================================================
 * work
 * ========================================================================== */
#work {
	background: #fff;
	padding-top: 50px;
}
#work h2 {
	margin-bottom: 20px;
}
.work__cont {
	display: flex;
	justify-content: center;
}

/* ==========================================================================
 * point
 * ========================================================================== */
#point {
	background: #fff;
	padding: 50px 0;
}
#point h2 {
	margin-bottom: 20px;
}
.point__cont {
	display: flex;
	justify-content: center;
}
.worries__cont,
.solution__cont {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

/* ==========================================================================
 * choice
 * ========================================================================== */
#choice {
	background: #efefef;
	padding: 50px 0;
}
#choice h2 {
	margin-bottom: 20px;
}
.choice__cont {
	display: flex;
	justify-content: center;
}

/* ==========================================================================
 * flow
 * ========================================================================== */
#flow {
	background: #fff;
	margin-top: -20%;
}
#flow h2 {
	margin-bottom: 20px;
}
.flow__step {
	display: flex;
	justify-content: center;
}

/* ==========================================================================
* studio
* ========================================================================== */
#studio {
	background-color: #e9f5f1;
    padding: 50px 0;
	font-family: "Shippori Mincho", serif;
  	font-weight: 400;
  	font-style: normal;
}
.prefecturList {
	background-color: #87ab9d;
	color: #fff;
	font-weight: 400;
	font-size: 2.0rem;
	padding: 10px 60px 10px 1em;
	margin-top: 20px;
	position: relative;
	cursor: pointer;
}
.prefecturList + dd {
	display: none;
}
.city_name {
	background-color: #fff;
    color: #565656;
    font-weight: 400;
    font-size: 2.0rem;
    padding: 10px 60px 10px 1em;
    margin: auto;
    margin-top: 10px;
	position: relative;
	cursor: pointer;
}
.city_name_mini {
	background-color: #999;
    width: 880px;
    margin: 15px auto 5px;
    padding: 5px 60px 5px 1em;
    color: #fff;
    font-weight: bold;
}
.textList {
	margin: 0px auto 33px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	justify-content: left;
    gap: 12px;
}
.textList ::after {
	content: '';
	display: block;
	width: 285px;
}
.textList li {
	margin-top: 10px;
    padding: 6% 5%;
    background-color: #fff;
	overflow: hidden;
}
.textList li .ttl span {
	margin-right: 8px;
    display: inline-block;
    width: 82px;
    vertical-align: 4px;
}
.textList li .ttl {
	font-size: 1.6rem;
	color: #689685;
	font-weight: bold;
	padding-bottom: .5em;
    border-bottom: 1px solid #689685;
}
.textList li dl {
	display: flex;
    flex-wrap: wrap;
    font-size: 1.6rem;
    margin: 6.5% 0 0;
}
.textList li dt {
	color: #87ab9d;
	font-weight: bold;
	margin: 10px 0 0;
	width: 25%;
}
.textList li dd {
	margin: 10px 0 0 10px;
	width: calc(75% - 10px);
}
.prefecturList::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1em;
    width: 20px;
    height: 20px;
    background: url(../../../html02/assets/images/plus_h.png) center center / cover no-repeat;
    transform: translateY(-50%);
}
.prefecturList.open::after {
	content: "";
    position: absolute;
    top: 50%;
    right: 1em;
    width: 20px;
    height: 2px;
    background: url(../../../html02/assets/images/minus_h.png) center center / cover no-repeat;
    transform: translateY(-50%);
}
.city_name::after {
	content: "";
    position: absolute;
    top: 50%;
    right: 1em;
    width: 20px;
    height: 20px;
    background: url(../../../html02/assets/images/plus_h-black@2x.png) center center / cover no-repeat;
    transform: translateY(-50%);
}
.city_name.open::after {
	content: "";
    position: absolute;
    top: 50%;
    right: 1em;
    width: 20px;
    height: 20px;
    background: url(../../../html02/assets/images/plus_h-black@2x.png) center center / cover no-repeat;
    transform: translateY(-50%);
}
details[open] .city_name::after {
	content: "";
    position: absolute;
    top: 50%;
    right: 1em;
    width: 20px;
    height: 2px;
    background: url(../../../html02/assets/images/minus_h-black@2x.png) center center / cover no-repeat;
    transform: translateY(-50%);
}
/* ==========================================================================
 * faq
 * ========================================================================== */
#faq {
	font-family: "Shippori Mincho", serif;
  	font-weight: 400;
  	font-style: normal;
	background: #f8f6f3;
	padding: 50px 0;
}
#faq h2 {
	margin-bottom: 10%;
}
#faq ul li+li{
	margin-top: 6.5%;
}
.faq__qaList dt {
	background-color: #8b7355;
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: -0.49px;
	color: #fff;
	padding: 6.5% 12% 6.5% 6.5%;
	position: relative;
	cursor: pointer;
}
.faq__qaList dt.open::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 5%;
    width: 20px;
    height: 20px;
    background: url(../../../html02/assets/images/plus_h.png) center center / cover no-repeat;
    transform: translateY(-50%);
}
.faq__qaList dt.close::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5%;
    width: 20px;
    height: 2px;
    background: url(../../../html02/assets/images/minus_h.png) center center / cover no-repeat;
}
.faq__qaList dd {
	background: #fff;
	font-size: 1.6rem;
    padding: 5.5% 8%;
	display: none;
	text-align: justify;
}
.faq__cta {
	margin-top: 6%;
	filter: drop-shadow(0px 4px 2px rgba(139, 115, 85, 0.5));
}

/* ==========================================================================
 * float cta
 * ========================================================================== */
.ft__cta {
	display: block;
	background: #fff;
	padding: 10px 20px 20px;
	position: fixed;
	bottom: 0;
	max-width: 640px;
	box-shadow: 0px -3px 10px 4px rgba(212, 201, 187, 0.4);
}
.ft__cta p a {
	filter: drop-shadow(0px 4px 2px rgba(139, 115, 85, 0.5));
}
/* ==========================================================================
 * footer
 * ========================================================================== */
footer {
	color: #fff;
	background: #eae4dd;
	display: block;
	font-size: 1.4rem;
	margin-bottom: 0;
	font-family: "Shippori Mincho", serif;
  	font-weight: 400;
  	font-style: normal;
}
footer ul {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5% 0;
}
footer ul li {
	padding: 0px 10px;
	display: inline;
}
footer a:link, footer a:visited {
	color: #8b7355;
	text-decoration: underline;
}
.copyright {
	background: #fff;
	color: #565656;
	padding: 20px;
	text-align: center
}