@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  font-family: "Noto Sans JP";
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  color: #333333;
}

@media screen and (max-width: 768px) and (min-width:360px) {
  .pc {
    display: none;
  }
}

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

@media screen and (max-width: 1300px) and (min-width: 768px) {
  body {
    width: 1300px;
  }
}
.hamburger__line {
  display: block;
  width: 24px;
  height: 24px;
}

.menu__container {
  display: block;
}

.hamburger__button {
  display: block;
  height: 60px;
  width: 60px;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #E3691D;
  position: relative;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .hamburger__button {
    width: 33px;
    height: 33px;
  }
}

.hamburger__button span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #E3691D;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .hamburger__button span {
    width: 10px;
  }
}

.hamburger__button span:nth-child(1) {
  top: 19px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .hamburger__button span:nth-child(1) {
    top: 9px;
  }
}

.hamburger__button span:nth-child(2) {
  top: 27px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .hamburger__button span:nth-child(2) {
    top: 14px;
  }
}

.hamburger__button span:nth-child(3) {
  top: 35px;
  opacity: 1;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .hamburger__button span:nth-child(3) {
    top: 19px;
  }
}

.hamburger__button.is-open span:nth-child(2) {
  transform: translateX(-50%) rotate(-25deg);
  top: 27px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .hamburger__button.is-open span:nth-child(2) {
    top: 14px;
  }
}

.hamburger__button.is-open span:nth-child(1) {
  transform: translateX(-50%) rotate(25deg);
  top: 27px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .hamburger__button.is-open span:nth-child(1) {
    top: 14px;
  }
}

.hamburger__button.is-open span:nth-child(3) {
  opacity: 0;
  transition: all 0.3s;
}

.h-menu__container {
  display: block;
  position: relative;
  top: 0px;
  left: -100%;
  transition: all 0.3s;
  z-index: 0;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .h-menu__container {
    left: -300%;
    top: -20px;
  }
}

.h-menu__container.is-open {
  width: 100%;
  background-color: #fff;
  top: 0px;
  left: 0;
  overflow-y: scroll;
  z-index: 1;
  box-sizing: border-box;
  position: relative;
  height: 218px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .h-menu__container.is-open {
    height: auto;
    top: -20px;
  }
}

.h-menu__section {
  width: 100%;
  box-sizing: border-box;
  height: inherit;
}

.h-menu__section:not(:nth-child(1)) {
  margin-top: 20px;
}

.h-menu__section a {
  display: block;
  font-family: "M PLUS 1p";
  font-size: 18px;
}

.h-menu__section ul {
  max-width: 830px;
  margin: auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 156px;
       column-gap: 156px;
  row-gap: 51px;
  padding: 47px 0px 0 0;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) and (min-width:360px) {
  .h-menu__section ul {
    padding-bottom: 47px;
  }
}
.h-menu__section li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  position: relative;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .h-menu__section li {
    width: calc(100% - 30px);
    position: relative;
    margin: auto;
  }
}
.h-menu__section li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 2px solid #434343;
  border-bottom: 2px solid #434343;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.h-menu__section li a p {
  font-size: 13px;
}

.h-menu__section li a {
  line-height: 40px;
  display: flex;
  width: inherit;
  height: inherit;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 500;
  position: relative;
  transition: all 0.3s;
  color: #333333;
}
.h-menu__section li a:hover {
  opacity: 0.7;
}

