@charset "UTF-8";
.section-ttl-fs {
  font-size: 1.35rem;
}
@media (min-width: 768px) {
  .section-ttl-fs {
    font-size: clamp(20px, 1.55vw, 28px);
  }
}
.section-ttl-fs small {
  font-size: 0.85rem;
  bottom: -1.6rem;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .section-ttl-fs small {
    font-size: clamp(12px, 0.85vw, 1.4rem);
    bottom: -2rem;
    line-height: normal;
  }
}
@media (min-width: 1680px) {
  .section-ttl-fs small {
    bottom: -2.7rem;
  }
}
@media (min-width: 2180px) {
  .section-ttl-fs small {
    bottom: -3rem;
  }
}

header {
  position: fixed;
  display: flex;
  justify-content: flex-end;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 3;
}
header nav {
  background-color: rgba(58, 93, 168, 0.555);
}
@media (min-width: 768px) {
  header nav {
    height: 80px;
    z-index: 3;
  }
}
header nav ul {
  display: flex;
}
header nav ul li {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}
header nav ul li a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  padding: 0 50px;
  font-size: 0.85rem;
}
header nav ul li a .svg {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 6px 0 0;
}
header nav ul li a .svg img {
  display: block;
  height: 100%;
}
header nav ul .internet-button {
  display: none;
  z-index: 2;
}
@media (min-width: 768px) {
  header nav ul .internet-button {
    display: block;
  }
}
header nav ul .internet-button a {
  height: 80px;
}
header nav ul .tel-button {
  display: none;
  z-index: 2;
}
@media (min-width: 768px) {
  header nav ul .tel-button {
    display: block;
  }
}
header nav ul .tel-button a {
  height: 80px;
}
header nav ul .tel-button span small {
  display: block;
}
header nav ul .tel-button__txt b {
  display: block;
  padding: 0 0 6px;
  border-bottom: 1px solid #fff;
  font-size: 0.75rem;
}
header nav ul .tel-button__txt small {
  padding: 4px 0 0;
  font-size: 0.95rem;
  letter-spacing: 2px;
}
header nav ul .menu-icon {
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 2;
}
@media (min-width: 768px) {
  header nav ul .menu-icon {
    width: 80px;
    height: auto;
  }
}
header nav ul .menu-icon button {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background-color: #303a8e;
  cursor: pointer;
}
header nav ul .menu-icon button:before, header nav ul .menu-icon button:after {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  left: 50%;
  background-color: #fff;
  margin-left: -10px;
  transition: all ease 0.25s;
}
@media (min-width: 768px) {
  header nav ul .menu-icon button:before, header nav ul .menu-icon button:after {
    width: 40px;
    margin-left: -20px;
  }
}
header nav ul .menu-icon button:before {
  top: calc(50% - 5px);
}
header nav ul .menu-icon button:after {
  top: calc(50% + 5px);
}
header.open {
  height: 100%;
}
header.open .menu-icon button:before {
  top: 50%;
  transform: rotate(45deg);
}
header.open .menu-icon button:after {
  top: 50%;
  transform: rotate(-45deg);
}
header .fullscreen-menu {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #707070;
  transition: width 0.35s ease-in;
  transition-delay: 0.35s;
  overflow-x: hidden;
}
header .fullscreen-menu.open {
  display: flex;
  width: 100%;
  height: 100%;
  transition: width 0.35s ease-in;
  transition-delay: 0;
}
header .fullscreen-menu__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
}
@media (min-width: 768px) {
  header .fullscreen-menu__inner {
    display: flex;
    flex-direction: inherit;
    margin: 0 6rem;
  }
}
header .fullscreen-menu__inner__block {
  order: 1;
  width: 100%;
}
@media (min-width: 768px) {
  header .fullscreen-menu__inner__block {
    order: 2;
  }
}
header .fullscreen-menu__inner__block ul {
  margin: 0 40px;
}
@media (min-width: 768px) {
  header .fullscreen-menu__inner__block ul {
    width: 100%;
    margin: 0;
  }
}
header .fullscreen-menu__inner__block ul li {
  border-bottom: 1px solid #fff;
  padding: 18px 0;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  header .fullscreen-menu__inner__block ul li {
    padding: 30px 0;
    display: block;
  }
}
header .fullscreen-menu__inner__block ul li a {
  font-size: 0.85rem;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 768px) {
  header .fullscreen-menu__inner__block ul li a {
    font-size: 1.2rem;
  }
}
header .fullscreen-menu__inner__block ul li:first-child {
  padding: 0 0 18px;
}
header .fullscreen-menu__inner__block.logo-area {
  order: 2;
  margin: 2rem 0 0;
}
@media (min-width: 768px) {
  header .fullscreen-menu__inner__block.logo-area {
    width: 248px;
    margin: 0 10vw 0 0;
    order: 1;
  }
}
header .fullscreen-menu__inner__block.logo-area h1 {
  margin: 0 auto 2rem;
  width: 40%;
}
@media (min-width: 768px) {
  header .fullscreen-menu__inner__block.logo-area h1 {
    width: auto;
    margin: 0 0 3rem;
  }
}
header .fullscreen-menu__inner__block.logo-area h1 a,
header .fullscreen-menu__inner__block.logo-area h1 img {
  display: block;
  width: 100%;
}
header .fullscreen-menu__inner__block.logo-area a.instagram {
  position: relative;
  display: block;
  color: #fff;
  width: 248px;
  margin: 0 auto;
  padding: 10px 0;
  border: 1px solid #fff;
  text-decoration: none;
  text-align: center;
}
@media (min-width: 768px) {
  header .fullscreen-menu__inner__block.logo-area a.instagram {
    margin: 0;
    font-size: clamp(14px, 1vw, 1.1rem);
  }
}
header .fullscreen-menu__inner__block.logo-area a.instagram span {
  position: absolute;
  display: block;
  width: 20px;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}
