@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
ul, li {
  list-style: none;
}
body {
  font-family: "Zen Maru Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: 18px;
  color: #333333;
}
#header {
  position: relative;
  width: 100%;
  z-index: 99;
}
section {
  line-height: 0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
    align-items: center;
    height: 120px;
}
.h-logo {
  margin: 30px;
}
.h-contact {
  width: 60%;
  text-align: right;
  margin-right: 125px;
}
.h-contact a
{
    padding: 0 20px;
}
.hamb {
  position: fixed;
  cursor: pointer;
  background-color: #43A047;
  z-index: 300;
  right: 20px;
  top: 20px;
  width: 75px;
  height: 75px;
    border-radius: 50%;
}
.black-bg ul {
  margin: 0;
  padding: 0;
  position: absolute;
  left: 40%;
  top: 40%;
  transform: translate(-50%, -50%);
}
.black-bg ul li {
  text-align: left;
  padding: 20px 0;
}
.black-bg ul li a {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: bold;
  display: block;
  text-decoration: none;
}
.line {
  position: absolute;
  left: 25%;
  width: 40px;
  height: 2px;
  background-color: #ffffff;
  top: 30%;
}
.line:nth-child(2) {
  top: 47%;
  left: 25%;
    width: 35px;
}
.line:nth-child(3) {
  top: 60%;
  left: 25%;
    width: 30px;
}
.hamb-text {
  position: absolute;
  left: 30%;
  bottom: 15%;
  font-size: 20px;
  color: #ffffff;
}
.black-bg {
  position: fixed;
  background: rgba(67,160,71,0.92);
  top: 0;
  right: -450px;
  width: 450px;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.nav_logo
{
    position: absolute;
    bottom: 5%;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.black-bg.open {
  opacity: 1;
  visibility: visible;
  right: 0;
}
#hamb.active .line {
  background-color: #ffffff;
}
/*アニメーション*/
.black-bg {
  transition: opacity 0.35s, visibility 0.35s, width 0.35s;
}
#hamb.active .line:nth-child(1) {
  transform: translateY(16px) translateX(0) rotate(45deg);
    width: 40px;
  top: 28%;
    
}
#hamb.active .line:nth-child(2) {
  opacity: 0;
  background: #FFF;
}
#hamb.active .line:nth-child(3) {
  transform: translateY(-20px) translateX(0) rotate(-45deg);
    top: 75%;
  width: 40px;
}
.animation {
  transition: all .6s;
}
.main
{
    background: url("../img/main_bg.png") no-repeat center / contain;
    padding-top: 14vw;
}
.main video
{
    max-width: 90%;
    margin: 0 auto;
    display: block;
  border-radius: 50px;
    height: 40vw
}
.main-offical {
  background-image: url("../img/main-offical.jpg");
  background-repeat: no-repeat;
  padding: 80px 0;
  text-align: center;
}
.line_bnr{
  margin: 50px 0;
  text-align: center;
}
.feature
{
    padding: 50px 3%;
}
.contents_bg
{
    background: url("../img/contents_bg.png") no-repeat top center / 100%;
}
.h2_ttl
{
    text-align: center;
    color: #43A047;
    font-size: max(2.4vw , 24px);
    margin-bottom: 50px;
    line-height: 1;
}
.h2_ttl span
{
    font-size: max(1vw , 16px);
}
.inner
{
    max-width: 1234px;
    margin: 0 auto;
}
.inner img
{
    margin: 0 auto;
}
.trouble
{
    padding: 50px 3%;
}
img.trouble_contents
{
    margin: 0 auto;
}
.contact {
  padding: 100px 3% 70px;
}
.contact_ttl
{
    font-size: max(15vw , 5rem);
    text-align: center;
    color: #F8F6EF;
    font-weight: 500;
    line-height: 0.6;
    letter-spacing: 0.08em;
}
.contact_inner
{
    max-width: 1176px;
    margin: 0 auto;
    background: #F8F6EF;
    border-radius: 30px;
    padding: 30px;
}
.contact_inner .h2_ttl span
{
    position: relative;
}
.contact_inner .h2_ttl  span::before
{
    content: "";
    background: url("../img/contact_deco.png")no-repeat center / contain;
    position: absolute;
    right: -8vw;
    top: 0;
    width: calc(53 / 1920* 100vw);
    max-width: 53px;
    height: calc(69 / 1920* 100vw);
    max-height: 69px;
}
.contact_flex
{
    display: flex;
    align-items: flex-start;
    gap:50px;
    justify-content: center;
    margin-top: 50px;
}
.contact_txt{
    margin: 30px 0;
	text-align: center;
}
.contact_txt img{
    margin: auto;
}
.skill
{
    padding: 80px 3%;
    text-align: center;
}
.faq
{
    padding: 50px 3%;
}
.accordion-area{
    list-style: none;
    width: 100%;
    max-width: 920px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}


