@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

body {
  font-family: 'Noto Sans JP',
    sans-serif;
  background-color: #FBF9EA;
  color: #1D313B;
  min-width: 1280px;
  margin: 0 auto;
  text-align: left;
}

img {
  width: 100%;
}

h2 {
  font-weight: 900;
  font-size: 36px;
}

p {
  font-weight: bold;
}

a:hover {
  opacity: .7;
}

.container {
  max-width: 1366px;
  margin: 0 auto;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/*            header              */
#header {
  position: fixed;
  width: 100%;
  z-index: 100;
  background-color: #FBF9EA;
  transition: .7s;
}

#header .container {
  width: 96%;
  max-width: none;
}

.hd_logo {
  width: 213px;
  padding: 15px 0;
  cursor: pointer;
}

.slide_up {
  transform: translateY(-500px);
}

.slide_down {
  transform: translateY(0px);
}

.top_banner {
  max-width: 177px;
  width: 100%;
  margin-bottom: 17px;
}

.top_banner img {
  display: block;
}

/*             menu               */
.menu_list {
  width: 150px;
  margin: 0 auto;
  position: fixed;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  z-index: 100;
  text-indent: 1em;
}

.menu_list ul {
  position: relative;
  left: 23%;
}

.menu_list li {
  position: relative;
  font-size: 12px;
  font-weight: bold;
  color: #8E989D;
  margin-bottom: 20px;
}

.menu_list li a {
  color: #8E989D;
  text-decoration: none;
}

.menu_list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #4A5A62;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.menu_list li.now a {
  color: #1D313B;
}

.menu_list li.white_txt.now a {
  color: #fff;
}

.menu_list li.black_txt.now a {
  color: #4a5a62;
}

.menu_list li.now::before {
  width: 10px;
  height: 10px;
  border: 0.5px solid #1D313B;
  background-color: #FFE100;
  left: -0.3em;
}

.scroll_bar {
  width: 8px;
  position: absolute;
  bottom: 5%;
  left: 5%;
  transition: 1s;
}

.scroll_bar::after {
  content: '';
  width: 100%;
  height: 44px;
  border-left: 2px solid #1D313B;
  position: absolute;
  bottom: -45px;
  right: 0;
  left: 2px;
  margin: 0 auto;
  clip-path: inset(0 0 100% 0);
  animation: scroll_bar 4s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}

@keyframes scroll_bar {
  0% {
    clip-path: inset(0 0 100% 0);
  }

  50% {
    clip-path: inset(0 0 0 0);
  }

  100% {
    clip-path: inset(100% 0 0 0);
  }
}

.hide_bar {
  opacity: 0;
  visibility: hidden;
}

/*             main               */
#main {
  padding-bottom: 150px;
}

#main .container {
  display: flex;
  width: 988px;
  position: relative;
  left: 110px;
  justify-content: space-between;
  padding-top: 14vh;
}

.main_contents {
  width: 650px;
  height: 100%;
  margin-left: 0;
}

.main_title {
  width: 595px;
  margin-bottom: 115px;
}

.main_title_img {
  opacity: 0;
  transition: 1.2s;
  transition-delay: 1.2s;
}

.main_title_text {
  margin-top: 45px;
  opacity: 0;
  transition: 1.4s;
  transition-delay: 1.8s;
}

.main_text {
  font-size: 20px;
  line-height: 2.3;
  letter-spacing: 0.01em;
}

.main_text_block {
  opacity: 0;
  transition: 1.5s;
}

.main_text p.scrollin {
  opacity: 1;
}

.main_text_block:first-of-type {
  margin-bottom: 35px;
}

.main_text p:not(:last-of-type) {
  margin-bottom: 35px;
}

.secondary_text {
  font-size: 27px;
  font-weight: 900;
  line-height: 2.2;
  margin: 70px 0 200px;
  letter-spacing: 0.01em;
  opacity: 0;
  transition: 1s;
}

.sab_title {
  width: 233px;
  height: 100%;
  position: sticky;
  top: 0;
  padding-top: 80px;
  padding-bottom: 215px;
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-top: -130px;
  z-index: 50;
}

.sab_title img {
  opacity: 0;
  animation: show_sab_title;
  animation-delay: 1s;
  animation-fill-mode: forwards;

}

@keyframes show_sab_title {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.sab_title_01,
.sab_title_02,
.sab_title_03 {
  width: 95px;
  position: relative;
}

.sab_title_01::after,
.sab_title_02::after,
.sab_title_03::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1D313B;
  display: block;
  transform: translate(0%, 0);
  z-index: 100;
  animation: mask-bg 1s;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  clip-path: inset(0 0 100% 0);
}

@keyframes mask-bg {
  0% {
    clip-path: inset(0 0 100% 0);
  }

  50% {
    clip-path: inset(0 0 0 0);
  }

  100% {
    clip-path: inset(100% 0 0 0);
  }
}

.main_img_02 {
  width: 100%;
  overflow: hidden;
}

.main_img_bg_top {
  width: 100%;
  height: 78px;
  background: url(../images/main_img_02_top.png) repeat;
  background-size: contain;
  margin-bottom: 70px;
  transform: translateX(-500%);
  position: relative;
  transition: 1s;
}

.main_img_bg_bottom {
  width: 100%;
  height: 78px;
  background: url(../images/main_img_02_bottom.png);
  background-size: contain;
  position: relative;
  transform: translateX(500%);
  transition: 1s;
}


/*             about               */
#about {
  padding-top: 100px;
  padding-bottom: 80px;
  overflow: hidden;
}

#about .container {
  position: relative;
  left: 30px;
}

.about_contents {
  width: 1200px;
  margin: 0 auto;
  background-color: #F0E6AA;
  border-radius: 80px;
  opacity: 0;
  transition: .5s;
}

#about .flex {
  width: 1005px;
  margin: 0 auto;
  padding: 90px 0 130px;
  align-items: flex-end;

}

.about_left {
  width: 395px;
  opacity: 0;
  transition: .7s;
  transition-delay: .5s;
}

.about_text {
  font-size: 15px;
  line-height: 2.2;
  margin-top: 45px;
  text-indent: -0.5em;
}

.about_right {
  width: 590px;
  position: relative;
  opacity: 0;
  transition: .7s;
  transition-delay: .7s;
}

.about_img {
  position: relative;
  top: 40px;
  z-index: 1;
}

.about_img_arrow {
  position: absolute;
  width: 160px;
  z-index: 0;
}

.about_img_arrow_01 {
  top: 140px;
  left: 115px;
  clip-path: inset(0 0 0 100%);
  transition: .5s;
  transition-delay: 1s;
}

.about_img_arrow_02 {
  top: 140px;
  right: 103px;
  clip-path: inset(0 0 0 100%);
  transition: .5s;
  transition-delay: 1s;
}

.about_img_arrow_03 {
  bottom: 28px;
  left: 102px;
  clip-path: inset(0 100% 0 0);
  transition: .5s;
  transition-delay: 1s;
}

.about_img_arrow_04 {
  bottom: 28px;
  right: 118px;
  clip-path: inset(0 100% 0 0);
  transition: .5s;
  transition-delay: 1s;
}

.show_top_arrow {
  clip-path: inset(0 0 0 0);
}

/*             youtube               */
.youtube_contents {
  width: 1005px;
  height: 565px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  padding-bottom: 80px;
}

