@charset "UTF-8";
/* CSS Document */

html {
  scroll-padding-top: 70px;
}

/*--------------------
FONT
--------------------*/
@font-face {
	font-family: 'Noto Sans Japanese';
	font-style: normal;
	font-display: swap;
	font-weight: normal;
	src: url(../font/NotoSans_Regular.woff2) format('woff2'),
		url(../font/NotoSans_Regular.woff) format('woff'),
		url(../font/NotoSans_Regular.otf) format('opentype');
	font-display: swap;
}

@font-face {
	font-family: 'Noto Sans Japanese';
	font-style: normal;
	font-display: swap;
	font-weight: bold;
	src: url(../font/NotoSans_Bold.woff2) format('woff2'),
		url(../font/NotoSans_Bold.woff) format('woff'),
		url(../font/NotoSans_Bold.otf) format('opentype');
	font-display: swap;
}

/*--------------------
COMMON
--------------------*/

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  font-style: normal;
  border: 0;
  box-sizing: border-box; }

html {
	height: 100%;
    font-size: 62.5%;
}

html>

/**/
body {
	overflow: -moz-scrollbars-vertical;
}

html:first-child body {
	min-height: 100%;
	padding-bottom: 1px;
}

body {
	margin: 0;
	padding: 0;
	border: 0;
	/**/
	background: #fff;
	color: #4a4a4a;
	font-size: 1.6rem;
	font-family: "Noto Sans Japanese", Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", Verdana, "ＭＳ Ｐゴシック", sans-serif;
	text-align: justify;
}

strong {
	font-weight: bold;
}

em{color:#d87228;}

.caption {
    font-size: 80%;
    line-height: 1.5em;
	margin-bottom: 3.5em;
}

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

img {
	max-width: 100%;
}

a {
	text-decoration: none;
    color: #d87228;
    transition: .5s;
}

a:hover {
	/**/
	opacity: 0.7;
	transition: .5s;
}

p {
	/**/
	margin-bottom: 1.2em;
}

.longurl{word-break: break-all;}

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

.sp {
  display: none; }
  @media only screen and (max-width: 768px) {
    .sp {
      display: block; } }

/*--------------------
BUTTON
--------------------*/
.btn {
	text-align: center;
	/**/
	margin: 0 auto 30px;
}

.btn a {
	position: relative;
	display: inline-block;
	padding: 1em 1.5em;
	color: #FFF;
	background: #d87228;
	/*border-radius: 3px;*/
}


.btn.white a {
	color: #4a4a4a;
	background: #FFF;
}

.btn a:before{
	display: inline-block;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	vertical-align: baseline;
	content: "\f054";
    padding-right: 5px;
}

.btn a:hover {
	background:#c3c3c3;
    opacity: 1;
}

input[type="submit"],input[type="reset"],
input[type="button"]{
  appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  cursor: pointer;
  transition : all 0.5s ease 0s;
}
input[type="submit"],input[type="reset"],
input[type="button"]{
  position: relative;
  /*display: block;*/
  padding: 0.8em;
  color: #fff;
  /*line-height: 1;*/
  text-align: center;
  background: #d87228;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover{
	background:#000;
}

/*--------------------
A:BEFORE
--------------------*/
.arrow:before,
.blank:before {
	display: inline-block;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	vertical-align: baseline;
}

.blank:before {
	/**/
	content: "\f35d";
	padding-right: 5px;
}

.arrow:before {
	/**/
	content: "\f105";
	padding-right: 5px;
}

/*--------------------
GRID
--------------------*/
.grid,
.flex2,
.flex2-2,
.flex3,
.flex4,
.flex5,
.flex6{
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: stretch;
	/*   Safari etc. */
	-ms-align-items: stretch;
	/*  IE10        */
	align-items: stretch;
	-webkit-flex-wrap: wrap;
	/* Safari6.1以降 */
	-ms-flex-wrap: wrap;
	/*IE10*/
	flex-wrap: wrap;
}

/* 最終行の間隔調整 */
.flex4:before,
.flex5:before,
.flex6:before{
	content: "";
	display: block;
	order: 1;
}

.flex3:after,
.flex4:after,
.flex5:after,
.flex6:after{
	content: "";
	display: block;
}

.grid3-2 {
	width: 65.667%;
}

.grid4-3 {
	width: 74.25%;
}

.grid4-2,
.flex2>*,
.flex2-2>* {
	width: 48.5%;
}

.grid3-1,
.flex3>*,
.flex3:after {
	width: 31.333%;
}

.grid4-1,
.flex4>*,
.flex4:before,
.flex4:after {
	width: 22.75%;
}

.flex5>*,
.flex5:before,
.flex5:after {
	width: 17.6%;
}

.flex6>*,
.flex6:before,
.flex6:after {
	width: 15.8333%;
}

.grid>*,
.flex2>*,
.flex2-2>*,
.flex3>*,
.flex4>*,
.flex5>*,
.flex6>*{
	margin-bottom: 30px;
}



/*--------------------
HEADER
--------------------*/
.head,
/*.head nav,*/
.foot {
}

header {
	width: 100%;
	/**/
}

.head {
	/*position: relative;
	width: 100%;
	height: 100px;*/
	display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 2.2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    transition: 0.3s;
	height: 86px;
    background-color:rgb(0 0 0 / 50%);
}
#index .head{background:transparent;}

.head.change-color {
    background-color:rgb(0 0 0 / 50%)!important;
    transition: 0.3s;
}

#page .head {
    background-color: rgb(255 255 255 / 76%);
}
#page .head nav ul li span {
    color: #ecbd2c;
    text-shadow: none;
}

