@charset "utf-8";
/*
Theme Name: My Theme
Author: Your Name
Description: My First WordPress Theme
Version: 1.0
Text Domain: mytheme
*/


/*cssのリセット*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,
blockquote,pre,abbr,address,cite,code,del,dfn,em,img,
ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,
ol,ul,li,fieldset,form,label,legend,table,caption,
tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
figcaption,figure,footer,header,hgroup,menu,nav,section,
summary,time,mark,audio,video {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}
 
body {
  line-height: 1;
  background: #fff !important;
}

html,body{ width:100%; overflow-x:hidden; }
 
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display: block;
}
 
nav ul {
  list-style: none;
}
 
blockquote,
q {
  quotes: none;
}
 
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
 
a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}
 
ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}
 
mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}
 
del {
  text-decoration: line-through;
}
 
abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}
 
table {
  border-spacing: 0;
  border-collapse: collapse;
}
 
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

/*サイト全体の基準となるCSSを記述*/
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
 
body {
  font-family: "Noto Sans JP", sans-serif;/*フォントの指定*/
  line-height: 1.6em;/*行間の指定*/
  margin: 0;
  padding: 0;
  color: #333;/*サイトのデフォルトとなる文字の色を指定*/
}

/*見出しを全て太字で表示 + 文字色を黒に*/
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  color: #1c1c1c;
}
 
img {
  max-width: 100%;
  height: auto;
}
body {
    margin: 0;
    background-color: #f7f7f7;
    color: #1c1c1c;
}

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

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



*,
*:before,
*:after {
    box-sizing: border-box;
}

p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
ul{
  list-style: none;
}

/*------header-------*/
header.site-header {
    background: url(/wp-content/themes/my-theme/img/bg-mv.jpg);
    background-position: top;
}
.header__inner {
    width: 100%;
    margin: auto;
    padding: 16px 0 18px;
    display: flex;
    justify-content: space-between;
}
h1.site-name img {
    width: 90%;
}
h1.site-name {
    margin-left: 6%;
}
.global-nav {
    width: 100%;
    margin-top: 1%;
}
.global-nav ul {
    display: flex;
    justify-content: center;
    justify-content: flex-end;
}
.global-nav ul li {
    margin-left: 4%;
}
.global-nav ul li a {
    color: #fff;
    font-weight: 700;
    transition: 0.5s;
}
.global-nav ul li a:hover {
    opacity: 0.7;
}
.global-nav ul li:hover {
    cursor: pointer;
}
li.shop a {
    color: #1c1c1c !important;
    padding: 10px 52px 10px 36px;
    background: #fff;
    font-weight: 600 !important;
    transition: 0.5s;
    font-size: 0.9em;
}
li.shop a:hover{
    background: #1c1c1c;
    color: #fff !important;
    fill: #fff;
}
li.shop {
    position: relative;
}
span.icon01 {
    position: absolute;
    right: 26px;
    width: 24px;
}
i.fa-solid.fa-cart-shopping {
    margin-left: 6px;
}


.float-button__wrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    background-color: #0069b3 ;
    color: #fff;
}
.float-button__wrap {
/*    display: none;/*最初は隠す*/*/
    width: 80px;
    height: 45px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 10;
}
.body-in {
    position: relative;
}

/*------footer-------*/


.footer-middle {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 2%;
    margin-top: 3%;
}

.logo-bottom h1 {
    width: 58%;
}

.txt-footer {
    margin: 0;
    color: #333;
}
.navi-bottom {
    width: 44%;
    text-align: right;
}
.navi-bottom ul {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    padding: 1% 0 2%;
}
.navi-bottom ul li{
    margin-left: 3%;
}
.navi-bottom ul li:first-child {
    margin-left: 0%;
}
.navi-bottom ul li a {
    font-weight: 600;
    color: #1c1c1c;
    font-size: 14px;
    transition: 0.5s;
}
.navi-bottom ul li a:hover{
    color: #747474;
}
p.insta a {
    color: #1c1c1c;
    font-size: 20px;
    transition: 0.5s;
}
p.insta a:hover {
    color: #747474;
}
p.txt-bottom {
    font-size: 12px;
}