.youtube_contents iframe {
  width: 100%;
  height: 100%;
}


/*             service               */
#service {
  margin-top: 120px;
  padding-top: 50px;
  padding-bottom: 120px;
  overflow: hidden;
  position: relative;
}

.service_pos {
  position: relative;
  left: 210px;
}

.service_title {
  line-height: 1.5;
  margin-bottom: 120px;
  opacity: 0;
  transition: .7s;
}

.service_title span {
  display: block;
  font-size: 10.5px;
  font-weight: bold;
}

.slick_slider {
  position: relative;
  opacity: 0;
  transition: .7s;
  z-index: 20;
}

.banner_contents {
  width: 600px;
  padding-left: 10px;
}

.banner_contents a {
  text-decoration: none;
  color: #1D313B;
  cursor: pointer;
}



.slick_slider .flex {
  align-items: flex-start;
  width: 600px;
  height: 340px;
  border-radius: 37px;
  background-color: #F0E6AA;
  box-shadow: 0px 5px 10px #1d313b19;
}

.slick_slider a:hover {
  opacity: .7;
}



.banner_left {
  width: 360px;
  height: 100%;
  background-color: #fff;
  border-radius: 37px 0 0 37px;
}

.service_logo {
  width: 190px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.slide_box_02 .service_logo {
  width: 270px;
}

.slide_box_03 .service_logo {
  width: 252px;
}

.slide_box_04 .service_logo {
  width: 217px;
}

.slide_box_05 .service_logo {
  width: 225px;
}

.slide_box_06 .service_logo {
  width: 260px;
}

.slide_right {
  width: 240px;
  height: 100%;
  line-height: normal;
}

.slide_right_box {
  width: 80%;
  margin: 0 auto;
  position: relative;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
}

.banner_title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 45px;
}

.banner_title_br {
  margin-bottom: 15px;
  line-height: 1.3;
}