.head h1 {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	text-indent: -9999px;
	margin-bottom: 0;
	width: 180px;
}

.head h1 a {
	display: block;
	background: url("../img/logo.png") no-repeat center left /contain;
}


.head nav {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	/*width: calc(100% - 200px);*/
}

.head nav a {
	/*font-size: 90%;*/
	line-height: 1.2em;
	font-weight: medium;
	color: #FFF;
	text-decoration: none;
    display: block;
	padding-bottom: 6px;

}

.head nav a:before {
    content: "\f078";
    padding-right: 5px;
	display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    vertical-align: baseline;
}

.head nav a.arrow:before {
    content: "\f054";
    padding-right: 5px;
	display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    vertical-align: baseline;
}

.head nav ul li{
}

.head nav ul li span{
	display: block;
    font-size: 70%;
    color: #ffffff;
	font-weight: normal;
	text-shadow: 0px 0px 2px #695a55;
}

.head nav a.contact {
    background: #d87228;
    padding: 10px 30px;
    border-radius: 30px;
}

.head ul {
	padding: 0;
}

.head li {
	display: inline-block;
	/**/
	margin-left: 20px;
}

.head li a:hover {
	/*border-bottom:2px solid #FFF;*/
}

.sp-bottom{
    display: none;
}

@media only screen and (max-width: 640px) {
	
.fixed.head {
    height: 72px;
}
	
.head {
    padding: 1rem 1.5rem;
    height:60px;
	}
	
.head h1 a {
    height: auto !important;
}
}

#spnav {
	display: none;
}

/* slider用css ここまで */


.eye{
    /*height: 100vh;*/
    width: 100%;
    display: flex;
    /*justify-content: center;
    align-items: center;*/
    position: relative;
}

.eye h2,.eye .btn{
    text-align: left;
}

.eye h2{
    /*font-size:2rem;*/
    color:#FFF;
    margin-bottom: 0.5em;
    line-height: 1.3em;
    font-size: 4rem;
}

@media only screen and (max-width: 640px) {
.eye h2{
    font-size: 3rem;
}
}

.resolution strong {
    font-weight: bold;
    color: #d22b0b;
    /*font-size: 1.2rem;*/
}

/*
.eye .form{
    position:absolute;
    top: 0;
}
*/

/* video */