/*------top-------*/
.hero {
    background: url(/wp-content/themes/my-theme/img/bg-mv.jpg);
    background-position-y: -62px;
    background-size: cover;
    padding-bottom: 24%;
    background-repeat: no-repeat;
    background-color: #1c1c1c;
}
.mv-contents {
    display: flex;
    justify-content: space-between;
    width: 70%;
    margin: 0 auto;
    padding-top: 12%;
    color: #fff;
    position: relative;
}
.mv-contents .left {
    width: 77%;
    z-index: 2;
    text-shadow: 1px 1px 2px #000;
}
.mv-contents .right .item-01 {
    position: absolute;
    top: 0%;
    left: 51%;
    width: 59%;
}
.mv-contents .right .item-01 img{
    width: 100%;

}
.mv-contents h2 {
    color: #fff;
    font-size: 1.8em;
}
.mv-contents .left .txt-small {
    font-size: 0.6em;
}
p.txt01 {
    font-size: 1.3em;
    font-weight: 600;
    margin: 2% 0 2%;
}
p.txt02 {
    font-size: 2em;
    font-weight: 800;
    margin-bottom: 1%;
}
p.txt03 {
    line-height: 1.6em;
}
.mv-contents .left p {
    width: 98%;
}
.btn_box-area2 {
    position: relative;
}
.btn_box-area {
    position: relative;
    margin-top: 8%;
}
.btn_box{
  position: absolute;
  top: 50%;
  left: 14%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 0;
}

.btn {
    color: #1c1c1c;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .1em;
    text-align: center;
    line-height: 18px;
    width: 230px;
    height: 56px;
    background: #FFF;
    margin: auto;
    border: 0px solid #1c1c1c;
    position: relative;
    display: block;
    overflow: hidden;
    transition: 0.5s;
    border-radius: 100px;
    text-decoration: none;
    text-shadow: none;
    padding-right: 2%;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
.btn_box a {
    padding-top: 18px;
}

.btn:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath d='M10 20A10 10 0 1 0 0 10a10 10 0 0 0 10 10zM4.049 9h8.559l-2.266-2.265 1.414-1.414 4.735 4.733-4.735 4.734-1.414-1.414L12.718 11H4.049z'/%3E%3C/svg%3E");
  content: '';
  position: absolute;
  right: 16px;
  top: 13px;
  font-size: 20px;
  transition: all 0.2s;
  width: 1.4em;
  height: 1.4em;
  background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.btn:hover:after {
  right: 12px;
}

.btn.animation.second{
    box-shadow: none;
    border: 2px solid #1c1c1c;
    width: 200px;
}

.btn .txt-small {
    font-size: 0.7em !important;
    margin-top: 4.5%;
}

.fix-bnr {
    position: fixed;
    right: 244px;
    bottom: 160px;
    z-index: 5;
}

.btn.fix-01 a {
    width: 128%;
    border: solid 2px #1c1c1c;
}
.btn-inner {
    margin-left: -12%;
    margin-top: 0%;
}



div#top-contets {
    background: url(/wp-content/themes/my-theme/img/bg-01.jpg);
    background-size: cover;
    background-position: bottom;
}

.intro {
    color: #fff;
    width: 45%;
    margin-left: 14%;
    padding-top: 5%;
}
.intro h2 {
    color: #fff;
    font-size: 1.8em;
    margin-bottom: 2%;
}