.banner_detail {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.banner_detail span {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: #1D313B;
  padding: 0 5px;
  border-radius: 4px;
}

.banner_link {
  margin-top: 40px;
  position: relative;
}

.banner_link::before {
  content: "";
  width: 160px;
  height: 13px;
  background: url(../images/banner_arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: 3;
}

.banner_link::after {
  content: "";
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #F5B400;
  position: absolute;
  bottom: -30px;
  left: 115px;
  transition: .5s;
  z-index: -1;
  opacity: 0;
  transform: scale(.1, .1);
}

.banner_link.link_hover::after {
  content: "";
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #F5B400;
  position: absolute;
  bottom: -30px;
  left: 115px;
  opacity: 1;
  transform: scale(1, 1);

}

.banner_link {
  color: #1D313B;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

.banner_img {
  width: 280px;
  margin: 20px auto 0;
}

.slick-prev,
.slick-next {
  width: 46px;
  height: 46px;
  position: absolute;
  top: -80px;
  cursor: pointer;
}

.slick-prev {
  background: url(../images/prev_btn_remove.png);
  background-size: cover;
  right: 23%;
}

.slick-prev.add {
  background: url(../images/prev_btn_add.png);
  background-size: cover;
}

.slick-next {
  background: url(../images/next_btn_add.png);
  background-size: cover;
  right: 18%;
}

.slick-next.remove {
  background: url(../images/next_btn_remove.png);
  background-size: cover;
}



/*             area_map               */
#area_map {
  margin-top: 120px;
  padding-top: 50px;
  padding-bottom: 115px;
  position: relative;
  overflow: hidden;
}

.area_desc {
  background-color: #F3EBBB;
  border-radius: 0 167px 167px 0;
  position: absolute;
  top: 120px;
  right: 51.5%;
  left: 0;
  transform: translateX(-500%);
  margin: 0 auto;
  padding: 60px 0;
  transition: 1s;
  z-index: 20;
}

.area_desc_box {
  width: 385px;
  margin-left: auto;
  margin-right: 80px;
  position: relative;
}

.area_map_title {
  margin-bottom: 10px;
  opacity: 0;
  transition: .7s;
  transition-delay: 1s;
}

.area_map_text {
  font-size: 15px;
  line-height: 2.1;
  opacity: 0;
  transition: .7s;
  transition-delay: 1s;
}

.map_contents {
  background-color: #55646C;
  border-radius: 100px 0 0 100px;
  padding: 100px 0 80px;
  position: relative;
  left: 18%;
}

.map_img_box {
  width: 620px;
  margin-left: 26.5%;
  position: relative;
  opacity: 0;
  transition: .7s;
  transition-delay: 1.2s;
  z-index: 80;
}

.map_img {
  position: relative;
}

.map_pin {
  width: 40px;
  position: absolute;
  transition: .7s;
  transform: translateY(-100px);
  opacity: 0;
  transition-delay: 1.4s;
}

.show_pin {
  opacity: 1;
  transform: translate(0);
}

.map_pin_01 {
  bottom: 130px;
  left: 320px;
}

.map_pin_02 {
  bottom: 180px;
  right: 110px;
}

.map_pin_03 {
  top: 315px;
  left: 315px;
}

.map_pin_04 {
  top: 315px;
  left: 348px;
}

.map_pin_05 {
  bottom: 80px;
  left: 167px;
}

.map_pin_06 {
  bottom: 150px;
  left: 160px;
}



.area_note {
  color: #F6F0CC;
  text-decoration: underline;
  font-size: 28px;
  line-height: 1.75;
  font-weight: 900;
  position: absolute;
  bottom: 100px;
  left: 7.5%;
}

.area_detail_01 {
  position: absolute;
  bottom: -125px;
  left: 90px;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
  z-index: -100;
}

.area_detail_02 {
  position: absolute;
  bottom: -65px;
  left: 250px;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
  z-index: -100;
}

.area_detail_03 {
  position: absolute;
  top: 55px;
  left: 115px;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
  z-index: -100;
}

.area_detail_04 {
  position: absolute;
  top: 55px;
  left: 155px;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
  z-index: -100;
}

.area_detail_05 {
  position: absolute;
  bottom: -175px;
  left: -63px;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
  z-index: -100;
}

.area_detail_06 {
  position: absolute;
  top: 110px;
  left: 110px;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
  z-index: -100;
}


.show_area_detail {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}

.area_detail_box {
  width: 436px;
  height: 210px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  z-index: 10;
}

.store_list {
  height: 32px;
  background-color: #1D313B;
  border-radius: 16px;
  padding: 0 13px 0 25px;
  cursor: pointer;
  position: absolute;
  top: 170px;
  left: 145px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.store_list a {
  color: #fff;
  text-decoration: none;
}

.material-symbols-outlined {
  vertical-align: -25%;
}

.area_detail_01 .area_detail_box::before {
  content: "";
  width: 68px;
  height: 94px;
  background: url(../images/area_detail_arrow_01.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: -50px;
  left: 184px;
  z-index: -1;
}

.area_detail_02 .area_detail_box::before {
  content: "";
  width: 68px;
  height: 94px;
  position: absolute;
  top: -43px;
  left: 238px;
  z-index: -1;
  background: url(../images/area_detail_arrow_02.png) no-repeat;
  background-size: cover;
}

.area_detail_03 .area_detail_box::before {
  content: "";
  width: 68px;
  height: 94px;
  background: url(../images/area_detail_arrow_03.png) no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -35px;
  left: 155px;
  z-index: -1;
}

.area_detail_04 .area_detail_box::before {
  content: "";
  width: 68px;
  height: 94px;
  background: url(../images/area_detail_arrow_04.png) no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -35px;
  left: 207px;
  z-index: -1;
}

.area_detail_05 .area_detail_box::before {
  content: "";
  width: 68px;
  height: 94px;
  background: url(../images/area_detail_arrow_05.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: -50px;
  left: 184px;
  z-index: -1;
}

.area_detail_06 .area_detail_box::before {
  content: "";
  width: 68px;
  height: 94px;
  background: url(../images/area_detail_arrow_06.png) no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -50px;
  left: 70px;
  z-index: -1;
}

.area_detail_box .flex {
  height: 100%;
  align-items: flex-start;
}

.area_detail_left {
  width: 210px;
  height: 100%;
}

.area_detail_01 .area_logo {
  width: 100px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.area_detail_02 .area_logo {
  width: 100px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.area_detail_03 .area_logo {
  width: 172px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.area_detail_04 .area_logo {
  width: 100px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.area_detail_05 .area_logo {
  width: 131px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.area_detail_06 .area_logo {
  width: 135px;
  margin: 0 auto;
  position: relative;
  top: 45%;
  transform: translateY(-50%);
}


.area_detail_right {
  width: 220px;
  margin: 0 auto;
}

.area_heading {
  width: 90%;
  margin: 15px auto;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  background-color: #778389;
  border-radius: 15px;
  text-align: center;
}

.area_detail_02 .area_heading {
  margin-bottom: 15px;
}

.area_name {
  width: 80%;
  margin: 0 auto;
  font-size: 18px;
  font-weight: bold;
}

.area_detail_02 .area_name {
  width: 95%;
}

.area_detail_03 .area_name {
  width: 85%;
}

.area_detail_02 .area_name li {
  width: 50%;
  margin-top: -8px;
}

.area_name .flex {
  flex-wrap: wrap;
}

.area_detail_06 .area_name li {
  width: 50%;
}



/*             feature               */
#feature {
  padding-top: 65px;
  margin-top: 100px;
  padding-bottom: 260px;
  position: relative;
  z-index: 20;
}

#feature .container {
  width: 980px;

}

.feature_bg {
  background-color: #F5B400;
  padding-top: 80px;
  height: 540px;
  box-sizing: border-box;
}

.feature_title {
  margin-left: 20px;
  opacity: 0;
  transition: .7s;
}

.feature_title h2 {
  font-size: 32px;
}

.feature_text {
  font-size: 15px;
  font-weight: bold;
  line-height: 2.1;
  margin-top: 10px;
  margin-left: 20px;
  opacity: 0;
  transition: .7s;
  transition-delay: .3s;
}

.feature_contents {
  margin: 90px auto 0;
}

.feature_box {
  width: 302px;
  position: relative;
}

.feature_box_title {
  width: 224px;
  position: absolute;
  margin: 0 auto;
  top: -15px;
  right: 0;
  left: 0;
  transition: 1s;
  opacity: 0;
  z-index: 10;
}

.bound_anime {
  animation-name: bound_title;
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}

@keyframes bound_title {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

  50% {
    transform: translateY(0);
  }

  65% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0);
  }

  20%,
  100% {
    opacity: 1;
  }
}

.feature_box_img {
  opacity: 0;
  transition: .7s;
  transition-delay: .5s;
}

.feature_box_title_01 {
  width: 216px;
  animation-delay: 1.2s;
}

.feature_box_title_02 {
  width: 190px;
  animation-delay: 1.5s;
}

.feature_box_title_03 {
  width: 337px;
  left: -20px;
  animation-delay: 1.8s;
}

.feature_box_text {
  font-size: 14px;
  font-weight: 500;
  line-height: 2.1;
  margin-top: 15px;
  text-align: justify;
  letter-spacing: .08em;
  opacity: 0;
  transition: .7s;
  transition-delay: .8s;
}



/*             thought               */
#thought {
  height: 1340px;
  position: relative;
  padding-bottom: 145px;
  margin-top: 100px;
  padding-top: 150px;
}

#thought .container {
  width: 940px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 97%;
  padding-top: 0px;
}

.thought_title {
  opacity: 0;
  transition: .7s;
  transition-delay: 1s;
  position: relative;
  z-index: 20;
  margin-bottom: 45px;
  padding-top: 120px;
}

.thought_title h2 {
  font-size: 32px;
}

.thought_sab_title {
  font-size: 51px;
  font-weight: 900;
  line-height: 1.6;
  margin: 0px 0 25px;
  opacity: 0;
  transition: .7s;
  position: relative;
  z-index: 20;
}

.thought_text {
  width: 940px;
  margin: -200px auto 0;
  padding-top: 200px;
  font-size: 15px;
  font-weight: bold;
  line-height: 2.2;
  opacity: 0;
  transition: 1s;
  transition-delay: 1.2s;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 5;
}

.thought_text span {
  position: relative;
}

.thought_text span::after {
  content: "";
  width: 100%;
  height: 6px;
  background: url(../images/under_lien.png) no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.thought_contents {
  height: 1535px;
  position: relative;
  overflow: hidden;
  top: 160px;

}

.thought_contents_inner {
  width: 100%;
  padding: 200px 0 160px;
  background-color: #F0E6AA;
  border-radius: 80px 0 0 80px;
  position: absolute;
  top: 0px;
  left: 32%;
}

.thought_img_box {
  width: 640px;
  margin-left: 12.8%;
}

.thought_img_01 {
  width: 458px;
  margin: 0 auto 350px;
  opacity: 0;
  transition: .7s;
  transition-delay: .7s;
}

.thought_img_02 {
  opacity: 0;
  transition: .7s;
}



/*               form               */
#form {
  margin-top: 450px;
}

#form .container {
  width: 940px;
  margin: 0 auto;
}

.g-recaptcha {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  width: 300px;
  margin-top: 20px;
}

/* stores */
.stores_title h2 {
  width: 640px;
  text-align: center;
  margin: 0 auto 30px;
  background-color: #f5b400;
  border-radius: 27px;
  font-size: 32px;
  letter-spacing: .13em;
  line-height: 1.5;
  padding: 3px 0;
}

.stores_contents {
  opacity: 0;
  transition: .7s;
  transition-delay: .5s;
}

.stores_text {
  width: 570px;
  margin: 0 auto 10px;
  color: #fff;
  font-size: 14.6px;
  font-weight: bold;
}

.stores_btn {
  margin-bottom: 80px;
}

.stores_btn_flex {
  width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stores_btn_item {
  width: 310px;
  margin-top: 20px;
}

.form_title h2 {
  width: 640px;
  text-align: center;
  margin: 0 auto 45px;
  background-color: #F0E6AA;
  border-radius: 27px;
  font-size: 32px;
  letter-spacing: .13em;
  line-height: 1.5;
  padding: 3px 0;
}

.form_bg {
  background-color: #1D313B;
  padding: 150px 0 200px;
}

.form_contents {
  opacity: 0;
  transition: .7s;
  transition-delay: .5s;
}

.form_flex {
  width: 570px;
  margin: 0 auto;
  color: #fff;
}

.form_text {
  width: 355px;
  font-size: 14.6px;
  font-weight: bold;
}

.form_logo {
  width: 193px;
}

.form_caution {
  color: #ff3300;
  text-align: center;
  font-size: 1.2rem;
  display: block;
  margin: -40px 0 30px 0;
  letter-spacing: 0.1rem;
}

.form_caution a {
  color: #ff3300;
}

.form_box {
  width: 640px;
  margin: 50px auto 0;
  background-color: #fff;
  border-radius: 30px;
  text-align: center;
  padding: 30px 0;
}

.form_box_title {
  width: 290px;
  font-size: 18px;
  font-weight: bold;
  color: #F0E6AA;
  background-color: #1D313B;
  border-radius: 16px;
  margin: 0 auto;
}

.form_alert {
  font-size: 12px;
  font-weight: bold;
  line-height: 2.7;
}

.form_box label {
  font-size: 15px;
  font-weight: bold;
  display: inline-block;
  width: 95px;
  text-align: right;
  margin-right: 5px;
}

.form_box input {
  width: 295px;
  height: 24px;
  box-sizing: border-box;
  margin-right: 70px;
}

#first_name,
#last_name {
  width: 125px;
  margin-right: 240px;
}

.form_box input[type="submit"] {
  width: 100px;
  margin: 10px 0 0;
  height: 42px;
  background-color: #E6E6E6;
  color: #1D313B;
  border-color: #1D313B;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.form_box input[type="submit"]:hover {
  opacity: .7;
}


/*             news               */

#news {
  position: relative;
  z-index: 20;
}

.news_bg {
  background-color: #F3EBBB;
  padding-top: 10%;
  padding-bottom: 10%;
  height: auto;
  box-sizing: border-box;
}

.news_title h2 {
  width: 640px;
  text-align: center;
  margin: 0 auto 30px;
  background-color: #f5b400;
  border-radius: 27px;
  font-size: 32px;
  letter-spacing: .13em;
  line-height: 1.5;
  padding: 3px 0;
}

.news_contents {
  background-color: #fff;
  max-width: 960px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 10px;
  opacity: 0;
  transition: .7s;
  transition-delay: .5s;
}

.news_container {
  height: 30em;
  overflow-y: scroll
}

.news_list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 920px;
  margin: 0 auto;

}

.news_heading {
  width: 13em;
  margin-bottom: .5em;
  border-bottom: 1px dotted #343a40;
}

.news_content {
  width: calc(100% - 13em);
  max-width: 80%;
  margin-left: 0;
  line-height: 1.6rem;
  margin-bottom: .5em;
  border-bottom: 1px dotted #343a40;
  padding-top: 3px;
}

.news_content,
.news_heading {
  box-sizing: border-box;
  padding-bottom: 1.5em;
  padding-left: .5em;
  font-weight: bold;
}

.news_content:first-of-type {
  padding-top: .5em;
}

.news_heading {
  font-style: normal;
  font-weight: initial
}

.news_heading:first-of-type {
  padding-top: .5em;
}

.news_heading time {
  margin-right: .5em
}

.news_heading span {
  box-sizing: border-box;
  display: inline-block;
  width: 10em;
  margin-right: .5em;
  padding: .2em .5em;
  font-size: .7em;
  font-weight: bold;
  line-height: 1.75;
  text-align: center;
  border-radius: 5px;

}

.news_area_00 {
  background-color: #fabe00;
  color: #1D313B;
}

.news_area_01 {
  background-color: #ffe100;
  color: #1D313B;
}

.news_area_02 {
  background-color: #ea5514;
  color: #fff;
}

.news_area_03 {
  background-color: #00a0e9;
  color: #1D313B;
}

.news_area_04 {
  background-color: #18b6c1;
  color: #1D313B;
}

.news_area_05 {
  background-color: #00439a;
  color: #fff;
}

.news_area_06 {
  background-color: #5c7bbd;
  background-image: linear-gradient(45deg, #5c7bbd 19%, #ea5140 100%);
  color: #fff;
  vertical-align: -100%;
}

.news_list time {
  font-size: .8rem;
  color: #1D313B;
  margin-left: 2px;
}

.news_content a {
  color: #525252;
  font-size: 0.9rem;
  vertical-align: -1rem;
  line-height: 1.5rem;
  font-weight: normal;
  display: block;
  margin: 5px 0 -10px 0;
}

.news_content:nth-of-type(-n+3) {
  position: relative
}

.news_image {
  width: 40%;
  display: block;
  margin: 20px 0 -8px auto;
}

@media screen and (max-width:768px) {

  .news_list {
    -webkit-overflow-scrolling: touch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .news_content,
  .news_heading {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .news_heading {
    border: none;
    margin-bottom: -5px;
  }

  .news_content:first-of-type {
    padding-top: 0;
  }

  .news_image {
    width: 70%;
    margin: 30px auto 0;
  }

  .news_content a {
    margin-top: 5px;
  }
}


















/*               footer               */
#footer {
  padding-top: 100px;
}

.footer_logo {
  width: 354px;
  margin: 0 auto;
}

#footer .flex {
  width: 820px;
  margin: 70px auto 20px;
}


#footer li a {
  text-decoration: none;
  color: #1D313B;
  font-size: 15px;
  position: relative;
}

#footer li:last-of-type {
  font-size: 12px;
}