.header {
  width: 100%;
  height: 90px;
  background-color: #fff;
  border-radius: 0 0 22px 22px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header .header__inner {
  border-radius: 0 0 22px 22px;
  box-shadow: 0 0 6px rgba(88, 59, 11, 0.29);
  padding: 0 50px;
  box-sizing: border-box;
  width: inherit;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .header .header__inner {
    padding: 0 15px;
  }
}
.header .header__inner .logos {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .header .header__inner .logos {
    gap: 10px;
  }
}
.header .header__inner .logos .logos__left a {
  width: 213px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .header .header__inner .logos .logos__left a {
    width: 121px;
  }
}
.header .header__inner .logos .logos__left a img {
  width: 213px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .header .header__inner .logos .logos__left a img {
    width: 121px;
  }
}
.header .header__inner .logos .logos__left a .left__text {
  width: 213px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #292929;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.39px;
  color: #fff;
  margin-top: 5px;
  text-align: center;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .header .header__inner .logos .logos__left a .left__text {
    width: 121px;
    height: 12px;
    background-color: #fff;
    color: #292929;
    font-size: 8px;
  }
}
.header .header__inner .logos .logos__right img {
  width: 66px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .header .header__inner .logos .logos__right img {
    width: 46px;
  }
}
.header .header__inner .navs {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .header__inner .navs .entry {
  width: 194px;
  height: 62px;
  box-sizing: border-box;
  border: 2px solid #434343;
  background-color: #E3691D;
  border-radius: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .header .header__inner .navs .entry {
    width: 115px;
    height: 36px;
    border: 1.5px solid #434343;
  }
}
.header .header__inner .navs .entry:hover {
  opacity: 0.8;
}
.header .header__inner .navs .entry div {
  width: 180px;
  height: 50px;
  border-radius: 35px;
  background-color: #292929;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .header .header__inner .navs .entry div {
    width: 107px;
    height: 30px;
  }
}
.header .header__inner .navs .entry div::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background-color: #fff;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .header .header__inner .navs .entry div::before {
    width: 20px;
    height: 20px;
  }
}
.header .header__inner .navs .entry div::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-right: 2px solid #434343;
  border-bottom: 2px solid #434343;
  transform: rotate(-45deg) translateY(-50%);
  top: 49%;
  right: 14px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .header .header__inner .navs .entry div::after {
    width: 4px;
    height: 4px;
    right: 10px;
    border-right: 1.5px solid #434343;
    border-bottom: 1.5px solid #434343;
  }
}
.header .header__inner .navs .entry div p {
  font-size: 13px;
  letter-spacing: 0.39px;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .header .header__inner .navs .entry div p {
    font-size: 9px;
  }
}

main {
  position: relative;
}
main::before {
  content: "";
  position: absolute;
  background-image: url(../images/bg1.png);
  right: 0;
  top: 0;
  width: 50%;
  min-height: 2300px;
  height: 20%;
  min-width: 500px;
  background-position: top right;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: contain;
}
main::after {
  content: "";
  position: absolute;
  background-image: url(../images/bg3.png);
  left: -560px;
  top: 6850px;
  width: 50%;
  height: 655px;
  width: 1000px;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: contain;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  main::after {
    left: -380px;
    top: auto;
    bottom: -360px;
    width: 610px;
    transform: rotate(75deg);
  }
}

