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 {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {
    line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    color: #000;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
    border-bottom: 1px solid #000;
}
ins {
    background-color:#fff;
    color:#000;
    text-decoration:none;
}
mark {
    background-color:#fff;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {
    vertical-align:middle;
}

/* common */
html {
  scroll-behavior: smooth;
}
.main {
  margin-top: 70px;
  margin-bottom: 203px;
  margin-inline: auto;
  width: 700px;
  max-width: 86%;
}
@media screen and (max-width: 767px) {
  .main {
    width: 87vw;
    max-width: 100%;
    margin-top: 33vw;
    margin-bottom: 21vw;
  }
}
* {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  * {
    font-size: 3.7vw;
  }
}
button {
  background-color: transparent;
  border: none;
}
.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.sup {
    font-size: 10px;
    vertical-align: super;
}
@media screen and (max-width: 767px) {
  .sup {
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}
.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: unset;
  }
}
.body {
  position: relative;
}
.body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}
.body.overlay-hidden::before {
  display: none;
}
@keyframes pageOverlayFade {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

.hover-opacity {
  opacity: 1.0;
  transition: opacity 0.2s;
}
.hover-opacity:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .hover-opacity:hover {
    opacity: 1.0;
  }
}

/* header */
.header {
  background-color: transparent;
  width: 100%;
  height: 123px;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .header {
    height: 17vw;
  }
}