header .fullscreen-menu__inner__block.logo-area a.instagram span img {
  display: block;
  width: 100%;
}
header .fullscreen-menu__inner:after {
  display: block;
  content: "";
  position: absolute;
  background-color: #707070;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all ease-out 0.35s;
  transition-delay: 0s;
}
header .fullscreen-menu.open .fullscreen-menu__inner:after {
  width: 0;
  transition: all ease-out 0.35s;
  transition-delay: 0.5s;
}

main {
  width: 100%;
}
main #main-section {
  position: relative;
  width: 100vw;
  height: 100vh;
}
main #main-section:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
}
main #main-section:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #819ccd transparent;
  border-width: 0 0 32px 100vw;
}
@media (min-width: 768px) {
  main #main-section:after {
    border-width: 0 0 64px 100vw;
  }
}
main #main-section h1 {
  position: absolute;
  width: 84%;
  left: 50%;
  top: 12%;
  transform: translateX(-50%);
  z-index: 1;
  filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.8));
}
@media (min-width: 768px) {
  main #main-section h1 {
    width: 36vw;
    left: 10%;
    top: 20%;
    transform: translateX(0);
  }
}
main #main-section h1 img {
  display: block;
  width: 100%;
}
main #main-section h2 {
  color: #fff;
  position: absolute;
  width: 70%;
  left: 50%;
  top: 50%;
  font-size: 1.4rem;
  line-height: 2.2rem;
  font-weight: 400;
  letter-spacing: 2px;
  transform: translateX(-50%);
  z-index: 1;
  filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.8));
}
@media (min-width: 768px) {
  main #main-section h2 {
    width: auto;
    left: 30%;
    top: 60%;
    font-size: 2vw;
    transform: translateX(0);
  }
}
main #main-section h2 b {
  display: block;
  border-bottom: 1px solid #ffffff;
  padding: 0 0 1rem;
}
@media (min-width: 768px) {
  main #main-section h2 b {
    padding: 0 0 1vw;
  }
}
@media (min-width: 768px) {
  main #main-section h2 b br {
    display: none;
  }
}
main #main-section h2 small {
  display: block;
  padding: 1rem 0 0;
  font-size: 0.85rem;
  font-weight: 100;
  text-align: center;
  line-height: normal;
}
@media (min-width: 768px) {
  main #main-section h2 small {
    text-align: right;
  }
}
main #main-section #slider {
  width: 100vw;
  height: 100vh;
  top: -1px;
}
main #main-section #slider div {
  width: 100vw;
  height: 100vh;
}
main #main-section #slider img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main #main-section #slider img.pc {
  display: none;
}
@media (min-width: 768px) {
  main #main-section #slider img.pc {
    display: block;
  }
}
main #main-section #slider img.sp {
  display: block;
}
@media (min-width: 768px) {
  main #main-section #slider img.sp {
    display: none;
  }
}
main #main-section #slider .slick-dots {
  position: absolute;
  bottom: 7rem;
  width: 100%;
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  main #main-section #slider .slick-dots {
    bottom: 8rem;
  }
}
main #main-section #slider .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
main #main-section #slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 1px solid #ffffff;
  background: transparent;
  border-radius: 50%;
}
main #main-section #slider .slick-dots li button:before {
  display: none;
}
main #main-section #slider .slick-dots li.slick-active button {
  background: #ffffff;
}
main #main-section .scroll {
  position: absolute;
  display: block;
  left: 50%;
  bottom: -64px;
  width: 140px;
  height: 140px;
  background-color: #f0f0f0;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  main #main-section .scroll {
    bottom: -54px;
  }
}
main #main-section .scroll button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 100px;
  text-align: center;
  font-size: 0.9rem;
  border: 0;
  background-color: transparent;
  color: #819ccd;
  font-weight: 100;
  cursor: pointer;
}
main #main-section .scroll button span {
  font-weight: 100;
}
main #main-section .scroll:before, main #main-section .scroll:after {
  position: absolute;
  content: "";
  display: block;
  top: 30px;
  width: 24px;
  height: 1px;
  background-color: #819ccd;
}
main #main-section .scroll:before {
  left: calc(50% - 24px);
  transform: rotate(30deg);
}
main #main-section .scroll:after {
  left: calc(50% - 3px);
  transform: rotate(-30deg);
}
main .instagram-widget {
  position: relative;
  margin: 0 0 3rem;
  padding: 3rem 0 0;
  z-index: 1;
}
@media (min-width: 768px) {
  main .instagram-widget {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 6rem 0 0;
  }
}
@media (min-width: 768px) {
  main .instagram-widget__inner {
    display: flex;
  }
}
main .instagram-widget__inner__ttl {
  width: 100%;
  display: flex;
  justify-content: center;
}
main .instagram-widget__inner__ttl h3 {
  position: relative;
  display: inline-block;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  padding: 0 20px;
  margin: 0 0 5rem;
}
main .instagram-widget__inner__ttl h3 small {
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  color: #000000;
}
main .instagram-widget__inner__instagram {
  display: flex;
  justify-content: center;
}
main .instagram-widget__inner__instagram a.instagram {
  position: relative;
  display: block;
  color: #000000;
  width: 248px;
  padding: 10px 0;
  border: 1px solid #000000;
  text-decoration: none;
  text-align: center;
}
main .instagram-widget__inner__instagram a.instagram span {
  position: absolute;
  display: block;
  width: 20px;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}