.video-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.video {
  /*position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);*/
  object-fit: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.overlay::after {
  position: absolute;
    content: "";
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    background-image: radial-gradient(black 20%, transparent 20%), radial-gradient(black 20%, transparent 20%);
    background-size: 3px 3px;
    background-position: 0 0, 3px 3px;
}

.eye .text_box{
    position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.eye .text_box a.arrow{
    color:#FFF;
}

.eye .grid {
    align-items: center;
}

.text_box{
    /*color:#FFF;*/
}

@media only screen and (max-width: 1080px) {  
.text_box .grid3-1{
    display: none;    
}  
.text_box .grid3-2{
    width: 100%;    
}    
}     
    
@media only screen and (max-width: 640px) {
.video-box {
    height: 600px;
}
}

/*--------------------
CONTENTS
--------------------*/

.contents #contents{
    margin-top: 100px;   
}

#contents,
aside {
	width: 100%;
}

article {
	margin: 0 auto;
	/**/
	padding: 50px 0;
	width: 90%;
	max-width: 900px;
}

aside {
	/**/
	padding: 50px 0;
	background: #eee;
	text-align: center;
}

section {
  padding: 70px 0;
  overflow: hidden;
}

section:last-child,
section> :last-child {
	margin-bottom: 0;
}


section.bg_orange01 {
    background: #f9eee6;
}

section.bg_orange02 {
    background: #e08e53;
}

section.bg_yellow {
    background: #f4f2d3;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%; }

.narrow {
  max-width: 800px;
  margin: 0 auto; }

/*--------------------
FOOTER
--------------------*/
footer {
	/**/
	background:#fff;
	padding: 50px 0;
	font-size: 90%;
	border-top: 1px solid #eee;
}

footer img{
	display:block;
}

.foot {
	-webkit-align-items: stretch;
	/*   Safari etc. */
	-ms-align-items: stretch;
	/*  IE10        */
	align-items: stretch;
	width: 90%;
	margin: 0 auto 50px;
	padding: 0 0 40px;
    border-bottom: 1px solid #eee;
}

.foot>div {
	/*width: 70%;*/
}

.foot img {
	margin-bottom: 10px;
	width: 250px;
}

footer nav {
	justify-content: flex-end;
}

footer nav ul{
    line-height: 2em;
	float: right;
}
footer nav li{
    list-style: none;
	display: inline;
	padding-left: 20px;
}

footer nav ul li a:before{
	display: inline-block;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	vertical-align: baseline;
	content: "\f0da";
    padding-right: 5px;
}

footer small {
    display: block;
    text-align: left;
    margin-top: 15px;
    color: #83736c;
    margin-left: 10px;
}

.copy {
    text-align: center;
    font-size: 90%;
    color: #83736c;
}

#pagetop {
	position: fixed;
	z-index: 30;
	/**/
	width: 50px;
	height: 50px;
	bottom: 10px;
	right: 0px;
	line-height: 50px;
	background: #5c3c32;
	color: #fff;
	font-size: 30px;
	transition: .3s;
}

#pagetop:before {
	display: inline-block;
	width: 100%;
	text-align: center;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	vertical-align: baseline;
	/**/
	content: "\f106";
}

#pagetop:hover {
	/**/
	line-height: 30px;
}

/*--------------------
TITLE
--------------------*/
h1 {
	/**/
	text-align: center;
	margin-bottom: 1.5em;
	font-size: 3.2rem;
}

h2 {
	/**/
	margin-bottom: 1.25em;
	font-size: 3rem;
	text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
}

span.number {
    font-size: 140%;
    color: #d87228;
}

h3 {
	/**/
	margin-bottom: 0.5em;
	font-size: 2rem;
    font-weight: 600;
}

h4{
	/**/
	margin-bottom: 0.5em;
	font-size: 120%;
}

h5 {
	/**/
	margin-bottom: 0.5em;
	font-size: 100%;
}

@media only screen and (max-width: 640px) {
h2 {
	/**/
	font-size: 2.5rem;
    line-height: 1.3em;
    margin-bottom: 1.2em;
}

h3 {
	/**/
	font-size: 1.8rem;
    line-height: 1.3em;
}

h4{
	/**/
} 
}

#breadcrumbs {
	display: block;
	width: 100%;
	/**/
	padding: 10px 30px;
	text-align: center;
	/*background: #eee;*/
	font-size: 85%;
}

#breadcrumbs a:after {
	display: inline-block;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	/**/
	margin: 0 0.7em;
	color: #555;
	content: "\f105";
}

/*--------------------
TABLE
--------------------*/
table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	/**/
	margin: 0 0 30px;
	border-top: #ccc 1px solid;
}

th,
td {
	/**/
	padding: 0.75em 15px;
	border-bottom: #ccc 1px solid;
	line-height: 1.4em;
}

th {
	white-space: nowrap;
	/**/
	background: #dbd7d6;
	/*text-align: right;*/
}


td {
	background: #FFF;
}