/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    padding: 2% 5% 2% 60px;
    transition: all .5s ease;
    background: #E7F3E8;
    font-size: 20px;
    color: #43A047;
    font-weight: 600;
    display: flex;
    align-items: center;
    line-height: 1.6;
}
.title span
{
    background: #43A047;
    color: #FFFFFF;
    border-radius: 50%;
    display: block;
    width: 40px;
  height: 40px;
    text-align:center;
  line-height: 40px;
    margin-right: 10px;
}
.q_ttl
{
    position: relative;
}
.q_ttl::before
{
   content: "Q";
    background: #43A047;
    color: #FFFFFF;
    border-radius: 50%;
    display: inline-block;
    width: 40px;
  height: 40px;
    text-align:center;
  line-height: 40px;
    margin-right: 10px;
    position: absolute;
    left: -50px;
    top: 0; 
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #43A047;
    
}
.title::before{
    top:48%;
    right: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    right: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #FBF8F2;
    padding: 3%;
    color: #F87D12;
}
.box p
{
    padding-left: 50px;
    position: relative;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding-top: 5px;
    font-size: 20px;
}
.box p::before
{
    content: "A";
    background: #F87D12;
    color: #FFFFFF;
    border-radius: 50%;
    display: inline-block;
    width: 40px;
  height: 40px;
    text-align:center;
  line-height: 40px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 0;
}
.teature
{
    padding: 50px 3%;
}
.ceramic {
  background-image: url("../img/ceramic-ttl.jpg");
  background-repeat: no-repeat;
  background-position: top;
  margin-top: 90px;
}
.ceramic-inner {
  padding-top: 15%;
}
.qa {
  background-image: url("../img/qa-bg.jpg");
  background-repeat: no-repeat;
  background-position: top;
  height: auto;
  padding-bottom: 100px;
}
.qa-ttl {
  text-align: center;
  padding: 100px 0;
}
.qa-inner {
  max-width: 1220px;
  width: 95%;
  margin: 0 auto;
}
.accordion {
  margin-inline: auto;
  margin-top: 100px;
  max-width: 1000px;
  position: relative;
  width: 100%;
  text-align: center;
}
.accordion-title {
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  padding: 35px 0;
}
.accordion-content {
  display: none;
  padding: 30px;
}
/* タイトルの背景色 */
.accordion-item:nth-of-type(1) .accordion-title {
  background-color: #4D3606;
}
.accordion-item:nth-of-type(2) .accordion-title {
  background-color: #66cdaa;
}
.accordion-item:nth-of-type(3) .accordion-title {
  background-color: #ff7f7f;
}
/* コンテンツボックスの枠線 
.accordion-item:nth-of-type(1) .accordion-content {
  border-bottom: 2px solid #7f7fff;
  border-left: 2px solid #7f7fff;
  border-right: 2px solid #7f7fff;
}
.accordion-item:nth-of-type(2) .accordion-content {
  border-bottom: 2px solid #66cdaa;
  border-left: 2px solid #66cdaa;
  border-right: 2px solid #66cdaa;
}
.accordion-item:nth-of-type(3) .accordion-content {
  border-bottom: 2px solid #ff7f7f;
  border-left: 2px solid #ff7f7f;
  border-right: 2px solid #ff7f7f;
}*/
/* 矢印 */
.accordion-title {
  position: relative;
}
.accordion-title::after {
  border-right: solid 3px #fff;
  border-top: solid 3px #fff;
  content: "";
  display: block;
  height: 16px;
  position: absolute;
  right: 30px;
  top: 30%;
  transform: rotate(135deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
  width: 16px;
}
.accordion-title.open::after {
  top: 45%;
  transform: rotate(-45deg);
}
.flow
{
    padding: 50px 3%;
}
.introduction {
  background-image: url("../img/introduction.jpg");
  background-repeat: no-repeat;
  background-position: top;
  margin-top: 120px;
}
.introduction-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1300px;
  width: 95%;
  position: relative;
  padding-top: 17%;
}
.swiper {
  max-width: 1220px;
  width: 95%;
  margin: 0 auto;
}
/* 前への矢印 */
.swiper-button-prev {
  left: -30px !important;
  top: 60% !important;
  color: #815D49 !important;
}
/* 次への矢印 */
.swiper-button-next {
  right: -30px !important;
  top: 60% !important;
  color: #815D49 !important;
}
.swiper-button-prev:after, .swiper-button-prev:after {
  font-size: 70px !important;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  font-size: 70px !important;
}
.bnr
{
    padding: 50px 3%;
}
.shop{
  padding: 50px 3%;
}
.shop table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px auto;
  font-family: sans-serif;
  table-layout: fixed; /* 各セルの幅を均等にする */
  font-family: "Zen Maru Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