main .instagram-widget__inner__instagram a.instagram span img {
  display: block;
  width: 100%;
}
main .instagram-widget__inner__widget {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  main .instagram-widget__inner__widget {
    width: 800px;
    margin-left: 2rem;
  }
}
main .concept-blocks {
  width: 100%;
  padding: 3rem 0 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  main .concept-blocks {
    padding: 8vw 0 0;
  }
}
main .concept-blocks .concept-block {
  display: block;
  margin: 0 0 8rem;
}
@media (min-width: 768px) {
  main .concept-blocks .concept-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
main .concept-blocks .concept-block__image {
  display: block;
  width: calc(100% - 20px);
}
@media (min-width: 768px) {
  main .concept-blocks .concept-block__image {
    width: 35%;
    /*max-width: 600px;*/
    background-size: cover;
    background-position: center;
  }
}
main .concept-blocks .concept-block__image.concept-1 {
  background-image: url("../img/concept1.png");
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.75s ease-in-out, opacity 0.75s ease-in-out 0.2s;
}
main .concept-blocks .concept-block__image.concept-2 {
  background-image: url("../img/concept2.png");
  transform: translateX(100%);
  opacity: 0;
  overflow: hidden;
  transition: transform 0.75s ease-in-out, opacity 0.75s ease-in-out 0.2s;
}
main .concept-blocks .concept-block__image img {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  main .concept-blocks .concept-block__image img {
    opacity: 0;
  }
}
main .concept-blocks .concept-block__image.right {
  margin-left: 20px;
}
@media (min-width: 768px) {
  main .concept-blocks .concept-block__image.right {
    margin: 0;
  }
}
main .concept-blocks .concept-block__detail {
  margin: 0 24px 24px 24px;
}
@media (min-width: 768px) {
  main .concept-blocks .concept-block__detail {
    width: 65%;
    margin: 0;
  }
}
@media (min-width: 768px) {
  main .concept-blocks .concept-block__detail.right {
    display: flex;
    justify-content: flex-end;
  }
}
@media (min-width: 768px) {
  main .concept-blocks .concept-block__detail__inner {
    width: calc(100% - 8rem);
    margin: 0 6vw;
    max-width: 800px;
  }
}
main .concept-blocks .concept-block__detail__inner .bottan {
  display: flex;
  margin-top: 20px;
}
main .concept-blocks .concept-block__detail__inner .bottan a.syuubi {
  position: relative;
  display: block;
  color: #000000;
  width: 248px;
  padding: 10px 0;
  border: 1px solid #000000;
  text-decoration: none;
  text-align: center;
}
main .concept-blocks .concept-block__detail__inner .bottan a.syuubi span {
  position: absolute;
  display: block;
  width: 20px;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}
main .concept-blocks .concept-block__detail__inner .bottan a.syuubi span img {
  display: block;
  width: 100%;
}
main .concept-blocks .concept-block__detail__inner__ttl {
  width: 100%;
  display: flex;
  justify-content: center;
}
main .concept-blocks .concept-block__detail__inner__ttl h3 {
  position: relative;
  display: inline-block;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  padding: 0 20px;
  margin: 0 0 6rem;
}
@media (min-width: 768px) {
  main .concept-blocks .concept-block__detail__inner__ttl h3 {
    margin: 0 0 7vw;
  }
}
main .concept-blocks .concept-block__detail__inner__ttl h3 small {
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
}
main .concept-blocks .concept-block__detail__inner h4 {
  font-size: 2rem;
  margin: 0 0 3rem;
  text-align: center;
  line-height: 3.2rem;
}
@media (min-width: 768px) {
  main .concept-blocks .concept-block__detail__inner h4 {
    font-size: 2vw;
    text-align: left;
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
  }
}
main .concept-blocks .concept-block__detail__inner h4 small {
  display: block;
  color: #959595;
  font-size: 1rem;
  font-weight: 100;
  margin: 1rem 0 0;
  padding: 1rem 0 0;
  line-height: normal;
  border-top: 1px solid #ffffff;
}
@media (min-width: 768px) {
  main .concept-blocks .concept-block__detail__inner h4 small {
    border-top: 0;
    margin: 0;
    padding: 1vw 0 2vw;
    font-size: 0.9vw;
    font-size: clamp(14px, 0.9vw, 3rem);
  }
}
@media (min-width: 768px) {
  main .concept-blocks .concept-block__detail__inner h4 br {
    display: none;
  }
}
main .concept-blocks .concept-block__detail__inner p {
  font-weight: 400;
  font-size: 0.86rem;
  line-height: 2.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  main .concept-blocks .concept-block__detail__inner p {
    font-size: clamp(18px, 1vw, 3rem);
    line-height: clamp(2em, 2.4vw, 3em);
  }
}
main .concept-blocks .concept-block__detail__inner .small_txt {
  margin: 1rem 0 2rem;
  color: #000000;
  font-size: 0.85rem;
  line-height: 2.2rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  main .concept-blocks .concept-block__detail__inner .small_txt {
    font-size: clamp(14px, 0.85vw, 3rem);
    line-height: clamp(2em, 2.2vw, 3em);
    margin: 2vw 0 0;
  }
}
main .concept-blocks .concept-block.reverse {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  main .concept-blocks .concept-block.reverse {
    flex-direction: inherit;
  }
}
main .concept-blocks .concept-block.reverse .concept-block__image {
  order: 2;
}
@media (min-width: 768px) {
  main .concept-blocks .concept-block.reverse .concept-block__image {
    order: 1;
  }
}
@media (min-width: 768px) {
  main .concept-blocks .concept-block.reverse .concept-block__detail {
    order: 2;
  }
}
main .menu-section {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #819ccd;
  background-size: cover;
  padding: 6rem 0;
  color: #131417;
}
main .menu-section__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  main .menu-section__inner {
    margin: 0 40px;
  }
}
main .menu-section__inner__scroll {
  height: 1000px;
  overflow-x: hidden;
  overflow-y: scroll;
  margin: 0 20px;
}
@media (min-width: 768px) {
  main .menu-section__inner__scroll {
    padding: 0 40px;
    margin: 0;
  }
}
main .menu-section__inner__scroll::-webkit-scrollbar {
  width: 8px; /* スクロールバーの幅 */
  height: 8px; /* 水平スクロールバーの高さ */
}
main .menu-section__inner__scroll::-webkit-scrollbar-track {
  background: rgb(112, 112, 112); /* トラックの背景色 */
}
main .menu-section__inner__scroll::-webkit-scrollbar-thumb {
  background-color: #fff; /* つまみの色を白に設定 */
  border: 2px solid transparent; /* つまみの外側の透明なボーダー */
}
main .menu-section__inner__scroll::-webkit-scrollbar-thumb:hover {
  background-color: #ccc; /* ホバー時のつまみの色 */
}
@-moz-document url-prefix() {
  main .menu-section__inner__scroll {
    scrollbar-color: #fff rgb(112, 112, 112);
    scrollbar-width: thin;
  }
}
main .menu-section__inner__ttl {
  display: flex;
  justify-content: center;
  width: 100%;
}
main .menu-section__inner__ttl h3 {
  color: #fff;
  position: relative;
  display: inline-block;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  padding: 0 20px;
  margin: 0 0 6rem;
}
main .menu-section__inner__ttl h3 small {
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  color: #131417;
}
main .menu-section__block {
  margin: 0 20px 3rem;
}
@media (min-width: 768px) {
  main .menu-section__block {
    width: 100%;
    margin: 0 0 6rem;
  }
}
main .menu-section__block h4 {
  color: #ffffff;
  padding: 0 0 2rem;
  border-bottom: 3px solid #fff;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  line-height: 2.4rem;
}
main .menu-section__block h4 small {
  display: block;
  margin: 1rem 0 0;
  font-size: 1rem;
  color: #ffffff;
}
main .menu-section__block ul li {
  color: #ffffff;
  padding: 20px 0;
  font-weight: 400;
  border-bottom: 1px solid #fff;
  font-size: 1.2rem;
  line-height: 2rem;
}
main .menu-section__block ul li .a-text {
  font-size: 1.2rem;
  color: #000000;
}
@media (min-width: 768px) {
  main .menu-section__block__flexlist {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}
main .menu-section__block__flexlist ul {
  width: 100%;
}
@media (min-width: 768px) {
  main .menu-section__block__flexlist ul {
    width: 100%;
  }
}
@media (min-width: 768px) {
  main .menu-section__block__flexlist dl {
    width: 100%;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  main .menu-section__block__flexlist dl {
    width: calc(50% - 20px);
    padding-right: 10px;
  }
}
main .menu-section__block__flexlist dl dt {
  border-bottom: 3px solid #ffffff;
  padding: 28px 0;
  text-align: center;
  font-weight: 400;
}
@media (min-width: 768px) {
  main .menu-section__block__flexlist dl dt {
    font-size: clamp(16px, 0.85vw, 1.4rem);
  }
}
main .menu-section__block__flexlist dl dd {
  display: flex;
}
@media (min-width: 768px) {
  main .menu-section__block__flexlist__list {
    width: calc(50% - 20px);
  }
}
@media (min-width: 768px) {
  main .menu-section__block__flexlist__list dl {
    width: 100%;
  }
}
@media (min-width: 768px) {
  main .menu-section__block__flexlist__list dl dd {
    width: 100%;
  }
}
@media (min-width: 768px) {
  main .menu-section__block__flexlist__list dl dd ul {
    width: 100%;
  }
}
main .menu-section__block__flexlist__list dl dd:last-child {
  border-bottom: 3px solid #fff;
}
@media (min-width: 768px) {
  main .menu-section__block__flexlist__list dl dd:last-child {
    border-bottom: 0;
  }
}
main .menu-section__block .no-border {
  padding: 10px 0;
  list-style: disc;
}
main .menu-section__block .no-border li {
  border: 0;
  padding: 10px 0;
  margin: 0 0 0 20px;
}
main .store-info {
  width: 100%;
  padding: 6rem 0 3rem;
}
@media (min-width: 768px) {
  main .store-info {
    padding: 0;
  }
}
main .store-info__block {
  display: flex;
  width: 100%;
}
main .store-info__block__image {
  display: none;
}
@media (min-width: 768px) {
  main .store-info__block__image {
    display: block;
    width: 45%;
    max-width: 600px;
    background-size: cover;
    background-position: center;
    background-image: url("../img/shidou_image.jpg");
    transform: translateX(-99%);
    opacity: 0;
    transition: transform 0.75s ease-in-out, opacity 0.75s ease-in-out 0.2s;
  }
}
main .store-info__block__image img {
  display: block;
  width: 100%;
}
main .store-info__block__detail {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  main .store-info__block__detail {
    justify-content: flex-start;
    padding: 5vw 0;
  }
}
main .store-info__block__detail__inner {
  width: calc(100% - 48px);
}
@media (min-width: 768px) {
  main .store-info__block__detail__inner {
    width: 100%;
    margin: 0 0 0 6vw;
    max-width: 800px;
  }
}
main .store-info__block__detail__inner__ttl {
  display: flex;
  justify-content: center;
  margin: 0 0 6rem;
}
@media (min-width: 768px) {
  main .store-info__block__detail__inner__ttl {
    justify-content: start;
    padding: 0;
    margin: 0 0 4vw;
  }
}
main .store-info__block__detail__inner__ttl h3 {
  position: relative;
  display: inline-block;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  padding: 0 20px;
  text-align: center;
}
main .store-info__block__detail__inner__ttl h3 small {
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 400;
  color: #ffffff;
}
main .store-info__block__detail__inner__subttl {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  main .store-info__block__detail__inner__subttl {
    justify-content: start;
  }
}
main .store-info__block__detail__inner__subttl div {
  margin: 0 0 0;
}
@media (min-width: 768px) {
  main .store-info__block__detail__inner__subttl div {
    display: flex;
    align-items: center;
    margin: 0 0 3rem;
  }
}
main .store-info__block__detail__inner__subttl div h4 {
  font-size: 1.5rem;
  text-align: center;
  line-height: 2.5rem;
  letter-spacing: 2px;
  margin: 0 0 2rem;
}
@media (min-width: 768px) {
  main .store-info__block__detail__inner__subttl div h4 {
    font-size: 1.5vw;
    margin: 0 3rem 0 0;
    line-height: normal;
  }
}
main .store-info__block__detail__inner__subttl div h4 small {
  display: block;
  font-size: 1.125rem;
  margin: 2rem 0 0;
  padding: 0 0 2rem;
}
@media (min-width: 768px) {
  main .store-info__block__detail__inner__subttl div h4 br {
    display: none;
  }
}
main .store-info__block__detail__inner__subttl div a {
  display: block;
  text-align: center;
  width: 34px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  main .store-info__block__detail__inner__subttl div a {
    width: 20px;
    margin: 0;
  }
}
main .store-info__block__detail__inner__subttl div a img {
  display: block;
  width: 100%;
}
main .store-info__block__detail__inner__info {
  width: 100%;
}
@media (min-width: 768px) {
  main .store-info__block__detail__inner__info {
    margin: 0 0 0.8rem;
  }
}
main .store-info__block__detail__inner__info ul {
  width: 100%;
}
main .store-info__block__detail__inner__info ul li {
  margin: 0 0 1.5rem;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid #000000;
}
main .store-info__block__detail__inner__info ul li dl dt {
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  main .store-info__block__detail__inner__info ul li dl dt {
    font-size: clamp(16px, 0.85vw, 1.8rem);
    margin: 0 0 1vw;
  }
}
main .store-info__block__detail__inner__info ul li dl dt small {
  font-size: 0.85rem;
  color: #959595;
  font-weight: 100;
  margin: 0 0 0 10px;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  main .store-info__block__detail__inner__info ul li dl dt small {
    font-size: clamp(12px, 0.65vw, 1.2rem);
  }
}
main .store-info__block__detail__inner__info ul li dl dd {
  margin: 0 0 0.4rem 2rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  main .store-info__block__detail__inner__info ul li dl dd {
    font-size: clamp(14px, 0.9vw, 1.1rem);
  }
}
main .store-info__block__detail__inner__info ul li dl dd .tel-icon {
  display: inline-block;
  width: 10px;
  margin: 0 8px 0 0;
}
main .store-info__block__detail__inner__info ul li dl dd .tel-icon img {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  main .store-info__block__detail__inner__info__flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}
@media (min-width: 768px) {
  main .store-info__block__detail__inner__info__flex li {
    width: calc(50% - 15px);
  }
}
main .store-info__block__detail__inner__option {
  width: 100%;
}
main .store-info__block__detail__inner__option ul {
  width: 100%;
}
@media (min-width: 768px) {
  main .store-info__block__detail__inner__option ul {
    display: flex;
    justify-content: space-between;
  }
}
main .store-info__block__detail__inner__option ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(112, 112, 112, 0.21);
  padding: 12px;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 100;
}
@media (min-width: 768px) {
  main .store-info__block__detail__inner__option ul li {
    width: calc(33.3333333333% - 36px);
  }
}
main .store-info__block__detail__inner__option ul li span {
  display: block;
  margin: 0 1rem 0 0;
}
main .store-info__block__detail__inner__option ul li small {
  display: block;
  font-size: 0.6rem;
  text-align: center;
  margin: 0.6rem 0 0;
  color: #959595;
}
main .map-section {
  width: 100%;
  height: 767px;
}
main .map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%);
}

