:where(
    :not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)
  ) {
  all: unset;
  display: revert;
}
*,
::after,
::before {
  box-sizing: border-box;
}
a,
button {
  cursor: revert;
}
menu,
ol,
ul {
  list-style: none;
}
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}
table {
  border-collapse: collapse;
}
input,
textarea {
  -webkit-user-select: auto;
}
textarea {
  white-space: revert;
}
meter {
  -webkit-appearance: revert;
  appearance: revert;
}
:where(pre) {
  all: revert;
}
::placeholder {
  color: unset;
}
::marker {
  content: initial;
}
:where([hidden]) {
  display: none;
}
:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}
:where([draggable="true"]) {
  -webkit-user-drag: element;
}
:where(dialog:modal) {
  all: revert;
}

html {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  line-height: 1.7;
}

img {
  width: 100%;
  vertical-align: middle;
}

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

p > a {
  color: #87bad1;
  text-decoration: underline;
}

p > a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../../assets/images/link.svg");
  background-size: contain;
  margin-right: 4px;
  transform: translateY(2px);
}

header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header_wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px;
}

.header_left {
  display: flex;
  align-items: center;
}

.header_logo {
  max-width: 140px;
  margin-right: 16px;
}

.header_ttl {
  font-size: 0.8em;
}

.header_right {
  position: relative;
}

.header_menu {
  visibility: hidden;
  position: absolute;
  width: 100vw;
  max-width: 300px;
  right: 0;
  top: 100%;
  background: white;
  padding: 16px;
  transition: all 0.5s;
  opacity: 0;
  transform: translateY(-32px);
}

.header_menu.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.header_menu span {
  font-size: 0.9em;
  color: #87bad1;
  padding-right: 8px;
}

.header_menu a {
  display: block;
  width: 100%;
  padding: 8px;
  border-top: 1px solid #00000030;
}

.header_menu li:last-of-type a {
  border-bottom: 1px solid #00000030;
}

.header_menu a:hover {
  background: #00000010;
}

.header_menu_btn {
  /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: relative;
  background: #87bad1;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

/*ボタン内側*/
.header_menu_btn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 5px;
  background: #fff;
  width: 45%;
}

.header_menu_btn span:nth-of-type(1) {
  top: 13px;
}

.header_menu_btn span:nth-of-type(2) {
  top: 19px;
}

.header_menu_btn span:nth-of-type(3) {
  top: 25px;
}

