@charset "UTF-8";

*{
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
}


html {
  user-select: none; /* CSS3 */
  -moz-user-select: none; /* Firefox */
  -webkit-user-select: none; /* Safari、Chromeなど */
  font-size: 100%;}
ul li{
  text-decoration: none;
list-style: none;
/* display: block; */
}
li{
list-style: none;
}

a{
  /* display: block; */
  width: 100%;
  color: #333333;
  transition: .3s;
  text-decoration: none;
}
#logins a {
  width:initial;
}

p{
  margin: 0;
}
a:hover{
  cursor: pointer;
  opacity: .7;
  transition: .3s; 
}

/*大きさは％やvwを使う*/
img {
  max-width: 100%;
vertical-align: bottom;}

body{
  -webkit-text-size-adjust: none;
  text-size-adjust: none;}
figure{margin: 0;}
*,*::before,*::after{
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;}


body{
  -webkit-appearance: none;
}

body.noscroll{
  overflow: hidden;
}

a:hover{
  cursor: pointer;
  transition: .3s;
  opacity: 0.7;
}

/* =======================================
  FAQ
======================================= */
h2.faqtitle{
  font-size: 30px;
  color: #000000;
  text-align: center;
  margin-bottom: 57px;
  margin-top: 50px;
}
.faq {
  max-width: 900px;
  width: 92%;
  margin-right: auto;
  margin-left: auto;
  /* css-wipeではスタイリングなし */
}

.faq > *:last-child {
  margin-bottom: 50px;
}

.faq__row {
  position: relative;
  display: flex;
  align-items: flex-start;
  box-sizing: content-box;
  min-height: 45px;
  /* padding-left: 60px; */
}

.faq__row--question {
  margin-bottom: 9px;
  font-size: 1.125rem;
  /* font-weight: bold; */
}
.faq__row--questionlast{
  margin-bottom: 20px;
}
.faq__question-text {
  font-size: 18px;
  letter-spacing: 0.05em;
  /* padding-top: 12px; */
  color: #39A79C;
  border-bottom: 1px solid #39A79C;
  padding-bottom: 9px;
  width: 100%;
}

.faq__row--answer {
  padding-bottom: 20px;
  margin-bottom: 17px;
  /* border-bottom: 1px solid #ddd; */
}
.faq__answer-body {
  /* padding-top: 12px; */
}

.faq__answer-body > *:last-child {
  margin-bottom: 0;
}

.faq__answer-text {
  margin-bottom: 20px;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: #000000;
}
.faq__answer-text a {
  display:inline-block;
  width:initial;
  color:#3D9268;
}
@media (max-width: 768px) {
  h2.faqtitle{
    font-size: 26px;
    font-weight: normal;
    margin-top: 55px;
    margin-bottom: 47px;
  }
  .faq__row--answer{
    margin-bottom: 14px;
  }
}

.inuki_faq_wrapper {
  width: 100%;
}

.inuki_faq {
  margin: 0 auto;
  padding: 100px 0;
  max-width: 1200px;
  text-align: center;
}

.inuki_faq_inner{
  padding: 60px 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}



details {
  margin-bottom: 50px;
  padding: 20px;
  width: 100%;
  --arrow-size: 32px;
  --anime-speed: 0.3s;
  border: 1px solid #D7D7DA;
  border-radius: 20px;
}

details summary {
  box-sizing: border-box;
  position: relative;
  display: block;
  font-size: 24px;
  font-weight: bold;
  padding: 1.5em calc(var(--arrow-size) + 3em) 1.5em 3.5em;
  cursor: pointer;
  border-radius: 20px;
  text-align: left;
}

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

details summary::before {
  content: "Q.";
  position: absolute;
  top: 24px;
  left: 30px;
  font-size: 36px;
  color: #39A79C
}

details summary .ico {
  position: absolute;
  top: 0;
  right: 1.5em;
  bottom: 0;
  display: block;
  width: var(--arrow-size);
  height: calc(var(--arrow-size) * 1);
  margin: auto;
  clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
  transition: transform var(--anime-speed);
  border-radius: 20px;
  background-color: #0d2725;
}

details[open] summary .ico {
  transform: rotate(90deg);
  background-color: #39A79C;
}

details .inner {
  position: relative;
  padding: 40px 1.5em 1.5em 80px;
  text-align: left;
  line-height: 1.8;
  font-size: 16px;
}

details .inner::before {
  content: "A.";
  position: absolute;
  top: 24px;
  left: 30px;
  font-size: 36px;
  font-weight: bold;
}

@media screen and (min-width:768px) and ( max-width:1280px) {

  .inuki_faq {
    padding: 80px 30px;
    max-width: 1100px;
  }
  
}

@media (max-width: 768px) {
  .inuki_faq_wrapper {
    width: 100%;
  }

  .inuki_faq {
    margin: 0 auto;
    padding: 30px 0;
    max-width: 90%;
    text-align: center;
  }

  .inuki_faq_inner{
    padding: 60px 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }



  details {
    margin-bottom: 50px;
    padding: 10px;
    width: 100%;
    --arrow-size: 32px;
    --anime-speed: 0.3s;
    border: 1px solid #D7D7DA;
    border-radius: 20px;
  }
  
  details summary {
    box-sizing: border-box;
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: bold;
    padding: 20px calc(var(--arrow-size) + 2em) 0.6em 2.6em;
    cursor: pointer;
    border-radius: 20px;
    text-align: left;
  }
  
  details summary::-webkit-details-marker {
    /* iOSで表示されるデフォルトの三角形アイコンを消す */
    display: none;
  }
  
  details summary::before {
    content: "Q.";
    position: absolute;
    top: 24px;
    left: 10px;
    font-size: 24px;
    color: #39A79C
  }
  
  details summary .ico {
    position: absolute;
    top: 0;
    right: 0.5em;
    bottom: 0;
    display: block;
    width: var(--arrow-size);
    height: calc(var(--arrow-size) * 1);
    margin: auto;
    clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
    transition: transform var(--anime-speed);
    border-radius: 20px;
    background-color: #0d2725;
  }
  
  details[open] summary .ico {
    transform: rotate(90deg);
    background-color: #39A79C;
  }
  
  details .inner {
    position: relative;
    padding: 40px 1.5em 1.5em 50px;
    text-align: left;
    line-height: 1.8;
  }
  
  details .inner::before {
    content: "A.";
    position: absolute;
    top: 24px;
    left: 10px;
    font-size: 24px;
    font-weight: bold;
  }
}