.contact-menu-sp {
  position: fixed;
  width: 100%;
  bottom: 0;
  background-color: #131417;
  z-index: 2;
}
.contact-menu-sp ul {
  display: block;
}
.contact-menu-sp ul li {
  width: 100%;
  border-bottom: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
}
.contact-menu-sp ul li:first-child {
  border-left: 0;
}
.contact-menu-sp ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  font-size: 11px;
}
.contact-menu-sp ul li a .svg {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 6px 0 0;
}
.contact-menu-sp ul li a .svg img {
  display: block;
  height: 100%;
}
.contact-menu-sp ul .internet-button {
  z-index: 2;
}
@media (min-width: 768px) {
  .contact-menu-sp ul .internet-button {
    display: none;
  }
}
.contact-menu-sp ul .internet-button a {
  height: 46px;
}
.contact-menu-sp ul .tel-button {
  z-index: 2;
}
@media (min-width: 768px) {
  .contact-menu-sp ul .tel-button {
    display: none;
  }
}
.contact-menu-sp ul .tel-button a {
  height: 46px;
}
.contact-menu-sp ul .tel-button span small {
  display: block;
}
.contact-menu-sp ul .tel-button__txt b {
  display: block;
  padding: 0 0 6px;
  border-bottom: 1px solid #fff;
  font-size: 0.7rem;
}
.contact-menu-sp ul .tel-button__txt small {
  padding: 4px 0 0;
}
.contact-menu-sp.pause {
  position: absolute;
  bottom: auto;
  z-index: 0;
}
.contact-menu-sp.pause ul li {
  border-top: 0;
}

