@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

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,
hgroup,
main,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
  list-style-position: inside;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  transition: all 0.5s ease;
  line-height: normal;
}

a:hover {
  text-decoration: none;
  cursor: pointer;
  opacity: 1;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
select {
  vertical-align: middle;
}

select {
  outline: none;
}

select::-ms-expand {
  display: none;
}

input,
textarea {
  border-radius: 0;
  border: 0;
  outline: none;
}

[type=submit],
[type=reset],
[type=button],
button {
  border: 0;
  cursor: pointer;
}

input[type=button],
input[type=text],
input[type=submit],
input[type=image],
input[type=search],
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

* {
  box-sizing: border-box;
}

body {
  width: 100%;
  line-height: normal;
}

main img {
  max-width: 100%;
  vertical-align: bottom;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.fixed {
  position: fixed;
  top: 20px;
}

.hamburger {
  position: fixed;
  top: 70px;
  right: 20px;
  z-index: 30;
  width: 60px;
  height: 60px;
  cursor: pointer;
  background-color: #707070;
  border-radius: 50%;
  transition-duration: 0.5s;
}

.hamburger.fixed {
  top:20px;
}

.hamburger_inner {
  position: relative;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 10px;
  text-align: left;
  transform: translate(-50%, -50%);
}

.hamburger span {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.4s;
}

.hamburger span:nth-of-type(1) {
  top: 0;
}

.hamburger span:nth-of-type(2) {
  bottom: 0;
}

.hamburger.active span:nth-of-type(1) {
  top: 5px;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-of-type(2) {
  top: 5px;
  transform: rotate(45deg);
}

.menu {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 19;
  text-align: left;
  transition: right 0.5s ease;
}

.menu.open {
  right: 0;
}

nav {
  position: relative;
  z-index: 20;
  height: 100vh;
  padding: 120px 64px;
  overflow-y: scroll;
  background-color: #fff;
}

nav ul li {
  margin-bottom: 40px;
  font-size: 18px;
  /* font-family: "A1ゴシック B", "A1 Gothic B"; */
}

nav ul li a {
  color: #333 !important;
  text-decoration: none !important;
  display: flex;
}

/* nav .nav_menu li a::before {
  content:"";
} */

.arrow {
  position: relative;
  display: inline-block;
  width: 10px;
  /* height: 1em; */
  margin-right: 10px;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 11px;
  height: 1.5px;
  border-radius: 9999px;
  background-color: #707070;
  transform-origin: calc(100% - 0.75px) 50%;
}

.arrow::before {
  transform: rotate(45deg);
}

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

nav ul li a:hover {
  color: #707070 !important;
}

.black-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 15;
  visibility: hidden;
  background-color: #000;
  cursor: pointer;
  opacity: 0;
  transition: all 0.5s;
}

.open .black-bg {
  visibility: visible;
  opacity: 0.4;
}

main {
  /* font-family: "A1ゴシック M", "A1 Gothic M"; */
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: #342d2a;
  text-align: center;
  background-color: #F0F0F0;
  max-width: 1020px;
  margin: 0 auto;
}

.w672 {
  max-width: 672px;
  margin: 0 auto;
}

.accordion_one {
  margin-top: 32px;
  text-align: left;
}

.accordion_header {
  position: relative;
  z-index: 1;
  padding: 40px 100px 40px 32px;
  font-size: 16px;
  cursor: pointer;
  background-color: #fff;
  /* border-radius: 20px; */
  transition-duration: 0.2s;
}

.accordion_header.open {
  /* border-radius: 20px 20px 0 0; */
}

.accordion_header:hover {
  opacity: 0.8;
}

.accordion_header .adjustment_p {
  margin-left: 45px;
}

.accordion_header .i_box {
  position: absolute;
  top: 59px;
  right: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 27px;
  height: 27px;
  margin-top: -20px;
  background-color: #fff;
  border-radius: 50%;
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  border:1px solid #707070;
}

.accordion_header .i_box.arrowdion {
  border:0;
}

.accordion_header .i_box .one_i {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}

.accordion_one .accordion_header.open .i_box {
  transform: rotate(-180deg);
}

.accordion_header .i_box .one_i:before,
.accordion_header .i_box .one_i:after {
  position: absolute;
  top: 6px;
  left: 0;
  display: flex;
  width: 14px;
  height: 1px;
  content: "";
  background-color: #707070;
  transform: rotate(0deg);
  transform-origin: center center;
}

.accordion_one .accordion_header .i_box .one_i:before {
  top: 0;
  left: 6px;
  width: 1px;
  height: 14px;
}

.accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}

.accordion_one .accordion_header.open .i_box .one_i:after {
  transform: rotate(-45deg);
}

.accordion_inner {
  display: none;
  padding: 0 32px 40px;
  font-size: 15px;
  background-color: #fff;
  /* border-radius: 0 0 20px 20px; */
}

.accordion_header.sk_accordion {
  padding: 24px 32px;
  text-align: center;
  background-color: transparent;
  border: solid 1px #707070;
  background-color: #fff;
  /* border-radius: 10px; */
  font-size: 18px;
}

.accordion_header.sk_accordion .i_box {
  top: 60%;
  width: 15px;
  height: 15px;
  background-color: transparent;
  border-top: solid 1px #707070;
  border-right: solid 1px #707070;
  border-radius: 0;
  transform: rotate(135deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}

.accordion_header.sk_accordion.open .i_box {
  top: 70%;
  transform: rotate(315deg);
}

#faq .accordion_one .accordion_inner {
  padding: 32px 0 20px;
  overflow: hidden;
  background-color: transparent;
}

#faq .accordion_one:last-of-type .accordion_inner {
  padding-bottom: 0;
}