.main__top {
  background-image: url("../images/fv_top_bg.png");
}
.main__top .fv {
  padding-top: 120px;
}
.main__top .fv .fv__inner {
  padding: 0 51px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .fv .fv__inner {
    padding: 0 5px;
  }
}
.main__top .fv .fv__inner .splide {
  width: 100%;
}
.main__top .fv .fv__inner .splide .splide__slide {
  width: 100%;
}
.main__top .fv .fv__inner .splide .splide__slide img {
  width: 100%;
}
.main__top .fv .fv__inner .splide__arrows {
  display: none !important;
}
.main__top .fv .fv__inner .splide__pagination {
  bottom: -2.5em !important;
  gap: 16px;
}
.main__top .fv .fv__inner .splide__pagination .splide__pagination__page {
  width: 12px;
  height: 12px;
  background-color: #D3D3D3;
}
.main__top .fv .fv__inner .splide__pagination .splide__pagination__page.is-active {
  transform: scale(1) !important;
  background-color: #E3691D;
}
.main__top .appeal {
  margin-top: 56px;
}
.main__top .appeal .appeal__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .appeal .appeal__list {
    flex-direction: column;
  }
}
.main__top .appeal .appeal__list .appeal__item {
  width: 348px;
  height: 118px;
  box-sizing: border-box;
  background-color: #fff;
  border: 2px solid #434343;
  border-radius: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.main__top .appeal .appeal__list .appeal__item img {
  width: 86px;
}
.main__top .appeal .appeal__list .appeal__item p {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main__top .appeal .appeal__list .appeal__item span {
  font-size: 13px;
  color: #EC7812;
  font-weight: 600;
}
.main__top .entry {
  padding: 0 185px;
  box-sizing: border-box;
  margin: 84px auto 0;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .entry {
    padding: 0 20px;
  }
}
.main__top .entry .entry__inner {
  background-color: #EC7812;
  border: 2px solid #434343;
  border-radius: 19px;
  box-sizing: border-box;
  position: relative;
  padding: 50px 0 45px 0;
}
.main__top .entry .entry__inner .title h2 {
  color: #FFFFFF;
  letter-spacing: 1.29px;
  font-size: 43px;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}
.main__top .entry .entry__inner .title p {
  font-size: 15px;
  letter-spacing: 0.45px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  position: relative;
}
.main__top .entry .entry__inner .title p::before {
  content: "";
  position: absolute;
  width: 123px;
  height: 3px;
  background-color: #E2691D;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}
.main__top .entry .entry__inner .time {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #434343;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .entry .entry__inner .time {
    top: -30px;
    right: -20px;
    width: 101px;
    height: 101px;
  }
}
.main__top .entry .entry__inner .time h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.57px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .entry .entry__inner .time h3 {
    font-size: 13px;
  }
}
.main__top .entry .entry__inner .time span {
  color: #EC7812;
  font-size: 19px;
  letter-spacing: 0.57px;
  position: absolute;
  right: -10px;
  bottom: 20px;
  font-weight: 600;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .entry .entry__inner .time span {
    font-size: 14px;
    right: 3px;
    bottom: 13px;
  }
}
.main__top .entry .entry__inner .time .content {
  position: relative;
}
.main__top .entry .entry__inner .time .content img {
  width: 78px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .entry .entry__inner .time .content img {
    width: 47px;
    padding-right: 15px;
  }
}
.main__top .entry .entry__inner .entry__img {
  position: absolute;
  width: 316px;
  bottom: -160px;
  left: -100px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .entry .entry__inner .entry__img {
    width: 206px;
    left: -20px;
  }
}
.main__top .entry .entry__inner .entry__img2 {
  position: absolute;
  width: 225px;
  right: 0;
  bottom: -160px;
  right: -100px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .entry .entry__inner .entry__img2 {
    width: 153px;
    right: -20px;
  }
}
.main__top .entry .entry__inner .entry__btn {
  width: 267px;
  height: 86px;
  box-sizing: border-box;
  border: 2px solid #434343;
  background-color: #FFDDC7;
  border-radius: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  margin: 60px auto 0;
}
.main__top .entry .entry__inner .entry__btn:hover {
  opacity: 0.8;
}
.main__top .entry .entry__inner .entry__btn div {
  width: 249px;
  height: 69px;
  border-radius: 35px;
  background-color: #292929;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.main__top .entry .entry__inner .entry__btn div::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #fff;
  transform: translateY(-50%);
}
.main__top .entry .entry__inner .entry__btn div::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 2px solid #434343;
  border-bottom: 2px solid #434343;
  transform: rotate(-45deg) translateY(-50%);
  top: 49%;
  right: 24px;
}
.main__top .entry .entry__inner .entry__btn div p {
  font-size: 21px;
  letter-spacing: 0.63px;
  color: #fff;
  font-weight: 600;
}
.main__top .about {
  position: relative;
  margin-top: 200px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .about .about__inner {
    position: relative;
  }
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .about .bg {
    height: 850px;
  }
}
.main__top .about .slider {
  overflow: hidden;
  position: absolute;
  top: 230px;
  width: 100%;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .about .slider {
    height: 300px;
    top: 530px;
  }
}
.main__top .about .slider img {
  margin-right: 30px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .about .slider img {
    margin-right: 15px;
    height: 850px;
  }
}
.main__top .about .slider img:nth-child(odd) {
  width: 412px !important;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .about .slider img:nth-child(odd) {
    width: 300px !important;
    -o-object-fit: contain;
       object-fit: contain;
    height: inherit;
  }
}
.main__top .about .slider img:nth-child(even) {
  width: 307px !important;
  vertical-align: top;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .about .slider img:nth-child(even) {
    width: 300px !important;
    -o-object-fit: contain;
       object-fit: contain;
    height: inherit;
  }
}
.main__top .about img {
  width: 100%;
}
.main__top .about .about__work {
  position: absolute;
  top: 84px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .about .about__work {
    width: 100%;
  }
}
.main__top .about .about__work .title h2 {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 91px;
  color: #fff;
  letter-spacing: 2.73px;
  text-align: center;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .about .about__work .title h2 {
    font-size: 35px;
    letter-spacing: 1.05px;
  }
}
.main__top .about .about__work .title p {
  font-size: 21px;
  color: #fff;
  letter-spacing: 2.73px;
  text-align: center;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .about .about__work .title p {
    font-size: 15px;
    letter-spacing: 0.45px;
  }
}
.main__top .about .about__work .title p::before {
  content: "";
  position: absolute;
  width: 123px;
  height: 3px;
  background-color: #E2691D;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .about .about__work .title p::before {
    display: none;
  }
}
.main__top .about .about__work .contents {
  width: 491px;
  background-color: #EC7812;
  padding: 69px 0 45px 0;
  text-align: center;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .about .about__work .contents {
    width: 100%;
    padding-top: 30px;
  }
}
.main__top .about .about__work .contents p {
  background-color: #fff;
  width: 413px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EC7812;
  font-size: 21px;
  letter-spacing: 0.63px;
  font-weight: 600;
  margin: auto;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .about .about__work .contents p {
    width: calc(100% - 40px);
    margin: auto;
    font-size: 15px;
  }
}
.main__top .about .about__work .contents p:not(:nth-child(1)) {
  margin-top: 10px;
}
.main__top .about .about__work .contents p:nth-child(4) {
  margin-top: 56px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .about .about__work .contents p:nth-child(4) {
    margin-top: 30px;
  }
}
.main__top .points {
  background-image: url(../images/point_bg.png);
  background-size: 1000px 2300px;
  width: 1000px;
  height: 2300px;
  background-position: center center;
  margin: auto;
  margin-top: 114px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points {
    background-image: none;
    height: auto;
    width: 100%;
  }
}
.main__top .points.sp {
  position: relative;
}
.main__top .points.sp .entry__btn {
  width: 267px;
  height: 86px;
  box-sizing: border-box;
  border: 2px solid #434343;
  background-color: #FFDDC7;
  border-radius: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  margin: 32px auto 0;
  position: absolute;
  z-index: 100;
  bottom: 32%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points.sp .entry__btn {
    margin-top: 50px;
  }
}
.main__top .points.sp .entry__btn:hover {
  opacity: 0.8;
}
.main__top .points.sp .entry__btn div {
  width: 249px;
  height: 69px;
  border-radius: 35px;
  background-color: #292929;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding-left: 45px;
  box-sizing: border-box;
}
.main__top .points.sp .entry__btn div::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #fff;
  transform: translateY(-50%);
}
.main__top .points.sp .entry__btn div::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 2px solid #434343;
  border-bottom: 2px solid #434343;
  transform: rotate(-45deg) translateY(-50%);
  top: 49%;
  right: 24px;
}
.main__top .points.sp .entry__btn div p {
  font-size: 19px;
  letter-spacing: 0.63px;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .sp__point {
    width: calc(100% - 30px);
    margin: auto;
    z-index: 0;
    left: 50%;
    position: static;
    -o-object-fit: contain;
       object-fit: contain;
    transform: translateX(0%);
  }
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .points__inner {
    position: relative;
  }
}
.main__top .points .point:nth-child(1) {
  padding-top: 38px;
}
.main__top .points .point:nth-child(2) {
  margin-top: 115px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .point:nth-child(2) {
    margin-top: 190px;
  }
}
.main__top .points .point:nth-child(2) img {
  padding: 0 70px;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .point:nth-child(2) img {
    margin-top: 40px;
    padding: 0 35px;
  }
}
.main__top .points .point:nth-child(3) {
  margin-top: 80px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .point:nth-child(3) {
    margin-top: 130px;
  }
}
.main__top .points .point:nth-child(3) .entry__btn {
  width: 267px;
  height: 86px;
  box-sizing: border-box;
  border: 2px solid #434343;
  background-color: #FFDDC7;
  border-radius: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  margin: 32px auto 0;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .point:nth-child(3) .entry__btn {
    margin-top: 50px;
  }
}
.main__top .points .point:nth-child(3) .entry__btn:hover {
  opacity: 0.8;
}
.main__top .points .point:nth-child(3) .entry__btn div {
  width: 249px;
  height: 69px;
  border-radius: 35px;
  background-color: #292929;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding-left: 45px;
  box-sizing: border-box;
}
.main__top .points .point:nth-child(3) .entry__btn div::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #fff;
  transform: translateY(-50%);
}
.main__top .points .point:nth-child(3) .entry__btn div::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 2px solid #434343;
  border-bottom: 2px solid #434343;
  transform: rotate(-45deg) translateY(-50%);
  top: 49%;
  right: 24px;
}
.main__top .points .point:nth-child(3) .entry__btn div p {
  font-size: 19px;
  letter-spacing: 0.63px;
  color: #fff;
  font-weight: 600;
}
.main__top .points .point:nth-child(3) .point__3--list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 19px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .point:nth-child(3) .point__3--list {
    -moz-column-gap: 0px;
         column-gap: 0px;
    row-gap: 30px;
  }
}
.main__top .points .point:nth-child(3) .point__3--list .point__item {
  width: 245px;
  text-align: center;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .point:nth-child(3) .point__3--list .point__item {
    width: 44%;
  }
  .main__top .points .point:nth-child(3) .point__3--list .point__item:nth-child(5) {
    width: 204px;
  }
}
.main__top .points .point:nth-child(3) .point__3--list .point__item img {
  width: 155px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .point:nth-child(3) .point__3--list .point__item img {
    width: 160px;
  }
}
.main__top .points .point:nth-child(3) .point__3--list .point__item p {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.51px;
  line-height: 25px;
  padding-top: 5px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .point:nth-child(3) .point__3--list .point__item p {
    font-size: 13px;
    letter-spacing: 0.39px;
  }
}
.main__top .points .point:nth-child(3) .point__3--list .point__item span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.39px;
  line-height: 20px;
  color: #717171;
  padding-top: 9px;
  display: block;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .point:nth-child(3) .point__3--list .point__item span {
    font-size: 11px;
    letter-spacing: 0.33px;
    line-height: 20px;
  }
}
.main__top .points .point:nth-child(4) {
  margin-top: 100px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .point:nth-child(4) {
    margin-top: 200px;
  }
}
.main__top .points .point:nth-child(4) img {
  padding: 0 65px;
  box-sizing: border-box;
  width: 100%;
  margin-top: 83px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .point:nth-child(4) img {
    margin-top: 30px;
  }
}
.main__top .points .point .title {
  display: flex;
  align-items: center;
  padding-left: 45px;
  gap: 45px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .point .title {
    flex-direction: column;
    gap: 13px;
    padding: 0 50px;
  }
}
.main__top .points .point .title h3 {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 30px;
  letter-spacing: 0.9px;
}
.main__top .points .point .title h3 span {
  color: #EC7812;
}
.main__top .points .point .title h4 {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.75px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .point .title h4 {
    font-size: 18px;
    letter-spacing: 0.54px;
  }
}
.main__top .points .point .point__list {
  padding: 0 50px;
  box-sizing: border-box;
  margin-top: 50px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .point .point__list {
    padding: 0 30px;
  }
}
.main__top .points .point .point__list .point__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 89px;
  box-sizing: border-box;
  border: 2px solid #434343;
  border-radius: 14px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .point .point__list .point__item {
    gap: 15px;
    padding-left: 16px;
  }
}
.main__top .points .point .point__list .point__item p {
  font-size: 18px;
  letter-spacing: 0.54px;
  font-weight: 600;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .point .point__list .point__item p {
    font-size: 13px;
    letter-spacing: 0.39px;
    width: 220px;
  }
}
.main__top .points .point .point__list .point__item:not(:nth-child(1)) {
  margin-top: 18px;
}
.main__top .points .point .point__list .point__item:nth-child(1) img {
  position: absolute;
  width: 72px;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .point .point__list .point__item:nth-child(1) img {
    width: 59px;
    position: static;
    transform: translateY(0);
  }
}
.main__top .points .point .point__list .point__item:nth-child(2) img {
  position: absolute;
  width: 57px;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .point .point__list .point__item:nth-child(2) img {
    width: 46px;
    position: static;
    transform: translateY(0);
  }
}
.main__top .points .point .point__list .point__item:nth-child(3) img {
  position: absolute;
  width: 48px;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .points .point .point__list .point__item:nth-child(3) img {
    width: 39px;
    position: static;
    transform: translateY(0);
  }
}
.main__top .daily {
  background-color: #EC7812;
  border-radius: 52px 52px 0 0;
  padding: 89px 0 130px;
  margin-top: 124px;
  position: relative;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .daily {
    border-radius: 30px;
    padding-bottom: 30px;
  }
}
.main__top .daily::before {
  content: "";
  position: absolute;
  background-image: url(../images/bg2.png);
  right: 0px;
  bottom: -480px;
  width: 50%;
  height: 859px;
  width: 561px;
  background-position: bottom right;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: contain;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .daily::before {
    bottom: -360px;
  }
}
.main__top .daily .daily__inner {
  position: relative;
  background-image: url("../images/daily_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 1000px;
  margin: auto;
  width: 100%;
  padding-top: 154px;
  padding-bottom: 92px;
  margin-top: 62px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .daily .daily__inner {
    padding: 0;
    width: calc(100% - 30px);
    margin: auto;
    background-image: none;
    margin-top: 50px;
  }
  .main__top .daily .daily__inner img {
    width: 100%;
  }
}
.main__top .daily .daily__inner .daily1, .main__top .daily .daily__inner .daily2, .main__top .daily .daily__inner .daily3 {
  position: absolute;
  width: 291px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .daily .daily__inner .daily1, .main__top .daily .daily__inner .daily2, .main__top .daily .daily__inner .daily3 {
    position: static;
    width: calc(100% - 30px);
    margin: auto;
  }
}
.main__top .daily .daily__inner .daily1 {
  right: -140px;
  top: -80px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .daily .daily__inner .daily1 {
    right: auto;
    top: 300px;
    left: 50%;
    transform: translateX(0%);
  }
}
.main__top .daily .daily__inner .daily2 {
  top: 312px;
  right: -160px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .daily .daily__inner .daily2 {
    right: auto;
    top: 720px;
    left: 50%;
    transform: translateX(0%);
  }
}
.main__top .daily .daily__inner .daily3 {
  right: -140px;
  bottom: -100px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .daily .daily__inner .daily3 {
    right: auto;
    bottom: -250px;
    left: 50%;
    transform: translateX(0%);
  }
}
.main__top .daily .daily__inner .daily__content {
  padding: 0 38px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 14px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .daily .daily__inner .daily__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .daily .daily__inner .daily__content:nth-of-type(1) {
    padding-top: 130px;
    margin-top: -430%;
  }
}
.main__top .daily .daily__inner .daily__content:nth-of-type(2) {
  margin-top: 58px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .daily .daily__inner .daily__content:nth-of-type(2) {
    margin-top: 35px;
  }
}
.main__top .daily .daily__inner .daily__content:nth-of-type(3) {
  margin-top: 90px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .daily .daily__inner .daily__content:nth-of-type(3) {
    margin-top: 35px;
  }
}
.main__top .daily .daily__inner .daily__content:nth-of-type(4) {
  margin-top: 58px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .daily .daily__inner .daily__content:nth-of-type(4) {
    margin-top: 35px;
  }
}
.main__top .daily .daily__inner .daily__content:nth-of-type(5) {
  margin-top: 92px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .daily .daily__inner .daily__content:nth-of-type(5) {
    margin-top: 35px;
  }
}
.main__top .daily .daily__inner .daily__content:nth-of-type(6) {
  margin-top: 59px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .daily .daily__inner .daily__content:nth-of-type(6) {
    margin-top: 35px;
  }
}
.main__top .daily .daily__inner .daily__content h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.6px;
  width: 140px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .daily .daily__inner .daily__content h3 {
    position: relative;
  }
}
.main__top .daily .daily__inner .daily__content .text {
  box-sizing: border-box;
  padding-left: 3px;
  width: 750px;
  border-radius: 32px;
  border: 2px solid #434343;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 11px;
  height: 44px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .daily .daily__inner .daily__content .text {
    width: 100%;
    position: relative;
    border-radius: 44px;
    height: auto;
    text-align: center;
    justify-content: center;
  }
}
.main__top .daily .daily__inner .daily__content .text h4 {
  width: 146px;
  height: 36px;
  background-color: #EC7812;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border: 2px solid #434343;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .daily .daily__inner .daily__content .text h4 {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.main__top .daily .daily__inner .daily__content .text p {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.39px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .daily .daily__inner .daily__content .text p {
    padding-top: 27px;
    padding-bottom: 17px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .daily .daily__inner .daily__content .text span {
    font-size: 10px;
  }
}
.main__top .daily .title {
  text-align: center;
}
.main__top .daily .title h2 {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 90px;
  color: #fff;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .daily .title h2 {
    font-size: 33px;
  }
}
.main__top .daily .title p {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.75px;
  padding-top: 27px;
  color: #fff;
}
.main__top .location {
  padding-bottom: 92px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .location {
    margin-top: 60px;
  }
}
.main__top .location .location__top {
  padding: 0 183px;
  padding-top: 97px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .location .location__top {
    padding: 0 25px;
  }
}
.main__top .location .location__top .title h2 {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 63px;
  letter-spacing: 1.89px;
  line-height: 76px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .location .location__top .title h2 {
    font-size: 30px;
    letter-spacing: 0.9px;
    line-height: 36px;
  }
}
.main__top .location .location__top .title p {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.63px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .location .location__top .title p {
    text-align: center;
  }
}
.main__top .location .location__center {
  display: flex;
  justify-content: center;
  gap: 35px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .location .location__center {
    flex-direction: column-reverse;
    padding: 0 15px;
    margin-top: 50px;
  }
  .main__top .location .location__center svg {
    width: 100%;
  }
}
.main__top .location .location__center .accordion__title {
  background-color: #FFFCF4;
  border: 2px solid #3E3E3E;
  border-radius: 5px;
  width: 482px;
  padding: 0.625em 30px 0.625em 30px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .location .location__center .accordion__title {
    width: 100%;
  }
}
.main__top .location .location__center .accordion__title:not(:nth-of-type(1)) {
  margin-top: 15px;
}
.main__top .location .location__center .accordion__title h3 {
  font-size: 16px;
  letter-spacing: 0.48px;
}
.main__top .location .location__center .accordion__title::before, .main__top .location .location__center .accordion__title::after {
  content: "";
  display: block;
  background-color: #E3691D;
  position: absolute;
  top: 50%;
  width: 16px;
  height: 3px;
  right: 14px;
}
.main__top .location .location__center .accordion__title::after {
  transform: rotate(90deg);
  transition-duration: 0.3s;
}
.main__top .location .location__center .accordion__title.is-active {
  border-radius: 5px 5px 0 0;
}
.main__top .location .location__center .accordion__title.is-active::before {
  opacity: 0;
}
.main__top .location .location__center .accordion__title.is-active::after {
  transform: rotate(0);
}
.main__top .location .location__center .accordion__content {
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  padding: 0 30px;
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition-duration: 0.3s;
  width: 482px;
  box-sizing: border-box;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .location .location__center .accordion__content {
    width: 100%;
  }
}
.main__top .location .location__center .accordion__content.is-open {
  border: 2px solid #3E3E3E;
  border-top: none;
  padding: 20px 30px;
  line-height: normal; /* numberに書き換える*/
  height: auto;
  opacity: 1;
  line-height: 30px;
}
.main__top .location .location__bottom {
  background-color: #FFFCF4;
  border: 2px solid #3E3E3E;
  border-radius: 5px;
  max-width: 1090px;
  margin: auto;
  margin-top: 20px;
  width: 100%;
  padding: 20px 0px 20px 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .location .location__bottom {
    padding: 20px 10px;
    width: calc(100% - 30px);
  }
}
.main__top .location .location__bottom .bottom__content {
  display: flex;
  align-items: center;
  gap: 11px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .location .location__bottom .bottom__content {
    flex-direction: column;
  }
}
.main__top .location .location__bottom .bottom__content:nth-of-type(2), .main__top .location .location__bottom .bottom__content:nth-of-type(3), .main__top .location .location__bottom .bottom__content:nth-of-type(4) {
  align-items: flex-start;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .location .location__bottom .bottom__content:nth-of-type(2), .main__top .location .location__bottom .bottom__content:nth-of-type(3), .main__top .location .location__bottom .bottom__content:nth-of-type(4) {
    align-items: center;
  }
}
.main__top .location .location__bottom .bottom__content:not(:nth-of-type(1)) {
  margin-top: 23px;
}
.main__top .location .location__bottom .bottom__content h4 {
  width: 150px;
  height: 35px;
  border-radius: 20px;
  background-color: #EC7812;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.45px;
}
.main__top .location .location__bottom .bottom__content p {
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 24px;
  font-weight: 500;
  width: 810px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .main__top .location .location__bottom .bottom__content p {
    width: 100%;
    text-align: center;
    font-size: 13px;
  }
}