.contact-menu-sp-height {
  position: absolute;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-menu-sp-height {
    display: none;
  }
}
.contact-menu-sp-height.pause {
  position: absolute;
}

.contact-menu-sp-bottom {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.46);
  z-index: 3;
  transition: all ease-out 0.35s;
  transition-delay: 0s;
  transform: translateY(100%);
}
.contact-menu-sp-bottom ul {
  display: flex;
}
.contact-menu-sp-bottom ul li {
  width: 100%;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
}
.contact-menu-sp-bottom ul li:first-child {
  border-left: 0;
}
.contact-menu-sp-bottom ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  font-size: 11px;
}
.contact-menu-sp-bottom ul li a .svg {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 6px 0 0;
}
.contact-menu-sp-bottom ul li a .svg img {
  display: block;
  height: 100%;
}
.contact-menu-sp-bottom ul .internet-button {
  z-index: 2;
}
@media (min-width: 768px) {
  .contact-menu-sp-bottom ul .internet-button {
    display: none;
  }
}
.contact-menu-sp-bottom ul .internet-button a {
  height: 46px;
}
.contact-menu-sp-bottom ul .tel-button {
  z-index: 2;
}
@media (min-width: 768px) {
  .contact-menu-sp-bottom ul .tel-button {
    display: none;
  }
}
.contact-menu-sp-bottom ul .tel-button a {
  height: 46px;
}
.contact-menu-sp-bottom ul .tel-button span small {
  display: block;
}
.contact-menu-sp-bottom ul .tel-button__txt b {
  display: block;
  padding: 0 0 6px;
  border-bottom: 1px solid #fff;
  font-size: 0.7rem;
}
.contact-menu-sp-bottom ul .tel-button__txt small {
  padding: 4px 0 0;
}
.contact-menu-sp-bottom.open {
  transition: all ease-out 0.35s;
  transition-delay: 0.45s;
  transform: translateY(0);
}