.feature-box01 {
    background: rgba(28, 28, 28, 0.4);
    width: 76%;
    margin: 5% 0 0 auto;
}
.feature-box01-inner,.feature-box02-inner{
    display: flex;
}
.feature-box01 h3,.feature-box02 h3,.feature-box03 h3 {
    color: #777;
    font-size: 1.8em;
}
.feature-box01 h4,.feature-box02 h4,.feature-box03 h4 {
    color: #fff;
    font-size: 1.28em;
    margin: 6% 0 2%;
}
.feature-box01-inner p,.feature-box02-inner p,.feature-box03-inner p {
    color: #fff;
}
.feature-box01-inner .left {
    padding: 6%;
    width: 52%;
}
.feature-box01-inner .right {
    padding: 3% 0;
    width: 30%;
}
.feature-box02 {
    background: rgba(28, 28, 28, 0.4);
    width: 76%;
    margin: 4% 0;
}
.feature-box02-inner .left {
    margin: 4% 2% 1% 15%;
}
.feature-box02-inner .right {
    margin: 4% 8% 4% 2%;
    width: 50%;
}
.feature-box03 {
    background: rgba(28, 28, 28, 0.4);
}
.feature-box03-inner {
    display: flex;
    align-items: flex-end;
}
.feature-box03 {
    background: rgba(28, 28, 28, 0.4);
    width: 70%;
    margin: 0 auto;
}
.feature-box03-inner .left {
    padding: 0% 3% 2% 4%;
}
.feature-box03-inner .right {
    position: relative;
    width: 84%;
    padding: 6% 4% 4% 0;
}
.mark {
    position: absolute;
    top: 4%;
    left: 73%;
}
.mark img {
    width: 84%;
}
.feature-box04 {
    width: 66%;
    margin: 5% auto 0;
    color: #fff;
    padding-bottom: 8%;
}
.feature-box04 h4 {
    color: #fff;
    font-size: 1.1em;
    border-bottom: solid 1px;
    padding-bottom: 4px;
    margin-bottom: 1%;
}

div#top-contets2 {
    background: url(/wp-content/themes/my-theme/img/bg-02.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.cont2-box1 {
    width: 68%;
    margin: 0 auto;
    color: #fff;
}
.cont2-box1 h3 {
    color: #A4A4A4;
    font-size: 1.8em;
}
.cont2-box1 h4 {
    color: #fff;
    font-size: 1.6em;
    margin: 1% 0;
}
.cont2-box2 {
    width: 80%;
    margin: 2% auto;
    padding-bottom: 34%;
}
.cont2-box2 ul {
    display: flex;
    justify-content: center;
}
.cont2-box2 ul li {
    width: 29%;
    position: relative;
    margin-left: 8%;
}
.cont2-box2-inner {
    z-index: 2;
    position: absolute;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
}
.cont2-bg {
    position: absolute;
    top: 36%;
    left: -43%;
}
.cont2-box2-inner h4 {
    font-size: 1.04em;
    color: #fff;
    font-weight: 500;
}
.cont2-box2-inner p {
    font-size: 14px;
}
.cont2-box2-inner p.txt-small {
    color: #fff;
    text-align: right;
    text-shadow: none;
    font-size: 0.8em;
    margin-top: 14%;
}
div#top-contets3 {
    background: #F4F4F4;
    margin-top: -4%;
}
.cont3-box1 {
    width: 68%;
    margin: 0 auto;
    padding-top: 7%;
}
.cont3-box1 h3 {
    color: #A4A4A4;
    font-size: 1.8em;
}
.cont3-box1 h4 {
    font-size: 1.6em;
    margin: 1% 0;
}
.cont3-box2 {
    display: flex;
    width: 64%;
    margin: -2% auto;
    align-items: center;
}
.cont3-box2-inner {
    display: flex;
    align-items: center;
}
.cont3-box2 .left {
    width: 58%;
}
.cont3-box2 .right ul li {
    border: double;
    padding: 3%;
    margin-bottom: 2%;
    background: #fff;
}
.cont3-box2-inner .left2 {
    width: 16%;
}
.cont3-box2-inner .right2 {
    margin-left: 4%;
}
.cont3-box3 {
    width: 68%;
    display: flex;
    margin: 0 auto;
}
.cont3-box3 .left3 {
    width: 38%;
    margin-right: 2%;
}
p.dempa {
    text-align: right;
    margin: 0 16%;
}
.dempa a{
    color: #333;
    text-decoration: underline;
    margin-right: 8px;
}
p.txt06 {
    font-size: 18px;
    font-weight: 600;
}
p.txt07 {
    font-size: 14px;
}

div#top-contets4 {
    background: #f4f4f4;
    padding-top: 11%;
}
.cont4-box1{
    text-align: center;
}
.cont4-box1 h3 {
    color: #A4A4A4;
    font-size: 1.8em;
}
.cont4-box1 h4 {
    font-size: 1.6em;
    margin: 1% 0;
}
.cont4-box2 ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.cont4-box2 ul li {
    width: 26%;
}
.peaple {
    text-align: center;
    margin-bottom: -8%;
}
.voice-box {
    border: solid 1px #777777;
    border-radius: 10px;
    background: #fff;
    padding: 6%;
}
.voice-box p {
    font-size: 14px;
}
.voice-box h4 {
    text-align: center;
    padding-top: 4%;
    padding-bottom: 2%;
}
.cont4-box2 ul li {
    width: 26%;
    margin-left: 1%;
    margin-bottom: 3%;
}
.cont4-box2 {
    margin-top: 3%;
}