.fas {
  margin-left: 5px;
}

.copy {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  background-color: #F5B400;
}

.sp_only {
  display: none;
}

.pc_only {
  display: block;
}

.scrollin {
  opacity: 1;
}

.slide_scrollin {
  transform: translateX(0);
}

@media screen and (max-width:1280px) {

  .top_banner.sp_only {
    display: block;
    align-self: flex-start;
    margin-left: auto;
    margin-right: 3%;
    margin-bottom: 0;
  }

  .top_banner.pc_only {
    display: none;
  }

  .menu_btn.sp_only {
    display: block;
  }

  .menu_list.pc_only {
    display: none;
  }

  .menu_list_popup.sp_only {
    display: block;
  }

  .menu_list_sp.sp_only {
    display: block;
  }

  #header .container {
    display: flex;
    align-items: center;
  }

  .hd_logo {
    padding: 15px 0;
  }

  .menu_btn {
    max-width: 31px;
    width: 100%;
    line-height: 1;
    cursor: pointer;
  }

  .menu_list_popup {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #F0E6AA;
    transform: translateX(500%);
    transition: 0.3s;
  }

  .menu_list_popup_inner {
    width: 30%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .menu_list_sp li {
    margin-bottom: 5%;
  }

  .menu_list_sp li a {
    font-size: 23px;
    font-weight: 900;
    text-decoration: none;
    color: #1D313B;
  }

  .menu_list_sp li a:hover {
    opacity: .7;
  }

  .menu_list_popup_close {
    position: absolute;
    top: 0%;
    right: 5%;
    font-size: 40px;
    cursor: pointer;
  }

  .show_popup {
    transform: translateX(0);
  }

  #main .container {
    display: flex;
    width: 117.2vh;
    max-width: 900px;
    position: relative;
    left: 18.3vh;
    justify-content: space-between;
    padding-top: 7%;
  }

  .main_contents {
    width: 85vh;
    max-width: 650px;
  }

  .main_title {
    width: 85%;
    max-width: 550px;
  }

  .main_text {
    font-size: 2.65vh;
    line-height: 2.3;
    letter-spacing: 0.01em;
  }

  .secondary_text {
    font-size: 3.6vh;
  }

  .sab_title {
    width: 26vh;
    max-width: 200px;
    height: 100%;
    padding-top: 80px;
    padding-bottom: 215px;
    margin-top: -130px;
  }

  .sab_title_01,
  .sab_title_02,
  .sab_title_03 {
    width: 40%;
    position: relative;
  }

  #about .container {
    position: relative;
    left: 0px;
  }


  .service_pos {
    position: relative;
    left: 140px;
  }

  .slide_box {
    margin-right: 40px;
  }

  .area_desc {
    right: 53.5%;
  }

  .map_contents {
    left: 14%;
  }

  .feature_title {
    margin-left: 0px;
  }

  .feature_text {
    margin-left: 0px;
  }

  .thought_sab_title {
    font-size: 48px;
  }

  #thought .container {
    left: -30px;
  }

  .thought_text {
    width: 940px;
    margin: -70px auto 0;
    padding-top: 70px;
    font-size: 14px;
  }

  .thought_contents_inner {
    left: 28%;
  }
}