footer {
  margin: 30px 20px;
  padding-top: 80px;
}
@media (min-width: 768px) {
  footer {
    display: flex;
    justify-content: space-between;
    padding: 30px 20px;
  }
}
footer .footer-nav {
  display: none;
}
@media (min-width: 768px) {
  footer .footer-nav {
    display: block;
  }
}
footer .footer-nav ul {
  display: flex;
  margin: 0 0 2rem -20px;
}
footer .footer-nav ul li {
  font-size: 0.8rem;
  padding: 0 20px;
  border-right: 1px solid #000000;
}
footer .footer-nav ul li a {
  color: #000000;
  text-decoration: none;
}
footer .footer-nav ul li:last-child {
  border-right: 0;
}
footer .copyrights .logo-area {
  display: flex;
  justify-content: flex-end;
}
footer .copyrights .logo-area div {
  display: flex;
  align-items: center;
  margin: 0 0 2rem;
}
@media (min-width: 768px) {
  footer .copyrights .logo-area div a {
    display: none;
  }
}
footer .copyrights .logo-area div .logo {
  display: block;
  width: 110px;
  margin: 0 0 0 2rem;
}
@media (min-width: 768px) {
  footer .copyrights .logo-area div .logo {
    width: 8vw;
    min-width: 140px;
  }
}
footer .copyrights .logo-area div .logo img {
  display: block;
  width: 100%;
  margin: 0;
}
footer .copyrights p {
  font-size: 0.65rem;
}/*# sourceMappingURL=style.css.map */