.header_menu_btn span:nth-of-type(3)::after {
  content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top: 5px;
  left: -2px;
  color: #fff;
  font-size: 0.6rem;
  text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.header_menu_btn.active span:nth-of-type(1) {
  top: 14px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.header_menu_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.header_menu_btn.active span:nth-of-type(3) {
  top: 26px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.header_menu_btn.active span:nth-of-type(3)::after {
  content: "Close"; /*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(-45deg);
  top: 5px;
  left: 4px;
}

.fixed_btn_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: fixed;
  z-index: 100;
  bottom: 16px;
  right: 0;
}

.fixed_btn_item {
  display: block;
  writing-mode: vertical-rl;
  padding: 16px 8px;
  border-radius: 8px 0 0 8px;
  text-align: center;
  text-decoration: none;
}
.fixed_btn_item.contact_btn {
  color: white;
  background: #bfb79f;
}
.fixed_btn_item.inspection_btn {
  color: #87bad1;
  background: white;
  border: 2px solid #87bad1;
}
.fixed_btn_item.application_btn {
  color: white;
  background: #87bad1;
}

@media screen and (max-width: 768px) {
  .header_logo {
    width: auto;
    height: 30px;
  }
  .header_ttl {
    display: none;
  }
  .fixed_btn_list {
    flex-direction: row;
    left: 0;
    bottom: 0;
  }
  .fixed_btn_item {
    flex: 1;
    height: auto;
    writing-mode: inherit;
    border-radius: 8px 8px 0 0;
  }
}

#hero {
  background: url("./top.jpg");
  background-size: cover;
  background-position: center center;
}

.hero_wrapper {
  display: flex;
  align-items: stretch;
  flex-direction: row-reverse;
  max-width: 1200px;
  height: 100%;
  min-height: 640px;
  margin: 0 auto;
  position: relative;
}

.hero_cover {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 36px;
  background: rgba(0, 0, 0, 0.5);
}

.hero_img {
  width: 360px;
}

.hero_ttl {
  margin-bottom: 16px;
  font-size: 52px;
  color: white;
}

.hero_txt {
  color: white;
  font-size: 1.5em;
}

.hero_btn_primary {
  display: inline-block;
  margin: 8px;
  padding: 8px 16px;
  width: fit-content;
  color: white;
  background: #87bad1;
  border-radius: 50px;
  font-size: 1.2em;
  text-align: center;
  box-shadow: 0 5px 0 #5e8292;
}

.hero_btn_secondary {
  display: inline-block;
  margin: 8px;
  padding: 4px 24px 4px 16px;
  width: fit-content;
  color: #87bad1;
  border-bottom: 2px solid #87bad1;
  text-align: center;
  position: relative;
}

.hero_btn_secondary::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #87bad1;
  border-right: 2px solid #87bad1;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: rotate(45deg) translateY(-50%);
}

.hero_fixed_txt {
  padding: 8px 16px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  font-size: 1.5em;
  position: absolute;
  bottom: 16px;
  left: 0;
}

.hero_fixed_txt span {
  font-size: 2em;
}

@media screen and (max-width: 768px) {
  .hero_wrapper {
    min-height: inherit;
  }
  .hero_cover {
    width: 100%;
    padding: 120px 3vw 64px;
  }
  .hero_ttl {
    font-size: 13vw;
  }
  .hero_fixed_txt {
    font-size: 1em;
    bottom: inherit;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.sec_ttl {
  margin: 0 auto;
  width: 330px;
  height: 132px;
  background: url("../../assets/images/sec_ttl.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}

.sec_ttl_en,
.sec_ttl_jp {
  width: 100%;
  position: absolute;
  font-size: 1.5em;
  text-align: center;
}

.sec_ttl_en {
  bottom: 58%;
}

.sec_ttl_jp {
  top: 50%;
}

.sec_lead_txt {
  margin: 32px 0;
  text-align: center;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px;
}

@media screen and (max-width: 768px) {
  .sec_ttl {
    width: 91vw;
    height: 32.4vw;
    background-position: center center;
  }

  .sec_ttl_en {
    font-size: 6vw;
  }

  .sec_ttl_jp {
    font-size: 6.5vw;
  }

  .wrapper {
    padding: 32px 2vw;
  }
}

.banner {
  max-width: 640px;
  margin: 32px auto;
}

.cta{
	background:white;
}

.cta_ttl {
  margin: 32px auto;
  font-size: 1.5em;
  text-align: center;
  position: relative;
}

.cta_ttl::after {
  content: url("../../assets/images/ttl_bar.png");
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}

.cta_list {
  display: flex;
  margin: 32px auto;
  max-width: 1000px;
  gap: 32px;
}

.cta_list_item {
  width: calc(100%);
}

.cta_list_item_ttl {
  text-align: center;
  font-size: 1.2em;
}

.cta_list_item_btn {
  display: block;
  padding: 8px 16px;
  margin: 16px 0;
  border-radius: 100px;
  font-size: 1.5em;
  text-align: center;
}

.cta_list_item_btn.contact {
color:white;
  background: #bfb79f;
}

.cta_list_item_btn.apply {
  color: white;
  background: #87bad1;
}

.cta_list_item_btn.inspection {
  color: #87bad1;
  background: white;
  border: 2px solid #87bad1;
}

.cta_list_item_txt {
  font-size: 0.9em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cta_list {
    flex-direction: column-reverse;
    align-items: center;
  }

  .cta_list_item {
    padding-bottom: 32px;
    border-bottom: 2px solid #00000030;
  }

  .cta_list_item:last-of-type {
    padding-top: 32px;
    border-top: 2px solid #00000030;
  }
}

#about {
  background: #fcf9f5;
}

.about_copy {
  text-align: center;
  font-size: 2em;
  margin: 32px;
  padding-bottom: 8px;
}
.about_copy span {
  border-bottom: 5px solid #a6c4d6;
}

.about_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  counter-reset: about 0;
  max-width: 800px;
  margin: 48px auto 16px;
}

.about_list_item {
  width: calc((100% - 32px * 3) / 4);
  padding: 16px;
  background: white;
  border: 2px solid #222;
  box-shadow: 8px 8px 0 #00000010;
  position: relative;
}

.about_list_item::before {
  counter-increment: about 1;
  content: "0" counter(about);
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 24px;
  text-align: center;
  color: white;
  background: #87bad1;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: -4px;
}

.about_list_item_icon {
  text-align: center;
  margin: 8px 0 16px;
}

.about_list_item_icon img {
  width: auto;
  height: 80px;
}

.about_list_item_txt {
  text-align: center;
  font-size: 1.2;
}

.about_list_item_popup {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #00000050;
  z-index: 5;
}

.about_list_item_popup_wrapper {
  position: fixed;
  max-width: 600px;
  padding: 32px;
  background: white;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about_list_item_popup_ttl {
  margin: 16px 0;
  padding-left: 60px;
  font-size: 1.2em;
  line-height: 48px;
  position: relative;
}

.about_list_item_popup_ttl::before {
  content: "0" counter(about);
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 24px;
  text-align: center;
  color: white;
  background: #87bad1;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.about_list_item_popup_txt {
  text-align: justify;
}

.about_list_item_popup_close {
  display: block;
  width: 36px;
  height: 36px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  right: 4px;
}

.about_list_item_popup_close::before {
  content: "";
  display: block;
  height: 2px;
  width: 24px;
  background: white;
  transform: rotate(45deg);
  position: absolute;
  top: 17px;
  right: 6px;
}

.about_list_item_popup_close::after {
  content: "";
  display: block;
  height: 2px;
  width: 24px;
  background: white;
  transform: rotate(-45deg);
  position: absolute;
  top: 17px;
  right: 6px;
}

@media screen and (max-width: 768px) {
  .about_copy {
    margin: 32px auto;
    font-size: 8.5vw;
  }
  .about_list {
    justify-content: flex-start;
    padding: 0 8px;
    gap: 16px;
  }

  .about_list_item {
    width: calc((100% - 16px) / 2);
  }

  .about_list_item::before {
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

  .about_list_item_popup_wrapper {
    padding: 16px;
    width: 100%;
  }

  .about_list_item_popup_ttl {
    line-height: 1.7;
  }
}

#facility {
  background: url("../../assets/images/bg_wood.png");
  background-size: 480px;
  background-repeat: repeat;
}

.facility_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.facility_list_item {
  width: calc((100% - 72px) / 4);
}

.facility_list_item_img {
  box-shadow: 8px 8px 0 #00000010;
}

.facility_list_item_txt {
  margin: 16px 8px;
  font-size: 0.9em;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .facility_list {
    gap: 16px;
    padding: 16px;
  }
  .facility_list_item {
    width: calc((100% - 16px) / 2);
  }
}

#price {
  background: #fcf9f5;
}

.price_table {
  margin: 32px auto;
  max-width: 800px;
  background: white;
}

.price_table > * {
  margin-bottom: 16px;
}

figcaption{
  text-align:right;
}

@media screen and (max-width: 768px) {
  .price_table {
    font-size: 0.9em;
    padding: 8px;
  }
}

#flow {
  background: url("../../assets/images/bg_craft.png");
}

.flow_list {
  margin-top: 32px;
}

.flow_list_item {
  display: flex;
  gap: 16px;
  margin: 32px;
}

.flow_list_item_container {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 32px;
  background: white;
  box-shadow: 8px 8px 0 #00000010;
  position: relative;
}

.flow_list_item:not(:last-of-type) .flow_list_item_container {
  margin-bottom: 32px;
}

.flow_list_item:not(:last-of-type) .flow_list_item_container::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 24px 0 24px;
  border-color: #00000030 transparent transparent transparent;
  position: absolute;
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
}

.flow_list_item_container._sub {
  width: 60%;
  align-items: flex-start;
}

.flow_list_item_number {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  color: white;
  background: #87bad1;
  border-radius: 50%;
  flex-shrink: 0;
}

.flow_list_item_content {
  margin-left: 24px;
  padding: 8px;
  padding-left: 24px;
  border-left: 1px solid #00000030;
}

.flow_list_item_container._sub .flow_list_item_content {
  border: none;
  margin: 0;
  padding-left: 8px;
}

.flow_list_item_ttl {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 8px;
}

.flow_about_inspection {
  text-align: center;
}

.flow_about_inspection_ttl {
  padding: 32px 0;
  font-size: 1.5em;
  font-weight: 600;
  position: relative;
}

.flow_about_inspection_ttl::after {
  content: url("../../assets/images/ttl_bar.png");
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.flow_about_inspection_txt {
  font-size: 1.1em;
}

@media screen and (max-width: 768px) {
  .flow_list {
    margin-top: 48px;
  }

  .flow_list_item {
    flex-direction: column;
    margin: 16px;
  }
  .flow_list_item_container {
    position: relative;
  }

  .flow_list_item_container._sub {
    width: 100%;
  }

  .flow_list_item:not(:last-of-type) .flow_list_item_container::after {
    display: none;
  }

  .flow_list_item:has(._sub) .flow_list_item_container:not(._sub) {
    margin-bottom: 0;
  }

  .flow_list_item_number {
    position: absolute;
    left: 50%;
    top: -24px;
    transform: translateX(-50%);
  }
  .flow_list_item_content {
    margin-left: 0;
    padding: 8px 0;
    border: none;
  }
}

#voice {
  background: url("../../assets/images/bg_wood.png");
  position: relative;
}

.voice_list {
  margin: 32px auto 0;
  max-width: 1200px;
  padding: 0 160px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.voice_list_item {
  width: calc((100% - 48px) / 4);
  padding: 16px;
  background: white;
  box-shadow: 8px 8px 0 #00000010;
  font-size: 0.9em;
}

.voice_list_item_txt {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 2px solid #00000030;
  text-align: justify;
}

.voice_list_btn {
  width: 80px;
  height: 80px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #222;
  position: absolute;
  top: calc(50% + 66px);
  transform: translateY(-50%);
}

.voice_list_btn._prev {
  left: calc(50% - 512px);
}

.voice_list_btn._next {
  right: calc(50% - 512px);
}

@media screen and (max-width: 768px) {
  .voice_list {
    padding: 16px;
    padding-bottom: 120px;
  }

  .voice_list_item {
    width: calc((100% - 16px) / 2);
  }

  .voice_list_btn {
    top: inherit;
    bottom: 0;
  }

  .voice_list_btn._prev {
    left: 16px;
  }

  .voice_list_btn._next {
    right: 16px;
  }
}

#faq {
  background: #fcf9f5;
}

.faq_list {
  max-width: 800px;
  margin: 32px auto 0;
  padding: 32px;
  background: white;
}

.faq_list_item {
  flex-direction:column;
  padding: 16px 8px;
  border-bottom: 2px solid #00000030;
}

.faq_list_item:last-of-type {
  border-bottom: none;
}

.faq_list_item_ttl,
.faq_list_item_txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px;
  gap:8px;
  flex: 1;
  width: 100%;
}

.faq_list_item_ttl::before {
  background: url("../../assets/images/question_icon.png");
}

.faq_list_item_txt::before {
  background: url("../../assets/images/answer_icon.png");
}

.faq_list_item_ttl::before,
.faq_list_item_txt::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .faq_list {
    padding: 8px;
  }
}

#access {
  background: url("../../assets/images/bg_craft.png");
}

.access_container {
  margin-top: 32px;
  padding: 32px;
  background: white;
}

.access_info {
  display: flex;
  align-items: stretch;
  gap: 16px;
  min-height: 400px;
}

.access_info_left {
  flex: 1;
}

.access_info_left iframe {
  width: 100%;
  height: 100%;
}

.access_info_right {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 16px;
  flex: 1;
}

.access_info_ttl {
  margin-bottom: 16px;
  font-size: 1.5em;
  font-weight: 600;
}

.access_info_ttl span {
  margin-left: 8px;
  font-size: 0.9rem;
  color: #87bad1;
  white-space: nowrap;
}

.access_info_item {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid #00000030;
}

.access_info_item:first-of-type {
  border-top: 1px solid #00000030;
}

.access_info_list_ttl {
  width: 80px;
  font-weight: 600;
}

.access_info_list_txt {
  width: calc(100% - 96px);
}

.access_route {
  padding: 36px;
}

.access_route_ttl {
  margin: 16px 0 32px;
  font-size: 1.5em;
  text-align: center;
}

.access_route_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  counter-reset: access 0;
}

.access_route_item {
  width: calc((100% - 32px) / 3);
  position: relative;
}

.access_route_item_txt {
  display: flex;
  gap: 8px;
  text-align: justify;
  padding: 8px;
}

.access_route_item_txt::before {
  counter-increment: access 1;
  content: "0" counter(access);
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: white;
  background: #87bad1;
  border-radius: 50%;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .access_container {
    padding: 16px;
  }

  .access_info {
    flex-direction: column-reverse;
  }

  .access_info_right {
    padding: 0;
  }

  .access_info_ttl {
    text-align: center;
  }

  .access_info_left iframe {
    height: 300px;
  }

  .access_info_item {
    flex-direction: column;
  }
  .access_info_list_txt {
    width: 100%;
  }
  .access_route {
    padding: 16px 0;
  }

  .access_route_item {
    width: 100%;
  }
}

#info {
  background: #fcf9f5;
}

.info_vacancy {
  margin: 32px auto;
  padding: 16px;
  max-width: 800px;
  background: white;
}

.info_vacancy_ttl {
  font-size: 1.2em;
  text-align: center;
}

.info_list {
  display: flex;
  max-width: 800px;
  margin: 32px auto;
  gap: 32px;
}

.info_item {
  width: calc(50% - 16px);
  padding: 16px;
  background: white;
}

.info_item_ttl {
  margin: 16px 0;
}

.info_item_ttl_en {
  font-size: 0.9em;
  text-align: center;
}

.info_item_ttl_jp {
  font-size: 1.1em;
  text-align: center;
}

.info_item_btn {
  display: block;
  margin: 16px auto;
  padding: 8px 16px;
  width: 240px;
  text-align: center;
  border: 1px solid #333;
  border-radius: 100px;
}

.info_item_news_item {
  padding: 8px 16px;
  border-top: 1px solid #00000030;
}

.info_item_news_date {
  font-size: 0.9em;
}

.info_item_news_item:last-of-type {
  border-bottom: 1px solid #00000030;
}

.info_vacancy {
  padding: 16px 32px;
}

.info_vacancy_ttl {
  margin: 16px 0;
}

.info_vacancy_table p {
  text-align: center;
  margin-top: -16px;
}

.info_vacancy_table table {
  margin: 16px 0;
  width: 100%;
}

.info_vacancy_table table th {
  padding: 8px 16px;
  color: white;
  background: #333;
  text-align: center;
  vertical-align: middle;
  border: 2px solid white;
}

.info_vacancy_table table td {
  padding: 8px 16px;
  text-align: center;
  vertical-align: middle;
  border: 2px solid white;
  background: #fcf9f5;
}

.info_vacancy_table table thead th {
  color: white;
  background: #87bad1;
}

@media screen and (max-width: 768px) {
  .info_list {
    flex-direction: column;
  }
  .info_item {
    width: 100%;
  }
}

.footer_wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px;
}

.footer_left {
}

.footer_logo {
  width: 160px;
  margin-bottom: 8px;
}

.footer_txt {
  margin-bottom: 8px;
}

.footer_link_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer_sns_list {
  display: flex;
  gap: 8px;
}

.footer_sns_item {
  width: 32px;
  padding: 4px;
}

.footer_right {
  text-align: right;
  text-decoration: underline;
}

.copyright {
  padding: 4px;
  color: white;
  background: #87bad1;
  text-align: center;
  font-size: 0.9em;
}

@media screen and (max-width: 768px) {
  .footer_wrapper {
	  padding:16px 16px 76px;
    flex-direction: column;
  }
}

.page figure{
	margin:60px 0 32px;
}

.faq_accordion_btn,.faq_accordion_btn_close{
	padding: 36px;
    text-align: center;
}

.faq_accordion_btn span,.faq_accordion_btn_close span{
    color: white;
    background: #87bad1;
    padding: 8px 16px;
    border-radius: 100px;
}