/*--------------------
form
--------------------*/
.form {
  /*margin-top: 80px;*/
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
}
@media screen and (max-width: 480px) {
  .form {
    margin-top: 40px;
  }
}
.form-item {
  padding-top: 5px;
  padding-bottom: 8px;
  width: 100%;
  /*display: flex;*/
  display: inline-block;    
  align-items: center;
}
@media screen and (max-width: 480px) {
  .form-item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.form-item-label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  /*font-size: 18px;*/
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .form-item-label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.form-item-label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .form-item-label.isMsg {
    margin-top: 0;
  }a
}
.form-item-label-Required {
  border-radius: 2px;
    margin-right: 8px;
    /* padding-top: 8px; */
    /* padding-bottom: 8px; */
    /* width: 48px; */
    display: inline-block;
    text-align: center;
    background: #d2663b;
    color: #fff;
    font-size: 12px;
    padding: 2px 5px;
}
@media screen and (max-width: 480px) {
  .form-item-label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.form-item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  /*margin-left: 40px;*/
  padding-left: 1em;
  padding-right: 1em;
  height:40px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #f7f7f7;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .form-item-Input {
    margin-left: 0;
    /*margin-top: 18px;*/
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.form-item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  /*margin-left: 40px;*/
  padding-left: 1em;
  padding-right: 1em;
  height: 100px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #f7f7f7;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .form-item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}


.form_eye {
  /*margin-top: 80px;*/
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  /*font-size:12px;*/
  background: #FFF;
  padding: 30px 30px 10px;
  border-radius:10px;
}

.form_eye .form-item-label{
    /*font-size: 12px;*/
    margin-bottom: 0.3em;
}

.form_eye input.btn {
    position: relative;
    display: block;
    padding: 1em 2em;
    color: #FFF;
    font-weight: medium;
    background: #d87228;
    text-align: center;
    border-radius: 3px;
    margin: 0 auto 10px;
}

.form_eye h3 {
    font-size: 115%;
}

/*--------------------
LIST
--------------------*/
ul,
ol {
	/**/
	padding-left: 1.2em;
}

article ul,
article ol {
	/**/
	margin-bottom: 30px;
}

.ul_nav {
	padding-left: 0;
	list-style: none;
	text-align: center;
	/**/
	margin-bottom: 30px;
}

.ul_nav li {
	display: inline-block;
	/**/
	margin: 0 3px 10px;
	font-size: 90%;
}

.ul_nav a {
	display: inline-block;
    width: 100%;
    padding: 0.8em 1.8em;
    background: #ecbd2c;
    color: #ffffff;
    border-radius: 4px;
}

.ul_nav a:before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	/**/
	padding: 0 5px 0 0;
	content: "\f107";
}

@media screen and (max-width:640px) {
.ul_nav li{
	display: block;
}
}

table :last-child,
ul :last-child,
ol :last-child,
dl :last-child {
	margin-bottom: 0;
}

.scroll-up {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(0px);
  transition: all 1s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
/* page */
.privacy {
    font-size: 14px;
    line-height: 1.5em;
    padding: 20px;
    border: 1px solid #f2f2f2;
    max-height: 200px;
    overflow-y: auto;
    margin: 30px 0;
}
    .privacy p {
      margin: 0 0 20px;
      margin: 0 0 25px; }
    .privacy::-webkit-scrollbar {
      width: 10px; }
    .privacy::-webkit-scrollbar-track {
      box-shadow: 0 0 2px #adadad; }
    .privacy::-webkit-scrollbar-thumb {
      background: #ADADAD;
      border-radius: 10px; }

#flow .flex5 div > .flow_img{
        position: relative;
}
#flow .flex5 div > .flow_img::before{
    content: "";
    position: absolute;
    top: 45%;
    bottom: 0;
    left: -11%;
    /*margin: auto;*/
    box-sizing: border-box;
    width: 15px;
    height: 15px;
    border: 15px solid transparent;
    border-left: 15px solid #e1a478;
}

#flow .flex5 div > .flow_img.first::before{
    display: none;
}

#flow h3 {
    margin: 10px 0 8px;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}

@media screen and (max-width:640px) {
    
#flow .flex5 div > .flow_img::before{
    display: none;
    }
    
#flow .flex5 > div p{
        position: relative;
}  
#flow .flex5 > div::after{
    content: "";
    position: relative;
    bottom: -5%;
    left: 46%;
    right:50%;
    transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
    /*margin: auto;*/
    box-sizing: border-box;
    width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #e1a478;
}    
#flow .flex5 > div.last::after{
    display: none;
}
/*    
#flow .flex5 > div:not(:first-child)::before{
    top: -25px;
    bottom: 0;
    left: calc(50% - 15px);
    width: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid #e1a478;
    height: 18px;
    margin: 0;
}
*/    
    
    #flow .flex5 > div {
    padding-top: 15px;
}   
}