.header__inner {
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 5vw;
  }
}
.header__title {
  position: relative;
  z-index: 999;
}
.header_logo {
  position: relative;
  border: none;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .header_logo {
    font-size: 5.5vw;
  }
}
.header_logo::before {
  position: absolute;
  content: '';
  background-image: url(../img/header_logo_on.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 7px;
  bottom: -10px;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
.header.active .header_logo::before {
  background-image: url(../img/header_logo_on_active.svg);
}
.header_logo:hover::before {
  opacity: 1.0;
}
@media screen and (max-width: 767px) {
  .header_logo::before {
    display: none;
  }
}

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background-color: #000;
  transition: ease .4s;
  pointer-events: none;
}

.nav-items {
  position: absolute;
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  column-gap: min(11em, 20vw);
  row-gap: 19.8em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}
@media screen and (max-width: 767px) {
  .nav-items {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 11vh;
    top: 15vh;
    transform: translateX(-50%);
  }
}

.nav-items__item a,
.nav-details-summary {
  position: relative;
  color: #fff;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 24px;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .nav-items__item a,
  .nav-details-summary {
    font-size: 4.2vw;
  }
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}

.nav-items__item .nav_item_circle::before {
  position: absolute;
  content: '';
  background-repeat: no-repeat;
  background-size: contain;
  width: min(232px, 26vw);
  height: min(234px, 26vw);
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .nav-items__item .nav_item_circle::before {
    display: none;
  }
}

.nav-items__item .nav_item_circle._about::before {
  background-image: url(../img/nav_circle_red.svg);
}
.nav-items__item .nav_item_circle._works::before {
  background-image: url(../img/nav_circle_yellow.svg);
}
.nav-items__item .nav_item_circle._contact::before {
  background-image: url(../img/nav_circle_green.svg);
}
.nav-items__item .nav_item_circle:hover::before {
  opacity: 1.0;
  pointer-events: all;
}
@media screen and (max-width: 767px) {
  .nav-items__item .nav_item_circle:hover::before {
    opacity: 0;
    pointer-events: none;
  }
}

.nav-items__item .nav_item_border::before {
  position: absolute;
  content: '';
  background-repeat: no-repeat;
  background-size: contain;
  height: 8px;
  top: auto;
  bottom: -0.56em;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.4s;
  pointer-events: none;
}
.nav-items__item .nav_item_border._instagram::before {
  background-image: url(../img/nav_border_instagram.svg);
  width: 133px;
}
.nav-items__item .nav_item_border._x::before {
  background-image: url(../img/nav_border_x.svg);
  width: 36px;
}
.nav-items__item .nav_item_border._mail::before {
  background-image: url(../img/nav_border_mail.svg);
  width: 90px;
}
.nav-items__item .nav_item_border:hover::before {
  opacity: 1.0;
  pointer-events: all;
}
@media screen and (max-width: 767px) {
  .nav-items__item .nav_item_border._instagram::before,
  .nav-items__item .nav_item_border._x::before,
  .nav-items__item .nav_item_border._mail::before {
    display: none;
  }
}

.details.nav-details {
  border: none;
  padding: 0;
}
.details-summary.nav-details-summary {
  color: #FFF;
  column-gap: 5vw;
}
.details.nav-details .item-3-details-summary-icon {
  position: absolute;
  width: 4vw;
  top: 50%;
  left: auto;
  right: -7vw;
  transform: translateY(-50%);
}
.details.nav-details .item-3-details-summary-icon::before {
  height: 4vw;
}
.details.nav-details .item-3-details-summary-icon,
.details.nav-details .item-3-details-summary-icon::before {
  background-color: #FFF;
}

.details-content-list {
  display: grid;
  row-gap: 9vw;
  padding-block: 8.4vw;
}

.header__hamburger {
  width: 5em;
  height: auto;
  cursor: pointer;
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 99;
}


.hamburger span {
  position: relative;
  width: 100%;
  height: 1em;
  transition: ease .4s;
  display: block;
  text-align: right;
}

.hamburger span::before {
  position: absolute;
  content: 'Menu';
  color: #000;
  font-size: 24px;
  top: 50%;
  left: auto;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .hamburger span::before {
    font-size: 5.5vw;
  }
}
.hamburger span::after {
  position: absolute;
  content: '';
  background-image: url(../img/header_menu_on.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 7px;
  bottom: -17px;
  left: auto;
  right: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
@media screen and (max-width: 767px) {
  .hamburger span::after {
    height: 1.3vw;
  }
}

.header.active .hamburger span::after {
  background-image: url(../img/header_menu_on_active.svg);
}
.hamburger span:hover::after {
  opacity: 1.0;
}
@media screen and (max-width: 767px) {
  .hamburger span::after {
    display: none;
  }
}

.header__nav.active {
  opacity: 1.0;
  pointer-events: all;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 767px) {
  .header__nav.active::before {
    position: fixed;
    content: '';
    background-color: #000;
    width: 100%;
    height: 17vw;
    top: 0;
    left: 0;
    z-index: 10;
  }
}

.header__hamburger.hamburger.active span::before {
  content: 'Close';
  color: #fff;
}

/* main */
.main_ttl {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .main_ttl {
    font-size: 4.3vw;
  }
}

/* top */
.body._top {
  height: 100vh;
  min-height: 800px;
}
@media screen and (max-width: 767px) {
  .body._top {
    height: auto;
    min-height: auto;
  }
}
.body._top::before {
  background: #000;
  animation: pageOverlayFade 1.0s forwards;
}

.main._top {
  margin-top: 13px;
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .main._top {
    width: 87vw;
    margin-top: 3vw;
    margin-bottom: 0;
  }
}

.kv_color_list {
  margin-left: 50px;
}
@media screen and (max-width: 767px) {
  .kv_color_list {
    margin-left: 0;
  }
}

.kv_color_list_item:nth-of-type(n+2) {
  margin-top: 9px;
}
@media screen and (max-width: 767px) {
  .kv_color_list_item:nth-of-type(n+2) {
    margin-top: 2vw;
  }
}

.kv_signal_wrap {
  position: relative;
  margin-top: -3px;
}
@media screen and (max-width: 1170px) {
  .kv_signal_wrap {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .kv_signal_wrap {
    margin-top: 6vw;
  }
}

.kv_bg {
  position: relative;
  width: 890px;
  max-width: 90%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .kv_bg {
    width: 50.9vw;
  }
}
.kv_bg img {
  display: block;
  width: 100%;
  height: auto;
}

.kv_signal_link_wrap {
  position: absolute;
  display: flex;
  justify-content: center;
  column-gap: min(18vw, 25px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .kv_signal_link_wrap {
    flex-wrap: wrap;
    column-gap: 0;
    row-gap: 4vw;
  }
}

.kv_signal_link {
  position: relative;
  display: block;
  width: 246px;
  max-width: 25vw;
  height: 242px;
  max-height: 25vw;
  border: none;
}
@media screen and (max-width: 767px) {
  .kv_signal_link {
    width: 35vw;
    max-width: 100%;
    height: 35vw;
    max-height: 100%;
  }
}

.kv_signal_link img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
  width: 100%;
  max-width: 25vw;
  height: 100%;
  max-height: 25vw;
	display: block;
	-webkit-transition: .4s;
	transition: .4s opacity;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .kv_signal_link img:nth-of-type(1) {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
  }
}
.kv_signal_link img:nth-of-type(1) {
	opacity: 0;
}
@media screen and (max-width: 767px) {
  .kv_signal_link img:nth-of-type(1) {
    opacity: 1;
  }
}
.kv_signal_link:hover img:nth-of-type(1) {
	opacity: 1;
}
@media screen and (max-width: 767px) {
  .kv_signal_link:hover img:nth-of-type(1) {
    opacity: 1;
  }
}

.kv_signal_link:hover img:nth-of-type(2) {
	opacity: 0;
}
@media screen and (max-width: 767px) {
  .kv_signal_link:hover img:nth-of-type(2) {
    opacity: 0;
  }
}

._top .swiper {
  position: absolute;
  width: 100%;
  overflow: hidden;
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  ._top .swiper {
    position: relative;
    margin-top: 54vw;
    margin-bottom: 12vw;
    bottom: auto;
    left: auto;
    transform: translateX(0);
  }
}
.top_slide_link {
  position: relative;
  display: block;
  border: none;
  cursor: pointer;
  height: 206px;
  margin-inline: auto;
  margin-top: 20px;
  width: min(344px, 30vw);
}
@media screen and (max-width: 767px) {
  .top_slide_link {
    width: 42vw;
    height: 22vw;
    margin-inline: 10vw;
  }
}

.top_slide_link img {
  position: absolute;
  width: 100%;
  height: auto;
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  transition: opacity .4s;
}
.top_slide_link img:last-of-type {
  opacity: 0;
}
.top_slide_link:hover img {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .top_slide_link:hover img {
    opacity: 0;
  }
}
.top_slide_link:hover img:first-of-type {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .top_slide_link:hover img:first-of-type {
    opacity: 1;
  }
}

#top .kv {
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .main._works {
    margin-top: 8vw;
  }
}

/* works */
.body._works::before {
  background: #F9A800;
  animation: pageOverlayFade 1.0s forwards;
}

@media screen and (max-width: 767px) {
  .main._works,
  .main._works_details {
    margin-top: 8vw;
  }
}

._works .content {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 75px;
}
@media screen and (max-width: 767px) {
  ._works .content {
    row-gap: 6vw;
  }
}

.works_btn {
  position: relative;
  display: block;
  margin-inline: auto;
  cursor: pointer;
  max-width: 350px;
  border: none;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .works_btn {
    width: 50vw;
  }
}

.works_btn img {
  display: block;
  width: 100%;
  height: auto;
}

.works_btn::before {
  position: absolute;
  display: inline-block;
  content: '';
  background-repeat: no-repeat;
  background-size: contain;
  width: 392px;
  height: 390px;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 2;
}
.works_btn._colors::before {
  background-image: url(../img/works/colors_btn_on.png);
}
.works_btn._homestay::before {
  background-image: url(../img/works/homestay_btn_on.png);
}
.works_btn._stylelook::before {
  background-image: url(../img/works/stylelook_btn_on.png);
}
.works_btn._anywhere::before {
  background-image: url(../img/works/anywhere_btn_on.png);
}
.works_btn._calendar::before {
  background-image: url(../img/works/calendar_btn_on.png);
}
.works_btn._beer::before {
  background-image: url(../img/works/beer_btn_on.png);
}
.works_btn._rubiks-cube::before {
  background-image: url(../img/works/rubiks-cube_btn_on.png);
}
.works_btn:hover::before {
  opacity: 1.0;
  pointer-events: all;
}
@media screen and (max-width: 767px) {
  .works_btn::before {
    display: none;
  }
}

#works .main_ttl_wrap {
  position: relative;
  width: 700px;
  max-width: 80%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #works .main_ttl_wrap {
    max-width: 100%;
  }
}

.works_size_txt {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .works_size_txt {
    margin-top: 7vw;
  }
}

.works_img_list {
  margin-top: 47px;
}
@media screen and (max-width: 767px) {
  .works_img_list {
    margin-top: 20vw;
  }
}

#works .swiper-slide {
  overflow-y: scroll;
  height: 100vh;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#works .swiper-slide::-webkit-scrollbar {
  display: none;
}