.footer {
  position: relative;
  background-color: #FFFCF4;
  border-radius: 25px 25px 0 0;
}
.footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #E2691D;
  top: -15px;
  border-radius: 25px 25px 0 0;
  z-index: -1;
}
.footer .footer__inner {
  padding: 70px 183px 65px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .footer .footer__inner {
    padding: 43px 0;
    flex-direction: column;
  }
}
.footer .logos {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .footer .logos {
    flex-direction: column;
    padding: 0 60px;
    box-sizing: border-box;
    width: 100%;
    gap: 30px;
  }
}
.footer .logos .logos__left a {
  width: 213px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .footer .logos .logos__left a {
    width: 100%;
    display: block;
  }
}
.footer .logos .logos__left a img {
  width: 213px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .footer .logos .logos__left a img {
    width: 100%;
  }
}
.footer .logos .logos__left a .left__text {
  width: 213px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #292929;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.39px;
  color: #fff;
  margin-top: 10px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .footer .logos .logos__left a .left__text {
    width: 100%;
    margin-top: 10px;
  }
}
.footer .logos .logos__right img {
  width: 66px;
}
.footer .entry {
  width: 194px;
  height: 62px;
  box-sizing: border-box;
  border: 2px solid #434343;
  background-color: #E3691D;
  border-radius: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer .entry:hover {
  opacity: 0.8;
}
.footer .entry div {
  width: 180px;
  height: 50px;
  border-radius: 35px;
  background-color: #292929;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.footer .entry div::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background-color: #fff;
  transform: translateY(-50%);
}
.footer .entry div::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-right: 2px solid #434343;
  border-bottom: 2px solid #434343;
  transform: rotate(-45deg) translateY(-50%);
  top: 49%;
  right: 14px;
}
.footer .entry div p {
  font-size: 13px;
  letter-spacing: 0.39px;
  color: #fff;
  font-weight: 600;
}
.footer .footer__right {
  display: flex;
  align-items: center;
  gap: 72px;
}
@media screen and (max-width: 768px) and (min-width:360px) {
  .footer .footer__right {
    flex-direction: column;
    margin-top: 30px;
    text-align: center;
    gap: 50px;
  }
}
.footer .footer__right .nav__link {
  display: flex;
  flex-direction: column;
  gap: 39px;
}
.footer .footer__right .nav__link a {
  display: block;
  text-decoration: underline;
  font-size: 15px;
  letter-spacing: 0.45px;
  color: #343434;
  font-weight: 600;
}/*# sourceMappingURL=common.css.map */