#flow .flex5 > div img {
    background: #FFF;
    border-radius: 50%;
    padding: 20px;
    margin: 0 auto;
    width: 100%;
    display: block;
}

@media screen and (max-width:640px) {
#flow .flex5 > div img {
    background: #FFF;
    border-radius: 50%;
    padding: 20px;
    margin: 0 auto;
    width: 70%;
}
}    

#worries .flex4 > div{
    border: 3px solid #d87228;
    padding: 15px 25px;
    border-radius:8px;
    position: relative;
    margin-bottom:20px;
}

    #worries .flex4 > div:last-of-type{
        margin-bottom:15px;
    }

#worries .flex4 > div p{
    margin-bottom: 0;
    color: #d87228;
    font-weight: 600;
}

#worries .flex4 > div:before{
    display: block;
    text-align: center;
    content: '';
    /*width: 1.3em;*/
    height: 2em;
    background-image: url("../img/question.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-bottom: 8px;
    top: 50%;
    left: 10px;
}

.resolution{
        text-align: center;
}

    .resolution p{
        color: #d87228;
        font-size: 2.5rem;
        font-weight:600;
        /*border-bottom: 3px dotted;*/
        display: inline-block;
        padding: 5px;
        margin-bottom:0;
        text-decoration: underline dotted #d87228;
        -webkit-text-decoration: underline dotted #d87228;
        text-underline-offset: 12px;
        line-height: 1.9em;
    }
    
@media screen and (max-width:640px) {
    
#worries .flex4 > div {
    /*padding: 15px 18px;*/
}
    
#worries .flex4 > div p{
    font-size: 85%;
    line-height: 1.5em;
    padding-left: 35px;
}
#worries .flex4 > div:before{
    position: absolute;
    width: 2em;
    /* margin-right: 8px; */
    /* margin-bottom: 0; */
    left: 10px;
    top: 50%;
    left: 30px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
    
.resolution p{
    font-size: 2.1rem;
    text-underline-offset: 8px;
}

}

#feature .point{
    position: relative;
}
#feature h2 {
    margin-bottom: 30px;
}
#feature .point p{
    position: absolute;
    background: #d87228;
    color: #FFF;
    text-align: center;
    display: inline-block;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 200px;
    padding: 5px;
    vertical-align: baseline;
    border-radius: 3px;
    letter-spacing: 1px;
    font-weight:bold;
}

#feature .point p span {
    margin-left: 5px;
    font-size: 140%;
    vertical-align: inherit;
}

#feature .point img{
    margin-bottom: 8px;
}

.genre{
    text-align: center;
}

.genre h3 {
    margin:1em 0 1.5em;
}

#price h3{
    text-align: center;
}

ul.option {
    padding-left: 0;
    text-align: center;
}

    ul.option li {
        background: #FFF;
        list-style: none;
        align-items: stretch;
        display: table-row;
        padding: 20px 15px;
        margin: 3px 0 0;
        line-height: 1.3em;
        flex-grow: 1;
        margin-left: 3px;
    }


@media screen and (max-width:640px) {
ul.option li {
      width:47%;
      font-size: 1.2rem;
      padding: 12px 10px;
    }  
}

/*details {
  transition: .5s;
}*/

.faq {
    padding: 30px 0 20px;
    background: var(--white);
}

.qa-box {
    /*max-width: 500px;*/
    margin-bottom: 5px;
    /*border-bottom: 2px solid #d6dde3;*/
}

.qa-box summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
    background: #FFF;
    text-align: left;
}

summary::after {
transition: transform 0.5s;
}

.qa-box summary::before,
.qa-box p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-box summary::before {
    color: #d87228;
    content: "Q";
}

.qa-box summary::after {
    /*transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #777;
    border-right: 3px solid #777;
    content: '';*/
    transition: transform .5s;
    content: "\2b";
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    vertical-align: baseline;
    padding-left: 20px;
}

.qa-box[open] {
    animation: fadein 0.5s ease;
}

.qa-box[open] summary::after {
    /*transform: rotate(225deg);*/
    content: "\f068";
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    vertical-align: baseline;
}