.back-btn.back-btn_top {
  position: absolute;
  content: '';
  cursor: pointer;
  border: none;
  width: 30px;
  height: 30px;
  top: auto;
  bottom: 40px;
  left: auto;
  right: 0;
}
@media screen and (max-width: 767px) {
  .back-btn.back-btn_top {
    width: 5vw;
    height: 5vw;
    bottom: 11vw;
  }
}

.back-btn.back-btn_top::before,
.back-btn.back-btn_top::after {
  position: absolute;
  content: '';
  background-color: #000;
  width: 1px;
  height: 30px;
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 767px) {
  .back-btn.back-btn_top::before,
  .back-btn.back-btn_top::after {
    height: 5vw;
  }
}

.back-btn.back-btn_top::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.back-btn.back-btn_top::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.back-btn {
  color: #000;
  background: transparent;
  cursor: pointer;
  border: none;
  padding: 0;
  z-index: 10;
}

.works_top_btn {
  position: relative;
  border: none;
  display: block;
  margin-right: 5px;
}

.works_arrow_wrap .button-prev,
.works_arrow_wrap .button-next {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 0;
  width: 15px;
  height: 8px;
  border: none;
}
.works_arrow_wrap .button-prev::after,
.works_arrow_wrap .button-next::after {
  display: none;
}
.works_arrow_wrap .button-prev,
.works_arrow_wrap .swiper-rtl .button-next {
  left: 0;
  right: 0;
}