.shop th, td {
  border: 1px solid #ccc;
  padding: 10px;
  line-height: 1.6; /* 行間を広げる */
  word-wrap: break-word; /* 長い文字を折り返す */
  white-space: normal; /* 折り返しを有効にする */
}
.shop th {
  background: #43A047;
  color: #fff;
  text-align: left;
  width: 30%;
}
.map {
  padding: 60px 0 0;
}
.footer_map
{
    max-width: calc(50% - 30px);
    width: 100%;
}
.footer_map p
{
    margin-bottom: 1rem;
    font-size: max(1.4vw , 20px);
    font-weight: 600;
    color: #4d3606;
}
.cpylight {
  background-color: #43A047;
  color: #ffffff;
  padding: 13px 0;
  text-align: center;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media (max-width: 1280px) {
  body {
    font-size: 16px;
  }
  .features {
    background-size: 100%;
  }
  .ceramic {
    background-size: 130%;
  }
  .ceramic-inner {
    padding-top: 20%;
  }
  .qa-ttl img {
    width: 220px;
  }
  .accordion-item {
    width: 95%;
    margin: 0 auto
  }
  .flow {
    background-size: 130%;
  }
  .flow-inner {
    padding-top: 20%;
  }
  .introduction {
    background-size: 130%;
  }
  /* 前への矢印 */
  .swiper-button-prev {
    left: -10px !important;
  }
  /* 次への矢印 */
  .swiper-button-next {
    right: -10px !important;
  }
  .fee {
    background-size: 130%;
  }
  .fee-inner {
    padding-top: 25%;
  }
  .payment {
    background-size: 180%;
  }
  .payment-btn {
    left: 37%;
    bottom: 10%;
  }
}
@media (max-width: 820px) {

  .payment {
    height: 830px;
  }
  .payment-btn {
    left: 35%;
  }
  .shop th, td {
    display: block;
	width: 90%;
	margin: 0 auto;
  }
}
@media (max-width: 768px) {
    .sp {
    display: block;
  }
  .pc {
    display: none;
  }
    .header-inner {
  height: 80px;
}
    
    .h-contact
    {
        display: flex;
        width: 100%;
        margin-right: 70px;
    }
    .h-contact a {
  padding: 0 10px;
}
  .hamb {
    width: 50px;
    height: 50px;
      right: 10px;
  }
  .line {
    width: 32px;
    height: 2px;
      top: 34%;
      left: 20%;
  }
    .line:nth-child(2) {
  left: 20%;
        width: 30px;
}
    .line:nth-child(3) {
  left: 20%;
        width: 28px;
}
  .hamb-text {
    font-size: 16px;
    left: 20%;
    bottom: 10%;
  }
  #hamb.active .line:nth-child(1) {
    transform: translateY(10px) translateX(0) rotate(45deg);
      width: 30px;
      
  }
  #hamb.active .line:nth-child(3) {
    transform: translateY(-8px) translateX(0) rotate(-45deg);
      width: 30px;
      top: 66%;
      
  }
  .black-bg {
    width: 250px;
  }
  .black-bg ul {
    width: 100%;
    top: 35%;
    left: 65%;
  }
  .black-bg ul li a {
    font-size: 16px;
  }
  .h-logo {
    margin: 10px;
  }
  .h-logo img {
    width: 150px;
  }

  .main-offical {
    background-size: cover;
    padding: 18px 0;
  }

.contact_flex {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
  margin-top: 50px;
  flex-direction: column;
}
  .features {
    margin-top: 30px;
  }
  .features01 {
    margin-bottom: 30px;
  }
  .ceramic {
    margin-top: 50px;
  }
  .ceramic-inner {
    width: 95%;
    margin: 0 auto 30px;
  }
  .qa {
    background-size: cover;
    padding-bottom: 20px;
  }
  .qa-ttl {
    padding: 50px 0;
  }
  .qa-ttl img {
    width: 120px;
  }
  .accordion {
    margin-top: 30px;
  }
  .accordion-title {
    font-size: 18px;
    padding: 25px 0;
  }
  .contact-img {
    width: 250px;
  }
  .flow {
    margin-top: 30px;
  }
  .introduction {
    margin-top: 50px;
  }
  .introduction-inner {
    width: 90%;
  }
  swiper-button-prev:after, .swiper-button-prev:after {
    font-size: 30px !important;
  }
  .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    font-size: 30px !important;
  }
  .fee {
    margin-top: 40px;
  }
  .payment {
    height: 1633px;
    margin-top: 0;
      background: url("../img/sp/payment.jpg") no-repeat center/ cover;
  }
  .payment-btn img {
    max-width: 2500px;
  }
  .payment-btn {
    left: 50%;
    bottom: 7%;
      transform: translateX(-50%);
  }
  .offical {
    background-size: cover;
    padding: 60px 0 20px;
  }
  .map {
    padding: 50px 0 0;
  }
    #footer .footer_map
    {
        max-width: 100%;
        width: 100%;
    }
}
@media (max-width: 460px) {
  .main{
    background: url(../img/main_bg_sp.png) no-repeat center / contain;
  }
  .main video {
    margin: 50px auto 0;
  }
}
@media (max-width: 375px) {
  .payment-btn {
    left: 30%;
  }
  .payment {
    height: 375px;
  }
}
@media (max-width: 320px) {
  .payment-btn {
    left: 25%;
  }
  .payment {
    height: 325px;
  }
}
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
padding-top: 50px;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}