div#top-contets5 {
    background: #f4f4f4;
    padding-top: 7%;
    padding-bottom: 2%;
}
.cont5-box1 {
    width: 60%;
    margin: 0 auto;
}
.cont5-box1 h3 {
    color: #A4A4A4;
    font-size: 1.8em;
}
.cont5-box1 h4 {
    font-size: 1.6em;
    margin: 2% 0;
}

.accordion {
margin: 3em auto;
max-width: 60vw;
}
.toggle {
display: none;
}
.option {
position: relative;
margin-bottom: 1em;
border: double #1c1c1c;
}
.title,
.content {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform: translateZ(0);
transition: all 0.3s;
}
.title {

padding: 1em;
display: block;
color: #333;
font-weight: bold;
}
.title::after,
.title::before {
content: "";
position: absolute;
right: 1.25em;
top: 1.25em;
width: 2px;
height: 0.75em;
background-color: #999;
transition: all 0.3s;
}
.title::after {
transform: rotate(90deg);
}
.content {
max-height: 0;
overflow: hidden;
}
.content p {
    margin: 0 auto;
    padding: 0.5em 1em 1em;
    font-size: 0.9em;
    line-height: 1.5;
    border-top: solid 1px;
    width: 96%;
}
.toggle:checked + .title + .content {
max-height: 500px;
transition: all 1.5s;
}
.toggle:checked + .title::before {
transform: rotate(90deg) !important;
}

span.txt-bold {
    font-weight: 600;
}

div#top-contets6 {
    background: #1a1a1a;
    color: #fff;
    padding-bottom: 4%;
}
.cont6-box1 {
    width: 60%;
    margin: 0 auto;
    padding-top: 4%;
}
.cont6-box1 h2 {
    color: #fff;
    font-size: 1.8em;
    margin-bottom: 1%;
}
.cont6-box1 .txt-small {
    font-size: 0.6em;
}
.cont6-box2 {
    display: flex;
    width: 60%;
    margin: 1% auto;
    align-items: center;
}
.cont6-box2 .left {
    width: 60%;
}
.cont6-box2 .left table {
    width: 100%;
    color: #fff;
}
.cont6-box2 .left tr th {
    text-align: left;
    padding: 3% 0;
    font-weight: 500;
}
.cont6-box2 .left tr td {
    padding-left: 7%;
    font-weight: 200;
}
.cont6-box2 .left tr {
    border-bottom: solid 1px;
}
.cont6-box2 .right {
    width: 40%;
    margin-left: 4%;
}
.cont6-box3 ul {
    display: flex;
    width: 60%;
    margin: 4% auto 0;
    justify-content: center;
}
.cont6-box3 ul li {
    margin-left: 3%;
}
.btn-01 a {
    background: #fff;
    color: #1c1c1c;
    padding: 16px 80px 16px 64px;
    transition: 0.5s;
}
.btn-01 a:hover {
    background: #494949;
    color: #fff;
    fill: #fff;
}
.btn-02 a {
    background: #1c1c1c;
    color: #fff;
    padding: 14px 61px;
    border: solid 1px;
    transition: 0.5s;
}
.btn-02 a:hover {
    background: #D2D2D2;
    color: #1c1c1c;
    border: solid 1px #1c1c1c;
}
i.fa-regular.fa-envelope {
    margin-left: 8px;
}
.btn-01 {
    position: relative;
}
.btn-01 .icon01 {
    right: 54px;
}
.cont6-box3 ul li:first-child{
    margin-left: 0;
}



/*------contact-------*/