.works_other .button-next, .swiper-rtl .button-prev {
  left: 0;
  right: 0;
}

.works_img {
  width: 700px;
  max-width: 80%;
  margin-inline: auto;
  border: 1px solid #000;
}
.works_img._wide {
  width: 988px;
  max-width: 90%;
}
@media screen and (max-width: 767px) {
  .works_img,
  .works_img._wide {
    max-width: 100%;
  }
}


.works_img img {
  display: block;
  width: 100%;
  height: auto;
}

.works_img._video {
  width: 700px;
  height: 875px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .works_img._video {
    max-width: 100%;
    height: 100vw;
  }
}

.works_img._video video {
  object-fit: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.works_img:nth-of-type(n+2) {
  margin-top: 48px;
}

.works_other {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 700px;
  max-width: 80%;
  margin-inline: auto;
  margin-top: 67px;
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .works_other {
    max-width: 100%;
    display: block;
  }
}

.works_info {
  width: 404px;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .works_info {
    width: 100%;
  }
}

.works_info_txt {
  line-height: 2.43;
}

.works_info_list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.5em;
  margin-top: 50px;
}

.works_info_list_item {
  line-height: 2.43;
}

.works_arrow_wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.64em;
  justify-items: end;
  top: -13px;
}
@media screen and (max-width: 767px) {
  .works_arrow_wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 28px;
    row-gap: 0;
    margin-top: 10vw;
    top: 0;
  }
}