@media screen and (max-width:768px) {
  body {
    min-width: 0;
  }

  h2 {
    font-size: 21px;
  }

  .container {
    max-width: 100%;
    width: 90%;
  }

  /*            header              */
  #header {
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    background-color: #FBF9EA;
    padding: 3px 0 10px;
  }

  #header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .hd_logo {
    width: 47%;
    padding: 0;
  }

  .top_banner.sp_only {
    max-width: none;
    width: 39%;
    position: relative;
    z-index: 100;
    top: -3px;
    margin-left: 3%;
    margin-right: 0;
  }


  /*             menu               */
  .menu_btn {
    max-width: none;
    width: 6%;
    line-height: 1;
    cursor: pointer;
    margin-right: 1%;
  }

  .menu_list_popup {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #F0E6AA;
    transform: translateX(500%);
    transition: 0.3s;
  }

  .menu_list_popup_inner {
    width: 70%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .menu_list_sp li {
    margin-bottom: 5%;
  }

  .menu_list_sp li a {
    font-size: 23px;
    font-weight: 900;
    text-decoration: none;
    color: #1D313B;
  }

  .menu_list_popup_close {
    position: absolute;
    top: 0%;
    right: 5%;
    font-size: 40px;
    cursor: pointer;
  }

  .show_popup {
    transform: translateX(0);
  }

  .scroll_bar {
    width: 2px;
    position: absolute;
    bottom: -5%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: 1s;
    clip-path: inset(0 0 100% 0);
    animation: scroll_bar 3s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
  }

  @keyframes scroll_bar {
    0% {
      clip-path: inset(0 0 100% 0);
    }

    50% {
      clip-path: inset(0 0 0 0);
    }

    100% {
      clip-path: inset(100% 0 0 0);
    }

  }



  /*             main               */
  #main {
    padding-bottom: 4%;
  }

  #main .container {
    flex-direction: column-reverse;
    width: 90%;
    left: 0px;
    margin: 0 auto 0;
    padding-top: 20%;
  }

  .main_contents {
    width: 100%;
  }

  .main_title {
    width: 75%;
    margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 11%;
    position: relative;
    padding-bottom: 24%;
  }

  .main_title_img {
    transition-delay: 1s;

  }

  .main_title_text {
    margin-top: 20px;
    opacity: 0;
    transition: 2s;
    transition-delay: 1.5s;
  }

  .main_text {
    font-size: 12px;
    line-height: 2.3;
    letter-spacing: -0.05em;
  }

  .main_text p {
    transition: 1s;
    transition-delay: 0s;
  }

  .main_text p:not(:last-of-type) {
    margin-bottom: 5%;
  }

  .secondary_text {
    font-size: 21px;
    line-height: 1.7;
    margin: 6% 0 19%;
    transition-delay: .5s;
  }

  .sab_title {
    width: 71%;
    height: auto;
    position: static;
    top: 0px;
    padding: 0;
    margin: 0 auto 6%;
  }

  .sab_title_01 {
    width: 27%;
  }

  .sab_title_02 {
    width: 23%;
  }

  .sab_title_03 {
    width: 26%;
  }


  .show_sab_title {
    opacity: 1;
  }

  .main_img_bg_top {
    height: 38px;
    background: url(../images/main_img_02_top_sp.png);
    background-size: contain;
    margin-bottom: 35px;
    transition-delay: .5s;
  }

  .main_img_bg_bottom {
    height: 38px;
    background: url(../images/main_img_02_bottom_sp.png);
    background-size: contain;
    transition-delay: .5s;
  }



  /*             about               */
  #about {
    padding-top: 23%;
    margin-top: 0%;
    padding-bottom: 0%;
  }

  #about .container {
    left: 0px;
  }

  .about_contents {
    width: 100%;
    border-radius: 40px;
    padding: 9% 0 12%;
    box-sizing: border-box;
  }

  #about .flex {
    width: 100%;
    padding: 0;
    flex-direction: column;
  }

  .about_left {
    width: 100%;
    padding: 0 6%;
    box-sizing: border-box;
  }

  .about_text {
    font-size: 12.5px;
    line-height: 1.9;
    margin-top: 1%;
    text-indent: -0.5em;
  }

  .about_right {
    width: 96%;
    margin: 11% auto 0;
    position: relative;
    transition-delay: 0s;
  }

  .about_img {
    top: 0;
  }

  .about_img_arrow {
    width: 27%;
  }

  .about_img_arrow_01 {
    top: auto;
    bottom: 64%;
    left: 20%;
    transition-delay: 0s;
    transition: .7s;
  }

  .about_img_arrow_02 {
    top: auto;
    bottom: 64%;
    right: 17%;
    transition-delay: 0s;
    transition: .7s;
  }

  .about_img_arrow_03 {
    bottom: 18%;
    left: 18%;
    transition-delay: 0s;
    transition: .7s;
  }

  .about_img_arrow_04 {
    bottom: 18%;
    right: 19%;
    transition-delay: 0s;
    transition: .7s;

  }

  /*             youtube               */
  .youtube_contents {
    width: 90%;
    height: auto;
    margin: 0 auto;
    aspect-ratio: 16/9;
    padding: 60px 0 0;
  }

  /*             service               */
  #service {
    margin-top: 0;
    padding-top: 23%;
    padding-bottom: 0;
  }

  .service_pos {
    left: 0;
  }

  .service_title {
    line-height: 1.8;
    margin-bottom: 8%;
  }

  .service_title span {
    font-size: 10px;
  }

  .banner_contents {
    width: 95%;
  }

  .slick_slider .flex {
    width: 100%;
    height: 48vw;
    border-radius: 18px;
  }

  .banner_left {
    width: 60%;
    border-radius: 18px 0 0 18px;
  }

  .service_logo {
    width: 60%;
    margin: 0 auto;
  }

  .slide_box {
    margin-right: 0;
  }

  .slide_box_02 .service_logo {
    width: 85%;
  }

  .slide_box_03 .service_logo {
    width: 83%;
  }

  .slide_box_04 .service_logo {
    width: 60%;
  }

  .slide_box_05 .service_logo {
    width: 60%;
  }

  .slide_box_06 .service_logo {
    width: 70%;
  }

  .slide_right {
    width: 40%;
  }

  .banner_title {
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 25px;
  }

  .banner_title_br {
    margin-bottom: 12px;
  }

  .banner_detail {
    font-size: 10px;
    margin-bottom: 5%;
    white-space: nowrap;
  }

  .banner_detail span {
    font-size: 0.9em;
    padding: 0 5px;
  }

  .banner_link {
    margin-top: 5%;
  }

  .banner_link::before {
    width: 90%;
    height: 7px;
    background: url(../images/banner_arrow_sp.png) no-repeat;
    background-size: contain;
    bottom: 0;
  }

  .banner_link::after {
    width: 35px;
    height: 35px;
    bottom: -53%;
    right: auto;
    left: 30px;
  }

  .banner_link.link_hover::after {
    width: 35px;
    height: 35px;
    bottom: -53%;
    left: 60px;

  }

  .banner_link {
    font-size: 10px;
  }

  .banner_img {
    width: 57%;
    margin: 16px auto 0;
  }

  .slick-prev,
  .slick-next {
    width: 39px;
    height: 39px;
    position: absolute;
    top: -28%;
  }

  .slick-prev {
    background: url(../images/prev_btn_remove_sp.png);
    background-size: cover;
    left: auto;
    right: 20%;
  }

  .slick-next {
    background: url(../images/next_btn_add_sp.png);
    background-size: cover;
    left: auto;
    right: 5%;
  }

  .slick-prev.add {
    background: url(../images/prev_btn_add_sp.png);
    background-size: cover;
  }

  .slick-next.remove {
    background: url(../images/next_btn_remove_sp.png);
    background-size: cover;
  }




  /*             area_map               */
  #area_map {
    margin-top: 0%;
    padding-top: 53%;
    padding-bottom: 0;
  }

  .area_desc {
    border-radius: 0 200px 200px 0;
    top: 11%;
    right: 20%;
    padding: 35px 0;
    transition-delay: 0s;
    transition: .5s;
  }

  .area_desc_box {
    width: 78%;
    margin-right: 12%;
  }

  .area_map_title {
    margin-bottom: 0px;
    transition-delay: .7s;
  }

  .area_map_text {
    font-size: 12px;
    line-height: 1.9;
    text-align: justify;
    transition-delay: .7s;
  }

  .map_contents {
    padding: 120px 0 72px;
    left: 5%;
    transition: 1s;
  }

  .map_img_box {
    width: 83%;
    margin-left: 7.5%;
    transition-delay: 1s;
  }

  .map_pin {
    width: 20px;
    transition-delay: 1.3s;
    height: 0;
  }

  .map_pin img {
    vertical-align: top;
  }

  .map_pin_01 {
    bottom: 32%;
    left: 52%;
  }

  .map_pin_02 {
    bottom: 38%;
    right: 17.8%;
  }

  .map_pin_03 {
    top: 55%;
    left: 50.7%;
  }

  .map_pin_04 {
    top: 55%;
    left: 56.3%;
  }

  .map_pin_05 {
    bottom: 20%;
    left: 27.5%;
  }

  .map_pin_06 {
    bottom: 32%;
    left: 27.5%;
  }

  .area_note {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 900;
    bottom: auto;
    top: 35%;
    left: 7.5%;
  }

  .area_detail_01 {
    width: 70%;
    position: absolute;
    bottom: -2%;
    transform: translateY(50%);
    left: -4%;
    right: 0;
    margin: 0 auto;
  }

  .area_detail_02 {
    width: 70%;
    position: absolute;
    bottom: 6%;
    left: 34%;
    right: 0;
    transform: translateY(50%);
    margin: 0 auto;
  }

  .area_detail_03 {
    width: 70%;
    position: absolute;
    top: 25%;
    left: -11%;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
  }

  .area_detail_04 {
    width: 70%;
    position: absolute;
    top: 25%;
    left: 20%;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
  }

  .area_detail_05 {
    width: 70%;
    position: absolute;
    bottom: 16%;
    left: -20%;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
  }

  .area_detail_06 {
    width: 70%;
    position: absolute;
    top: 45%;
    left: 10%;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
  }



  .area_detail_box {
    width: 100%;
    height: 28vw;
    max-height: 130px;
  }

  .store_list {
    height: 18px;
    border-radius: 10px;
    padding: 0 5px 0 18px;
    position: absolute;
    top: 22vw;
    left: 15vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .store_list a {
    font-size: 10px;
    vertical-align: 50%;

  }

  .material-symbols-outlined {
    vertical-align: -33%;
  }


  .area_detail_01 .area_detail_box::before {
    width: 35px;
    height: 48px;
    background: url(../images/area_detail_arrow_01.png) no-repeat;
    background-size: cover;
    top: -25%;
    left: 45%;
  }

  .area_detail_02 .area_detail_box::before {
    width: 35px;
    height: 48px;
    background: url(../images/area_detail_arrow_02.png) no-repeat;
    background-size: cover;
    top: -20%;
    left: 64%;
  }

  .area_detail_03 .area_detail_box::before {
    width: 35px;
    height: 48px;
    background: url(../images/area_detail_arrow_03.png) no-repeat;
    background-size: cover;
    top: 85%;
    left: 48%;
  }

  .area_detail_04 .area_detail_box::before {
    width: 35px;
    height: 48px;
    background: url(../images/area_detail_arrow_04.png) no-repeat;
    background-size: cover;
    top: 85%;
    left: 48%;
  }

  .area_detail_05 .area_detail_box::before {
    width: 35px;
    height: 48px;
    background: url(../images/area_detail_arrow_04.png) no-repeat;
    background-size: cover;
    top: 87%;
    left: 36%;
  }

  .area_detail_06 .area_detail_box::before {
    width: 35px;
    height: 48px;
    background: url(../images/area_detail_arrow_04.png) no-repeat;
    background-size: cover;
    top: 90%;
    left: 15%;
  }



  .area_detail_left {
    width: 40%;
  }

  .area_detail_01 .area_logo {
    width: 60%;
    position: relative;
    top: 45%;

  }

  .area_detail_02 .area_logo {
    width: 60%;
    position: relative;
    top: 45%;
  }

  .area_detail_03 .area_logo {
    width: 85%;
    position: relative;
    top: 45%;
    left: 10%;

  }

  .area_detail_04 .area_logo {
    width: 60%;
    position: relative;
    top: 45%;
  }

  .area_detail_05 .area_logo {
    width: 68%;
    position: relative;
    top: 45%;
  }

  .area_detail_06 .area_logo {
    width: 75%;
    position: relative;
    top: 45%;
  }

  .area_detail_right {
    width: 55%;
  }

  .area_heading {
    margin: 10px auto 5px;
    font-size: 10px;
  }

  .area_detail_02 .area_heading {
    margin: 8px auto 5px;
  }

  .area_name {
    width: 80%;
    font-size: 10px;
  }

  .area_detail_02 .area_name li {
    font-size: 90%;
    margin-top: -5px;
  }


  /*             feature               */
  #feature {
    padding-top: 23%;
    margin-top: 11%;
    padding-bottom: 0;
  }

  #feature .container {
    width: 90%;
  }

  .feature_bg {
    background-color: #F5B400;
    padding-top: 10%;
    padding-bottom: 22%;
    height: auto;
    box-sizing: border-box;
  }

  .feature_title {
    margin-left: 0px;
  }

  .feature_title h2 {
    font-size: 21px;
  }

  .feature_text {
    font-size: 12.5px;
    line-height: 1.9;
    margin: 0;
    transition-delay: .5s;
  }

  .feature_contents {
    margin: 16% auto 0;
    flex-direction: column;
  }

  .feature_box {
    width: 86%;
  }

  .feature_box:not(:last-of-type) {
    margin-bottom: 12%;
  }

  .feature_box_title {
    top: 0px;
    animation-delay: 0.5s;
  }

  .feature_box_img {
    width: 73%;
    margin: 0 auto;
  }

  .feature_box_title_01 {
    width: 66%;
  }

  .feature_box_title_02 {
    width: 55%;
  }

  .feature_box_title_03 {
    width: 100%;
    left: 0px;
  }

  .feature_box_text {
    font-size: 12px;
    line-height: 1.9;
    margin-top: 20px;
    letter-spacing: .06em;
    transition-delay: 1s;
  }



  /*             thought               */
  #thought {
    height: auto;
    padding-bottom: 0px;
    padding-top: 15%;
    margin-top: 10%;
  }

  #thought .container {
    width: 90%;
    position: relative;
    padding: 0;
  }

  .thought_title {
    transition-delay: 0s;
    padding: 3% 0 0;
    margin-bottom: 5%;
  }

  .thought_title h2 {
    font-size: 21px;
  }

  .thought_sab_title {
    font-size: 28px;
    margin: 5% 0 2%;
    transition-delay: 0s;
  }

  .thought_text {
    width: 100%;
    margin: 0px auto 0;
    padding: 0;
    font-size: 12.5px;
    line-height: 1.9;
    position: static;
    transition-delay: .5s;
  }

  .thought_contents {
    height: auto;
    padding-bottom: 158%;
    position: relative;
    overflow: hidden;
    top: 0;
    margin-top: -18%;

  }

  .thought_contents_inner {
    width: 100%;
    padding: 80px 0 40px;
    position: absolute;
    top: 0;
    left: 12%;
    border-radius: 40px 0 0 40px;
    transition-delay: 0s;
  }

  .thought_img_box {
    width: 74%;
    margin-left: 8%;
  }

  .thought_img_01 {
    width: 82%;
    margin: 0 auto 25%;
    transition-delay: 0s;
  }

  .thought_img_02 {
    cursor: pointer;
    transition-delay: 0s;
  }

  .thought_popup {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    background-color: #1D313Bcc;
    z-index: 100;
    /* display: none; */
  }

  .thought_popup.sp_only {
    display: none;
  }

  .thought_popup_inner {
    width: 100%;
    background-color: #F0E6AA;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 7% 0 10%;
    text-align: center;
  }

  .thought_popup_text {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-decoration: underline;
    position: absolute;
    top: 3%;
    left: 3%;
  }

  .thought_popup_img {
    width: 80%;
    margin: 0 auto;
  }

  .thought_popup_close {
    display: inline-block;
    font-size: 10px;
    cursor: pointer;
    position: relative;
  }

  .thought_popup_close::after {
    content: "×";
    position: absolute;
    top: 30%;
    right: 0;
    left: 0;
    font-size: 20px;
  }

  #thought .container {
    left: 0px;
  }



  /*               form               */
  #form {
    padding-top: 14%;
    margin-top: 9%;
  }

  #form .container {
    width: 90%;
  }

  .form_contents {
    transition-delay: 0s;
  }

  .form_caution {
    font-size: 1rem;
    margin: -20px 0 20px 0;
  }

  /* stores */
  .stores_title h2 {
    width: 85%;
    border-radius: 45px;
    line-height: 1.5;
    padding: 5px 0;
    font-size: 20px;
    letter-spacing: .07em;
    margin-bottom: 5%;
  }

  .stores_text {
    width: 80%;
    font-size: 12px;
  }

  .stores_btn_flex {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .stores_btn_item {
    width: 100%;
  }


  .form_title h2 {
    width: 85%;
    border-radius: 45px;
    line-height: 1.5;
    padding: 5px 0;
    font-size: 21px;
    letter-spacing: .07em;
    margin-bottom: 5%;
  }

  .form_bg {
    padding: 11% 0 9%;
  }

  .form_flex {
    width: 80%;
  }

  .form_text {
    width: 100%;
    font-size: 12px;
  }

  .form_logo {
    width: 36%;
    margin: 0 auto;
  }

  .form_box {
    width: 80%;
    margin: 5% auto 12%;
    border-radius: 15px;
    padding: 5% 3%;
    text-align: left;
  }

  .form_box_title {
    width: 70%;
    font-size: 13.5px;
    text-align: center;
  }

  .form_alert {
    font-size: 10px;
    text-align: center;
  }

  .form_box label {
    font-size: 11px;
    width: 22%;
    margin-right: 5px;
  }

  .form_box input {
    width: 70%;
    height: 18px;
    box-sizing: border-box;
    margin-right: 0px;
  }

  #first_name,
  #last_name {
    width: 40%;
    margin-right: 0px;
  }

  input[type="submit"] {
    appearance: none;
    border-radius: 0;
  }

  .form_box input[type="submit"] {
    display: block;
    width: 100px;
    margin: 3% auto 0;
    height: 36px;
    border-radius: 9px;
    font-size: 15px;
  }

  /* news */
  .news_title h2 {
    width: 85%;
    border-radius: 45px;
    line-height: 1.5;
    padding: 5px 0;
    font-size: 20px;
    letter-spacing: .07em;
    margin-bottom: 5%;
  }


  /*               footer               */
  #footer {
    padding-top: 11%;
  }

  .footer_logo {
    width: 58%;
  }

  #footer .flex {
    width: 90%;
    margin: 5% auto 3%;
    flex-wrap: wrap-reverse;
  }


  #footer li {
    text-align: center;
    width: 50%;
    display: inline-block;
  }

  #footer li:last-of-type {
    font-size: 10px;
    text-align: center;
    width: 100%;
  }

  #footer li a {
    font-size: 11px;
  }

  .fas {
    margin-left: 5px;
  }

  .copy {
    font-size: 10px;
  }

  .sp_only {
    display: block;
  }

  .pc_only {
    display: none;
  }

  .scrollin {
    opacity: 1;
  }

  .slide_scrollin {
    transform: translateX(0);
  }
}