.qa-box p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 1em 2em 1em 3em;
    color: #333;
    transition: transform .5s, opacity .5s;
    background: #FFF;
}

.qa-box[open] p {
    transform: none;
    opacity: 1;
    background: #fdf7f2;
    border-top: 1px solid #eee;
}

.qa-box p::before {
    color: #d87228;
    line-height: 1.2;
    content: "A";
}

#service p{
    text-align:center;
}

#works h3 {
    margin-top: 10px;
    margin-bottom: 0px;
    /*font-size: 110%;*/
}

#about h2{
    margin-bottom: 0.5em;
    text-align:left;
    line-height: 1.6em;
}
#about h2 span.text {
    background: #FFF;
    display: inline-block;
    padding: 0px 6px;
}

#about .grid {
    align-items: center;
}

/* ------------------------------------------
for - 640px
------------------------------------------ */

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

	/*--------------------
COMMON - 640px
--------------------*/
	body {
		/*font-size: 95%;*/
	}
	
.inner {
    width: 80%;
}
	
section {
    padding: 50px 0;
}

    
@media only screen and (max-width: 1080px) {
    .eye .grid3-1{width: 47%;}
}

/*--------------------
GRID - 640px
--------------------*/
	.grid3-1,
	.grid3-2,
	.grid4-1,
	.grid4-2,
	.grid4-3,
	.flex2>*,
	.flex3>*,
	.flex3:after,
	.flex5>*,
	.flex5:before,
	.flex5:after{
		width: 100%;
	}

	.flex2-2>*,
	.flex4>*,
	.flex4:before,
	.flex4:after {
		width: 47%;
	}
	
	.flex6>*,
	.flex6:before,
	.flex6:after {
		width: 31.33%;
	}    
	
.flex4>*, .flex4:before, .flex4:after {
    width: 100%;
}

    
/* ------------------------------------------
TABLE - 640px
------------------------------------------ */
	table {
		/**/
		border-top: #ccc 3px solid;
	}

	thead {
		display: none;
	}

	th,
	td {
		display: block;
		width: 100%;
		/**/
		padding: 0.5em;
	}

	td:last-child {
		/*
		border-bottom: #ccc 3px solid;*/
	}



/* ------------------------------------------
FOOTER - 640px
------------------------------------------ */
	footer {
		padding: 50px 0;
    font-size: 90%;	
	}

	.foot {
		/**/
		width: 90%;
		text-align: center;
		margin: 0 auto 20px;
    	padding: 0 0 20px;
	}

	.foot>div {
		width: 100%;
	}
	
	
	.foot .grid{
		margin-bottom:0;
	}
	
	footer img {
    width:60%;
		margin: 0 auto;
}
	
	footer nav{display:none;}	

	footer ul {
		padding-left: 0;
	}

	footer li {
		list-style: none;
	}

	footer li a {
		display: inline-block;
		width: 100%;
		/**/
		padding: 0.8em;
		border-bottom: solid 1px #999;
	}

}


@media only screen and (max-width:768px) {	
	/*--------------------
HEADER - 640px
--------------------*/
	.head nav {
		display: none;
	}

	#spnav {
		display: block;
		position: fixed;
		z-index: 100;
		right: 5%;
		width: auto;
		height: 60px;
	}
	
#spnav i.fas.fa-bars {
    font-size: 30px;
	margin-left: 8px;
	color: #FFF;
}
    
#spnav span {
	display: inline-block;
}	

	#spnav>a {
		width: 100%;
		height: 100%;
		z-index: 10;
		cursor: pointer;
		text-align: center;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.remodal>div {
		max-height: 75vh;
		overflow-y: scroll;
	}
    
    .sp-bottom {
        bottom: 0;
        position: fixed; 
        background: #d87228;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 55px;
        text-align: center;
        right: 0;
    }    
    
    .sp-bottom a{
        color:#FFF;
    }  
    
}

a.anchor{
    display: block;
    padding-top: 200px;
    margin-top: -200px;
}


h2 {
    margin-bottom: 0.5em;
}

.price {
    text-align: center;
    font-size: 3.6rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.price span{
    font-size: 2.5rem;
}

.price span.zeikomi{
    font-size:2rem;
}

a.jump_point {
    /*padding-top: 100px;
    margin-top: -100px;
    height: 1px;
    display: block;
    padding-top: 70px;
    margin-top: 70px;
    */
}

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