.top-contact1 {
    background: #F4F4F4;
    padding-bottom: 5%;
}
.ttl-box {
    width: 73%;
    margin: 0% auto 4%;
    padding-top: 5%;
}
.top-contact1 h2,.top-contact2 h2 {
    font-size: 2.2em;
    color: #A4A4A4;
}
.top-contact1 h3,.top-contact2 h3 {
    font-size: 1.5em;
    margin-top: 2%;
}
.faq-box {
    width: 70%;
    margin: 0 auto;
}
span.txt-red {
    font-size: 8px;
    color: #CA3604;
    padding: 0px 4px;
    vertical-align: middle;
}
.faq-box ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2%;
}
.faq-box ul li {
    width: 80%;
}
.faq-box ul li:first-child {
    width: 18%;
}
ul.privacy-box li:first-child {
    width: 3%;
}
p.txt09 {
    font-size: 14px;
    margin: 2% auto;
}
input.wpcf7-form-control.wpcf7-text {
    border: solid 1px #1c1c1c;
    background: #ffffff;
    padding: 1%;
    width: 90%;
}
span.wpcf7-form-control.wpcf7-checkbox {
    display: flex;
    flex-direction: column;
}
textarea.wpcf7-form-control.wpcf7-textarea {
    width: 90%;
}
.wpcf7-list-item {
    padding: 1%;
    margin: 0 0 0 0em;
}
p.contact-area2 {
    border: solid 1px #2a6bab;
    font-size: 14px;
    width: 54%;
    padding: 4px;
    margin-left: 8%;
    margin-bottom: 3%;
}
input.wpcf7-free-text {
    border: none;
    background: #f3f1f1;
    padding: 1%;
    width: 80%;
}


input[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 14px;
    width: 220px;
    padding: 10px;
    border-radius: 0px;
    background-color: #fff;
    border: solid 1px #1c1c1c;
    color: #1c1c1c;
    cursor: pointer;
    transition: 0.5s;
}