#faq .accordion_one .accordion_inner .accordion_one {
  margin-top: 0;
  margin-bottom: 32px;
}

#faq .accordion_one .accordion_inner .accordion_one:last-of-type {
  margin-bottom: 0;
}

#faq .accordion_one .accordion_inner .accordion_one .accordion_header {
  display: flex;
  align-items: baseline;
}

#faq .accordion_one .accordion_inner .accordion_one .accordion_header span {
  margin-right: 4%;
  font-size: 25px;
  color: #919191;
  font-weight: 400;
  position: absolute;
  top: 33px;
}

#faq .accordion_one .accordion_inner .accordion_one .accordion_inner {
  padding: 0;
}

.accordion_box {
  padding: 0 32px 40px;
  background-color: #fff;
  /* border-radius: 0 0 20px 20px; */
}

.accordion_box p {
  padding: 20px;
  /* font-family: "游ゴシック体 Pr6N M"; */
  font-weight: 400;
  background-color: #F0F0F0;
  /* border-radius: 20px; */
}

.accordion_box p a {
  color: #342d2a;
}

.accordion_box a.modal_btn,
.modal_btn {
  cursor: pointer;
  text-decoration: underline;
}

.Pagetop {
  z-index: 18;
  background: #A6A6A6;
}

@media screen and (max-width: 767px) {
  .hamburger {
    top: 64px;
    right: 12px;
    width: 50px;
    height: 50px;
  }

  .hamburger.fixed {
    top:12px;
  }

  .hamburger_inner {
    width: 20px;
    height: 8px;
  }

  .hamburger.active span:nth-of-type(1),
  .hamburger.active span:nth-of-type(2) {
    top: 4px;
  }

  .menu {
    right: -100vh;
    width: 100%;
  }

  nav {
    padding: 72px 28px;
    height:auto;
  }

  nav ul li {
    margin-bottom: 30px;
    font-size: 18px;
  }

  main {
    font-size: 16px;
    line-height: 1.6;
  }

  #faq .sec_inner {
    padding: 0 5%;
  }

  .accordion_one {
    margin-top: 20px;
  }

  .accordion_header {
    padding: 30px 70px 30px 20px;
    font-size: 15px;
  }

  .accordion_inner {
    padding: 0 20px 30px;
  }

  .accordion_header.sk_accordion {
    padding: 15px 0;
    font-size: 16px;
  }

  .accordion_header.sk_accordion .i_box {
    top: 70%;
    right: 6%;
    width: 12px;
    height: 12px;
  }

  .accordion_header.sk_accordion.open .i_box {
    top: 80%;
  }

  #faq .accordion_one .accordion_inner .accordion_one {
    margin-bottom: 20px;
  }

  #faq .accordion_one .accordion_inner .accordion_one .accordion_header {
    padding: 20px 20% 20px 20px;
  }

  #faq .accordion_one .accordion_inner .accordion_one .accordion_header span {
    margin-right: 6%;
    font-size: 22px;
    top: 14px;
  }

  .accordion_box {
    padding: 0 20px 20px;
  }

  .accordion_header .i_box {
    top: 38px;
  }
}


.page_title {
  padding: 90px 55px 60px;
  font-size:30px;
  background-color: #fff;
  line-height: 1.4;
}

.page_title span {
  font-size:17px;
  display: block;
}

.section-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
	color: #333;
	text-align: center;
  padding-top: 80px;
}

.section-title::before,
.section-title::after {
	content: "";
	flex: 1;
	/* max-width: 200px; */
	height: 1px;
	background: #999;
}

.section_inner {
  padding-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .page_title {
    padding: 78px 55px 30px;
    font-size:22px;
  }
  .page_title span {
    font-size:14px;
  }
  .section-title {
    font-size: 18px;
    padding-top: 50px;
    gap: 16px;
  }
  .section_inner {
    padding-bottom: 70px;
  }

}