/* about */
.body._about::before {
  background: #E83743;
  animation: pageOverlayFade 1.0s forwards;
}

@media screen and (max-width: 767px) {
  .main._about {
    margin-top: 8vw;
  }
}

.info_list {
    margin-top: 47px;
}
@media screen and (max-width: 767px) {
  .info_list {
    margin-top: 12.8vw;
  }
}
.info_list_item {
    line-height: 2.4;
}
@media screen and (max-width: 767px) {
  .info_list_item {
    line-height: 2.6;
  }
}
.info_list_item:nth-of-type(n+2) {
    margin-top: 0.1em;
}
@media screen and (max-width: 767px) {
  .info_list_item:nth-of-type(n+2) {
    margin-top: 0;
  }
}

.info_sns_list {
  margin-top: 52px;
}
@media screen and (max-width: 767px) {
  .info_sns_list {
    margin-top: 12.7vw;
  }
}
.info_sns_list_item:nth-of-type(n+2) {
  margin-top: 1.44em;
}

.info_notes_list {
  display: grid;
  row-gap: 1.45em;
  word-break: break-all;
  margin-top: 103px;
}
@media screen and (max-width: 767px) {
  .info_notes_list {
    margin-top: 22.4vw;
    row-gap: 0.1em;
  }
}
@media screen and (max-width: 767px) {
  .info_notes_list_item {
    line-height: 2.4;
  }
}
.info_notes_list_number {
  display: inline-block;
  margin-right: 1.0em;
}

.info_active_list {
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .info_active_list {
    margin-top: 0.5vw;
  }
}
@media screen and (max-width: 767px) {
  .info_active_list_item {
    line-height: 2.56;
  }
}

.info_active_list_item:nth-of-type(n+2) {
  margin-top: 1.44em;
}
@media screen and (max-width: 767px) {
  .info_active_list_item:nth-of-type(n+2) {
    margin-top: 0;
  }
}

/* contact */
.body._contact::before {
  background: #0F8558;
  animation: pageOverlayFade 1.0s forwards;
}

@media screen and (max-width: 767px) {
  .main._contact {
    margin-top: 6vw;
  }
}
.contact_txt {
  line-height: 2.4;
  text-align: justify;
}

.accordion_wrap {
  margin-top: 45px;
}

.contact_accordion_link_wrap {
  position: relative;
  display: inline-block;
  left: 50%;
  animation: floating 1.2s ease-in-out infinite alternate-reverse;
}
@keyframes floating {
  0% {
    transform: translateX(-50%) translateY(-5px);
  }
  100% {
    transform: translateX(-50%) translateY(5px);
  }
}

.contact_accordion_link {
  display: block;
  width: fit-content;
  border: none;
  transform: scale(1.0);
  transition: transform 0.3s ease;
  padding: 40px 0;
}
.contact_accordion_link:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 767px) {
  .contact_accordion_link:hover {
    transform: scale(1);
  }
}

@media screen and (max-width: 767px) {
  .contact_accordion_link {
    padding: 11vw 0;
  }
}

.details {
  border-top: 1px solid #818181;
  padding: 22px 23px 21px 10px;
}

.accordion_wrap .details:nth-of-type(3) {
  border-bottom: 1px solid #818181;
}

.details-summary {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.details-summary::-webkit-details-marker {
  display: none;
}

.item-3-details-summary-icon {
  position: relative;
  display: block;
  margin-left: auto;
  width: 16px;
  height: 1px;
  background-color: #000;
}

.item-3-details-summary-icon::before {
  position: absolute;
  content: '';
  background-color: #000;
  width: 1px;
  height: 16px;
  top: 50%;
  left: 50%;
  opacity: 1.0;
  transform: translate(-50%, -50%);
  transition-property: transform opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}

.details.is-opened .item-3-details-summary-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.details-content {
  transition-property: height;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}