@media only screen and (min-width: 650px) and (max-width: 768px) {
  .area_detail_box {
    width: 80%;
    height: 22vw;
    max-height: 200px;
  }

  .area_heading {
    font-size: 0.8rem;
  }

  .area_name {
    font-size: 0.8rem;
  }

  .store_list {
    height: 24px;
    border-radius: 12px;
    padding: 0 5px 0px 18px;
    position: absolute;
    top: 18vw;
    left: 16vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .store_list a {
    font-size: 0.8rem;
  }

  .map_pin {
    width: 30px;
  }

  .map_pin_01 {
    bottom: 32%;
    left: 52%;
  }

  .map_pin_02 {
    bottom: 40%;
    right: 17.8%;
  }

  .map_pin_03 {
    top: 55%;
    left: 50%;
  }

  .map_pin_04 {
    top: 55%;
    left: 56%;
  }

  .map_pin_05 {
    bottom: 20%;
    left: 26%;
  }

  .map_pin_06 {
    bottom: 32%;
    left: 26%;
  }

  .area_detail_01 {
    position: absolute;
    bottom: 5%;
    transform: translateY(50%);
    left: 16%;
    right: 0;
    margin: 0 auto;
  }

  .area_detail_02 {
    position: absolute;
    bottom: 15%;
    left: 44%;
    right: 0;
    transform: translateY(50%);
    margin: 0 auto;
  }

  .area_detail_02 .area_name li {
    margin-top: -5px;
  }

  .area_detail_06 .area_name li {
    margin-top: -5px;
  }

  .area_detail_03 {
    position: absolute;
    top: 32%;
    left: 8%;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
  }

  .area_detail_04 {
    position: absolute;
    top: 32%;
    left: 32%;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
  }

  .area_detail_05 {
    position: absolute;
    bottom: 14%;
    left: -12%;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
  }

  .area_detail_03 .area_detail_box::before {
    width: 35px;
    height: 48px;
    background: url(../images/area_detail_arrow_03.png) no-repeat;
    background-size: cover;
    top: 95%;
    left: 48%;
  }

  .area_detail_04 .area_detail_box::before {
    width: 35px;
    height: 48px;
    background: url(../images/area_detail_arrow_04.png) no-repeat;
    background-size: cover;
    top: 95%;
    left: 48%;
  }

  .area_detail_05 .area_detail_box::before {
    width: 35px;
    height: 48px;
    background: url(../images/area_detail_arrow_04.png) no-repeat;
    background-size: cover;
    top: 92%;
    left: 36%;
  }

}

@media only screen and (min-width: 500px) and (max-width: 649px) {
  .area_heading {
    font-size: 0.8rem;
  }

  .store_list {
    height: 26px;
    border-radius: 13px;
    padding: 0 5px 0px 18px;
    position: absolute;
    top: 19vw;
    left: 18vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .area_detail_01 {
    position: absolute;
    bottom: 5%;
    transform: translateY(50%);
    left: 0%;
    right: 0;
    margin: 0 auto;
  }

  .area_detail_02 {
    position: absolute;
    bottom: 10%;
    left: 35%;
    right: 0;
    transform: translateY(50%);
    margin: 0 auto;
  }

  .area_detail_02 .area_name li {
    margin-top: -5px;
  }

  .area_detail_03 {
    position: absolute;
    top: 30%;
    left: -7%;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
  }

  .area_detail_04 {
    position: absolute;
    top: 30%;
    left: 20%;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
  }

  .area_detail_05 {
    position: absolute;
    bottom: 14%;
    left: -20%;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
  }

  .area_detail_06 {
    position: absolute;
    bottom: 15%;
    left: 25%;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
  }

  .area_detail_06 .area_detail_box::before {
    width: 35px;
    height: 48px;
    background: url(../images/area_detail_arrow_04.png) no-repeat;
    background-size: cover;
    top: 92%;
    left: 5%;
  }

  .area_detail_06 .area_logo {
    width: 75%;
    top: 40%;
  }


}

@media only screen and (min-width: 363px) and (max-width: 499px) {
  .area_detail_06 {
    position: absolute;
    bottom: 0%;
    left: 10%;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
  }

  .area_detail_06 .area_name li {
    margin-top: -5px;
  }


}

@media screen and (max-width:362px) {
  .slick_slider .flex {
    height: 200px;
    line-height: 1.8;
  }

  .banner_detail {
    font-size: 80%;
  }

  .slide_right {
    font-size: 80%;
  }

  .area_map_title h2 {
    font-size: 100%;
    margin-bottom: 20px;
  }

  .map_contents {
    margin-top: 50px;
  }

  .area_name ul li {
    font-size: 90%;
  }

  .area_detail_02 .area_name li {
    margin-top: -5px;
  }

  .area_detail_06 .area_name li {
    margin-top: -5px;
  }

  .area_heading {
    font-size: 0.5rem;
  }

  .area_detail_box {
    width: 100%;
    height: 30vw;
    max-height: 200px;
  }

  .area_detail_01 {
    width: 70%;
    position: absolute;
    bottom: -5%;
    transform: translateY(50%);
    left: 28%;
    right: 0;
    margin: 0 auto;
  }

  .area_detail_02 {
    width: 70%;
    position: absolute;
    bottom: 4%;
    left: 30%;
    right: 0;
    transform: translateY(50%);
    margin: 0 auto;
  }

  .area_detail_03 {
    width: 70%;
    position: absolute;
    top: 20%;
    left: -15%;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
  }

  .area_detail_04 {
    width: 70%;
    position: absolute;
    top: 20%;
    left: 22%;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
  }

  .area_detail_05 {
    width: 70%;
    position: absolute;
    bottom: 16%;
    left: -20%;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
  }

  .area_detail_06 {
    width: 70%;
    position: absolute;
    bottom: -15%;
    left: 10%;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
  }

  .area_detail_06 .area_name li {
    margin-top: -0.1rem;
  }




  .store_list {
    height: 12px;
    padding: 3px 5px 3px 18px;
    position: absolute;
    top: 23vw;
    left: 16vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .store_list a {
    font-size: 0.5rem;


  }

  .area_detail_01 .area_detail_box::before {
    width: 35px;
    height: 48px;
    background: url(../images/area_detail_arrow_01.png) no-repeat;
    background-size: cover;
    top: -25%;
    left: 20%;
  }

  .area_detail_02 .area_detail_box::before {
    width: 35px;
    height: 48px;
    background: url(../images/area_detail_arrow_02.png) no-repeat;
    background-size: cover;
    top: -20%;
    left: 70%;
  }

  .area_detail_03 .area_detail_box::before {
    width: 35px;
    height: 48px;
    background: url(../images/area_detail_arrow_03.png) no-repeat;
    background-size: cover;
    top: 85%;
    left: 48%;
  }

  .area_detail_04 .area_detail_box::before {
    width: 35px;
    height: 48px;
    background: url(../images/area_detail_arrow_04.png) no-repeat;
    background-size: cover;
    top: 85%;
    left: 48%;
  }

  .area_detail_05 .area_detail_box::before {
    width: 35px;
    height: 48px;
    background: url(../images/area_detail_arrow_04.png) no-repeat;
    background-size: cover;
    top: 87%;
    left: 36%;
  }

  .area_detail_05 .area_logo {
    position: relative;
    top: 45%;
    transform: translateY(-50%);
  }

  .area_detail_02 .store_list {
    position: absolute;
    top: 23vw;
    left: 20vw;
  }

}

@media screen and (max-width:280px) {

  .area_heading,
  .area_name {
    font-size: 0.4rem;
  }

  .store_list {
    height: 8px;
  }

  .store_list a {
    font-size: 0.4rem;
  }

  .area_detail_02 .area_name ul li {
    line-height: 0.6rem;
  }

  .area_detail_03 .area_detail_box::before {
    width: 35px;
    height: 48px;
    background: url(../images/area_detail_arrow_03.png) no-repeat;
    background-size: cover;
    top: 75%;
    left: 48%;
  }

  .area_detail_04 .area_detail_box::before {
    width: 35px;
    height: 48px;
    background: url(../images/area_detail_arrow_04.png) no-repeat;
    background-size: cover;
    top: 75%;
    left: 48%;
  }

  .area_detail_05 .area_detail_box::before {
    width: 35px;
    height: 48px;
    background: url(../images/area_detail_arrow_04.png) no-repeat;
    background-size: cover;
    top: 75%;
    left: 36%;
  }

}