input[type="submit"]:hover {
    background-color: #d1d1d1;
}
.black input[type="submit"]:hover {
    background: #777;
}
span.wpcf7-spinner {
  display: none;
}
.black input[type="submit"] {
    background: #000;
    color: #fff;
    margin-bottom: 10%;
    border: none;
}
.submit-btn {
  display: inline-block; /*インラインブロック要素にする*/
  position: relative;
}
.submit-btn::after {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  content: '\f105';
  font-weight: 900;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.submit-btn.black::after {
  color: #fff;
  top: 35%;
}
.submit-btn3.gray::after {
  color: #fff;
  top: 53%;
}
.submit-btn2 {
    display: inline-block;
    position: relative;
    margin-top: 5%;
}
.submit-btn2::after {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  content: '\f105';
  font-weight: 900;
  right: 20px;
  top: 50%;
  color:#fff;
  transform: translateY(-50%);
}
.submit-btn2 a {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 14px;
    width: 220px;
    padding: 10px 87px;
    border-radius: 0px;
    background-color: #777777;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
}
.submit-btn2 a:hover {
    background-color: #1c1c1c;
}

.submit-btn-wrapper {
    text-align: center;
    margin-top: 0%;
}

input.wpcf7-form-control.wpcf7-previous {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 14px;
    width: 220px;
    padding: 10px;
    border-radius: 0px;
    background-color: #777777;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
}
input.wpcf7-form-control.wpcf7-previous:hover {
    background: #1c1c1c;
}
.submit-btn3 {
  display: inline-block; /*インラインブロック要素にする*/
  position: relative;
}
.submit-btn3::after {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  content: '\f105';
  font-weight: 900;
  right: 20px;
  top: 50%;
  color:#fff;
  transform: translateY(-50%);
}

.ttl-box2 {
    text-align: center;
    padding-top: 10%;
}
.top-contact2 .ttl-box2 h3 {
    font-size: 1.5em;
    margin-top: 7%;
    margin-bottom: 1%;
}
.top-contact2 {
    background: #F4F4F4;
    padding-bottom: 10%;
}
p.txt10 {
    margin-bottom: 4%;
}
ul.privacy-box a {
    color: #1c1c1c;
    text-decoration: underline;
}


/*------privacy-------*/

.privacy-box2 {
    width: 73%;
    margin: 0 auto;
}
ul.privacy-box-innner {
    list-style: auto outside;
    line-height: 2em;
    font-weight: 300;
    margin-left: 2%;
}
ul.privacy-box-innner-01 {
    list-style: lower-alpha outside;
    margin-left: 2%;
}
p.txt-privacy-box {
    margin: 10px auto 2px;
}

.tel-box {
    margin: 6% 0% 0% -7%;
    width: 100%;
}
.tel-box a {
    background: #333333;
    color: #fff;
    padding: 13px;
    border-radius: 30px;
    border: solid 1px #fff;
}
i .fa-solid.fa-phone-volume {
    margin-left: 10px;
    transform: rotate(-30deg);
    font-size: 20px;
}

.fa-shop {
    margin-left: 10px;
    transform: rotate(-30deg);
    font-size: 20px;
}

.elect-box {
    width: 80%;
    margin: 0 auto;
    padding-top: 5%;
}


@media screen and (max-width : 1200px){
.cont3-box2 {
    width: 68%;
}
.btn-01 a,.btn-02 a {
    padding: 14px 15px;
}
}
@media screen and (max-width : 1024px){
.global-nav ul li a {
    font-size: 14px;
}
.btn_box {
    left: 20%;
}
.feature-box03 {
    width: 90%;
}
.cont3-box2 {
    width: 86%;
}
.cont6-box2 {
    width: 80%;
}
.cont6-box1 {
    width: 80%;
}
}
@media screen and (max-width : 820px){

.global-nav ul li {
    margin-left: 2%;
}
p.txt01 {
    margin: 2% 0 2%;
}
.btn_box {
        left: 26%;
        bottom: 0;
    }
.cont6-box3 ul {
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.cont6-box3 ul li {
    margin-left: 0%;
    margin-bottom: 8%;
}
.cont6-box2 {
        width: 90%;
}
.btn-01 a {
     padding: 14px 38px;
}
.btn-02 a {
     padding: 14px 28px;
}
.intro h2 {
    line-height: 1.2em;
}
}

@media screen and (max-width : 768px){
header.site-header {
     background-image: none; 
    background-position: top;
    background-color: #060912;
}
.hero {
    background: url(/wp-content/themes/my-theme/img/bg-mv.jpg);
    background-position-y: 0px;
    background-size: cover;
    padding-bottom: 140%;
    background-repeat: no-repeat;
}
.btn.cta-sp {
    width: 280px;
    border: 2px solid #1c1c1c;
    height: 62px;
}
a.btn.animation.cta-sp {
    padding-top: 18px;
}
.mv-contents-sp-area.for-sp {
    background: #333333;
    color: #fff;
    padding: 10% 5%;
}
    .mv-contents {
        width: 100%;
        padding-top: 6%;
    }
    .mv-contents .left {
        width: 90%;
        margin: 0 auto;
    }
    .mv-contents .right .item-01 {
        top: 60%;
        left: -4%;
        width: 125%;
    }
p.txt02 {
    margin-top: 4%;
    line-height: 1.2em;
}
.btn_box-area3 {
        *margin-top: -46%;*
        *padding-bottom: 10%;*

    }

.intro {
    width: 90%;
    margin-left: 0;
    padding-top: 13%;
    margin: 0 auto 12%;
}
    .feature-box01 {
        width: 90%;
        margin: 5% 0 0 auto;
    }
.feature-box01-inner {
    flex-direction: column-reverse;
}
.feature-box01-inner .left {
        padding: 0 8% 8% 8%;
        width: 100%;
    }
.feature-box01-inner .right {
    padding: 8%;
    width: 100%;
    text-align: center;
}
.feature-box02-inner .left {
    text-align: center;
}
.feature-box02 {
    width: 90%;
    margin: 8% 0;
}
.feature-box02-inner {
    flex-direction: column;
}
.feature-box02-inner .right {
    width: 100%;
    padding: 0 8% 8% 8%;
}
.feature-box03-inner {
    flex-direction: column;
}
.feature-box03-inner .left {
    padding: 7%;
}
.feature-box03-inner .right {
        width: 100%;
        padding: 1% 7% 7% 7%;
    }
.mark {
        top: -42%;
        left: 83%;
}
.feature-box04-bg {
    background: #494949;
}
.feature-box04 {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 14%;
    padding-top: 14%;
}
.cont2-box1 {
    width: 90%;
    padding-top: 14%;
}
.cont2-box1 h4 {
    margin: 3% 0;
    line-height: 1.2em;
}
.cont2-box2 {
    width: 80%;
    margin: 4% auto;
    padding-bottom: 17%;
}
.cont2-box2-inner {
    position: relative;
}
.cont2-box2 ul {
    flex-wrap: wrap;
}
.cont2-box2 ul li {
    width: 80%;
    position: relative;
    margin-left: 21%;
    margin-bottom: 6%;
}
.cont2-bg {
        position: absolute;
        top: 44%;
        left: -30%;
    }

.cont3-box1 {
    width: 90%;
    margin: 0 auto;
    padding-top: 13%;
}
    .cont3-box2 {
        width: 94%;
        flex-direction: column;
    }
.cont3-box2 .left {
    width: 100%;
    text-align: center;
}
.cont3-box2 .right {
    margin-top: -18%;
}
.cont3-box3 {
    width: 94%;
    margin: 6% auto 0;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 6%;
}
p.dempa {
    margin: 0 4%;
}
.cont3-box3 .left3 {
    width: 22%;
    margin-right: 5%;
}
.cont3-box1 h4 {
    margin: 3% 0;
}
.cont4-box1 h4 {
    margin: 3% 0;
}
.cont4-box2 ul li {
    width: 46%;
    margin-left: 3%;
    margin-bottom: 3%;
}
.cont4-box2 ul li:nth-child(odd) {
    margin-left: 0%;
}
.cont5-box1 {
    width: 90%;
}

    .accordion {
        max-width: 90vw;
        margin: 6% auto;
    }

    .cont6-box1 {
        width: 90%;
        padding-top: 14%;
    }
.cont6-box2 {
        width: 100%;
        flex-direction: column-reverse;
    }
.cont6-box2 .left {
    width: 90%;
}
.cont6-box2 .left tr th {
    width: 20%;
}
.cont6-box2 .right {
    width: 78%;
    margin-left: 5%;
    margin-bottom: 5%;
    text-align: center;
}
.cont6-box3 ul {
    width: 90%;
    margin: 10% auto 0;
    align-items: center;
    align-content: center;
}
     .cont6-box3 ul li {
        margin-left: 0%;
        margin-bottom: 8%;
    }

    .btn-01 a {
        padding: 16px 90px;
    }
        .btn-02 a {
        padding: 14px 80px;
    }
.footer-middle {
    margin-bottom: 8%;
    margin-top: 10%;
    flex-direction: column;
}
.navi-bottom ul {
    flex-direction: column;
}
.logo-bottom {
    width: 90%;
    margin: 0 auto;
}
.navi-bottom {
    width: 90%;
}
.btn .txt-small {
    margin-top: 3.5%;
}
}

@media screen and (max-width : 640px){
.mark {
    top: -27%;
    left: 72%;
}
.cont2-bg {
    position: absolute;
    top: 5%;
    left: -50%;
}
.cont6-box3 ul li {
        margin-left: 0%;
        margin-bottom: 14%;
    }
.ttl-box {
    width: 90%;
    margin: 0% auto 10%;
    padding-top: 12%;
}
.faq-box {
    width: 90%;
    margin: 0 auto;
}
.faq-box ul {
    flex-direction: column;
}
.faq-box ul li {
    width: 100%;
}
.faq-box ul li:first-child {
    width: 100%;
}
input.wpcf7-form-control.wpcf7-text {
    padding: 2%;
    width: 100%;
}
textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
}
ul.privacy-box {
    display: flex;
    flex-direction: row;
}
ul.privacy-box li {
    width: 90%;
}
ul.privacy-box li:first-child {
    width: 8%;
}
.top-contact1 {
    padding-bottom: 10%;
}


.fix-bnr.for-sp .left .btn_box {
		display:none;
       right: 50%;
       bottom: 100px;		
    }
	
.fix-bnr.for-sp .right .tel-box {
    margin: 70% 0% 0% 288%;
    width: 100%;
}
.fix-bnr {
    bottom: 30px;
    z-index: 3;
}
.privacy-box2 {
    width: 90%;
}
.title {
    padding: 1em 2em 1em 1em;
}
a.btn.animation.cta-sp {
    padding-top: 18px;
}
.elect-box {
    width: 90%;
    padding-top: 10%;
    padding-bottom: 10%;
}
    .btn_box-area3 {
		display:block;
        padding-bottom: 10%;
        position: fixed;
        /*margin: -42% 13%*/
		width:80%;
		left:10%;
		bottom:0;
        z-index: 5;
    }
}