@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #352B1A;
  line-height: 1.7;
  font-size: 16px;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.inner {
  width: 1266px;
  max-width: calc(100% - 30px);
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.inner-inner {
  width: 1032px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: calc(100% - 30px);
}
@media (max-width: 767px) {
  .inner-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .inner-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.color-change-green {
  color: #98B7A5;
}

.color-change-red {
  color: #D15B24;
}

/*----------------------------------------
共通
----------------------------------------*/
/*----------------------------------------
header
----------------------------------------*/
#header {
  width: 100%;
  height: 88px;
  background: #FCCA7A;
  border-bottom: 1px solid #FFF5E5;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}

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

.header-left {
  width: 180px;
  line-height: 0;
  margin-right: auto;
  position: relative;
}

.site-logo {
  display: flex;
  align-items: flex-end;
  width: 100%;
}
@media (max-width: 767px) {
  .site-logo {
    width: 90%;
  }
}

.instagram a {
  width: 23px;
  display: inline-block;
  margin-bottom: 10px;
}

.header__arrange-circle {
  position: absolute;
  width: 238px;
  height: 238px;
  background: #fff;
  border-radius: 50%;
  left: -40px;
  bottom: -60px;
  z-index: -1;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .header__arrange-circle {
    position: absolute;
    width: 250px;
    height: 250px;
    left: -50px;
    bottom: -40px;
  }
}

.menu-list {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
  line-height: 88px;
}

@media (max-width: 767px) {
  .menu-list-item {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .menu-list-item {
    display: none;
  }
}

.header__right {
  margin-left: auto;
  margin-right: auto;
}

.menu-list-item {
  width: 100%;
}
.menu-list-item a {
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  position: relative;
  transition: 0.3s;
  display: inline-block;
}
.menu-list-item a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 0;
  height: 2px;
  background: #fff;
  transform: translateX(-50%);
  opacity: 0;
}
.menu-list-item a.is-active {
  color: #D15B24;
}
.menu-list-item a.is-active::after {
  width: 100%;
  opacity: 1;
}

.drawer-icon {
  width: 45px;
  height: 45px;
  background-image: url(../img/menu-open.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  position: fixed;
  right: 15px;
  top: 20px;
  display: none;
  z-index: 1000;
  transition: all 0.2s;
}
.drawer-icon:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active {
  background-image: url(../img/menu-close.png);
}

.drawer-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 101;
  display: none;
  transition: all 0.3s ease-in-out;
}
.drawer-content a {
  color: #fff;
  font-weight: bold;
  padding: 10px;
  border-radius: 4px;
  transition: all 0.3s;
}
.drawer-content a:hover {
  background: #98B7A5;
  color: #FFF5E5;
}
.drawer-content.is-active {
  display: block;
}

.drawer-content-items {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  font-size: 1.125rem;
}

.drawer-content-item {
  border-bottom: 1px solid #FFF5E5;
}

.drawer-background {
  position: fixed;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #352B1A;
  z-index: 3;
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  right: -50px;
  top: -50px;
  transition: all 0.4s; /*0.6秒かけてアニメーション*/
}
.drawer-background.is-active {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}
@media (max-width: 767px) {
  .drawer-background.is-active {
    width: 100%;
  }
}

/*----------------------------------------
top 
----------------------------------------*/
#top {
  padding-top: 88px;
  width: 100%;
  height: 100vh;
  background: #FCCA7A;
}

.top__main-pic {
  width: 100%;
  height: 100%;
  background-image: url(../img/top__main-picture-pc.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 767px) {
  .top__main-pic {
    background-image: url(../img/top__main-picture-sp.jpg);
    background-size: cover;
    background-position: right top;
  }
}

.top__site-title {
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .top__site-title {
    left: 40px;
    top: 20%;
    text-align: center;
    max-width: 80%;
  }
}

.top__site-title-sub {
  width: 100%;
}
.top__site-title-sub img {
  width: 100%;
}

.top__site-title-main {
  max-width: 84%;
}

.top__site-title-arrange {
  width: 100%;
  height: 28px;
  background: #fff;
  color: #D15B24;
  font-size: 0.875rem;
  font-family: "Josefin Sans", sans-serif;
  line-height: 28px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .top__site-title-arrange {
    font-size: 0.5rem;
  }
}

.top__campaign {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 313px;
  max-width: 22%;
  transition: all 0.6s;
  -webkit-animation: animation-campaign 1s infinite alternate;
          animation: animation-campaign 1s infinite alternate;
}
@media (max-width: 767px) {
  .top__campaign {
    max-width: 45%;
    bottom: 5%;
  }
}
.top__campaign a:hover {
  opacity: 0.8;
  transition: all 0.6s;
}
@-webkit-keyframes animation-campaign {
  0% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(-3deg);
  }
}
@keyframes animation-campaign {
  0% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(-3deg);
  }
}

/*----------------------------------------
news 
----------------------------------------*/
#news {
  background: #fff;
  padding-bottom: 40px;
  padding-top: 50px;
}
@media (max-width: 767px) {
  #news {
    padding-top: 20px;
  }
}

.news__top {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .news__top {
    flex-direction: column;
  }
}

.section-title {
  width: 348px;
  max-width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0px auto;
  border-top: 2px dotted #352B1A;
  border-bottom: 2px dotted #352B1A;
  text-align: center;
  padding: 10px 0px;
}

.section-title-arrange {
  width: 114px;
  max-width: 32%;
  margin: 0 auto;
}

.section-title-box .main {
  font-family: "Josefin Sans", sans-serif;
  font-size: 3rem;
  line-height: 1;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .section-title-box .main {
    font-size: 2rem;
  }
}
.section-title-box .sub {
  display: block;
  font-weight: bold;
}

.news__event {
  width: 608px;
  max-width: 100%;
  background: #FFF5E5;
  margin-left: auto;
  padding: 20px 44px;
  position: relative;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .news__event {
    flex-direction: column;
    padding: 20px;
  }
}

.news__arrange-flag {
  position: absolute;
  right: -50px;
  top: 0;
  width: 80%;
}
@media (max-width: 767px) {
  .news__arrange-flag {
    right: 0px;
  }
}

.news__event-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .news__event-top {
    flex-direction: column;
  }
}

.news__event-top-title {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  color: #fff;
  -webkit-text-stroke: 1px #352B1A;
  text-stroke: 1px #352B1A;
  font-weight: bold;
}
@media (max-width: 767px) {
  .news__event-top-title {
    font-size: 1.5rem;
  }
}

.news__event-top-date {
  font-family: "Josefin Sans", sans-serif;
  font-weight: bold;
}
.news__event-top-date .main {
  font-size: 3rem;
}
@media (max-width: 767px) {
  .news__event-top-date .main {
    font-size: 2rem;
  }
}
.news__event-top-date .sub {
  font-size: 1.25rem;
}

.news__event-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 767px) {
  .news__event-bottom {
    flex-direction: column;
    align-items: center;
  }
}

.news__event-bottom-left {
  width: 35%;
}

.news__event-bottom-right {
  width: 60%;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .news__event-bottom-right {
    width: 100%;
  }
}
.news__event-bottom-right p {
  width: 100%;
  font-weight: bold;
}

.news__event-bottom-right-bottom {
  margin-top: 5px;
}
.news__event-bottom-right-bottom p {
  font-weight: normal;
}

.news__event-bottom-bottom-btn {
  text-align: center;
  margin-top: 10px;
  margin: 10px auto;
}

/*----------------------------------------
btn
----------------------------------------*/
.btn-77:hover {
  background-color: #768d7f;
}

.btn-77,
.btn-77 *,
.btn-77 :after,
.btn-77 :before,
.btn-77:after,
.btn-77:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-77 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #98B7A5;
  background-image: none;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: underline;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
}

.btn-77:disabled {
  cursor: default;
}

.btn-77:-moz-focusring {
  outline: auto;
}

.btn-77 svg {
  display: block;
  vertical-align: middle;
}

.btn-77 [hidden] {
  display: none;
}

.btn-77 {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  border: 1px solid;
  border-radius: 999px;
  box-shadow: 0 0 0 2em transparent;
  box-sizing: border-box;
  font-weight: 900;
  -webkit-mask-image: none;
  overflow: hidden;
  padding: 1.2rem 3rem;
  position: relative;
  text-transform: uppercase;
  margin-top: 10px;
}

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #fff;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #fff;
  }
}
/*----------------------------------------
news-bottom
----------------------------------------*/
.news__news-post-items {
  margin-top: 50px;
  width: 100%;
  border-top: 1px solid #000;
}

.news__news-post-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.news__news-post-item:first-child {
  padding-top: 10px;
}
.news__news-post-item a {
  display: inline-block;
  width: 100%;
  display: flex;
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .news__news-post-item a {
    flex-direction: column;
  }
}
.news__news-post-item a:hover {
  opacity: 0.6;
}
.news__news-post-item a:hover > dt span {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #D15B24;
  color: #D15B24;
}

dt {
  width: 30%;
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  dt {
    width: 100%;
  }
}
dt span {
  font-size: 0.85rem;
  background: #D15B24;
  text-align: center;
  margin: 0 15px;
  border-radius: 4px;
  padding: 5px;
  color: #fff;
  font-weight: bold;
  border: 1px solid #D15B24;
  transition: all 0.3s;
}

dd {
  font-weight: bold;
  width: 65%;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  dd {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}
dd span {
  font-size: 0.875rem;
  display: inline-block;
  margin-left: 50px;
}
@media (max-width: 767px) {
  dd span {
    margin-left: 0px;
  }
}

/*----------------------------------------
concept
----------------------------------------*/
#concept {
  background: #FCCA7A;
  padding: 40px 0px;
}

.concept__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .concept__wrapper {
    flex-direction: column;
  }
}

.concept__left {
  width: 40%;
  display: inline-block;
}
@media (max-width: 767px) {
  .concept__left {
    display: none;
  }
}
.concept__left img {
  width: 100%;
  height: 860px;
  border-radius: 4px;
}

.concept__right {
  width: 55%;
  padding: 25px 60px;
  background: #fff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .concept__right {
    width: 100%;
    padding: 25px 30px;
  }
}

.concept__text-title {
  margin-top: 10px;
  margin-bottom: 10px;
}

.concept__text-title-left,
.concept__text-title-right {
  font-size: 2rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  .concept__text-title-left,
.concept__text-title-right {
    font-size: 1.125rem;
  }
}

.concept__text-title-right {
  text-align: right;
}
.concept__text-title-right span {
  font-weight: bold;
}

.concept__text-subtitle {
  text-align: center;
  position: relative;
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .concept__text-subtitle {
    font-size: 0.8rem;
  }
}

.concept__text-subtitle-inner {
  display: inline-block;
  padding: 0px 10px;
}
.concept__text-subtitle-inner p {
  display: inline-block;
}
.concept__text-subtitle-inner::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 50px;
  background: #352B1A;
  transform: rotate(-50deg);
  bottom: 0;
  left: 15%;
}
@media (max-width: 767px) {
  .concept__text-subtitle-inner::after {
    display: none;
  }
}
.concept__text-subtitle-inner::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 50px;
  background: #352B1A;
  transform: rotate(50deg);
  bottom: 0;
  right: 15%;
}
@media (max-width: 767px) {
  .concept__text-subtitle-inner::before {
    display: none;
  }
}

.concept__illust {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.concept__illust-item1 {
  width: 170px;
}

.concept__illust-item2 {
  width: 220px;
}

.concept__text-top {
  margin: 20px 0px;
  padding-bottom: 20px;
  border-bottom: 1px solid #352B1A;
}

.concept__text-bottom-title {
  font-weight: bold;
  margin-bottom: 10px;
}
.concept__text-bottom-title span {
  font-weight: bold;
  font-size: 1.5rem;
}

.concept__text-bottom-box {
  display: flex;
}
@media (max-width: 767px) {
  .concept__text-bottom-box {
    flex-direction: column;
  }
}

.concept__text-bottom-left {
  width: 70%;
  margin-right: auto;
}
@media (max-width: 767px) {
  .concept__text-bottom-left {
    width: 100%;
  }
}

.concept__text-bottom-right {
  text-align: center;
}
.concept__text-bottom-right img {
  width: 90px;
}
@media (max-width: 767px) {
  .concept__text-bottom-right img {
    margin-top: 20px;
  }
}
.concept__text-bottom-right p {
  font-size: 0.75rem;
  padding: 5px 0px;
  font-weight: bold;
  border-top: 2px dotted #352B1A;
  border-bottom: 2px dotted #352B1A;
}

/*----------------------------------------
feature
----------------------------------------*/
#feature {
  background: #fff;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  #feature {
    margin-bottom: 0px;
  }
}
#feature .inner-inner {
  background: #fff;
  padding: 40px 0px;
}

.feature__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 150px 130px;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .feature__items {
    margin-top: 120px;
  }
}

.feature__item {
  width: 430px;
  height: 100%;
  text-align: center;
  background-image: url(../img/bg-orange.jpg);
  background-repeat: repeat;
  background-size: 2%;
  border-radius: 4px;
  border: 2px #352B1A solid;
  position: relative;
  display: flex;
  align-items: center;
}

.feature__item-number {
  position: absolute;
  top: -28%;
  left: 50%;
  transform: translateX(-50%);
  width: 144px;
  height: 144px;
  background: #D15B24;
  border-radius: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto;
  border: 10px solid #fff;
  box-sizing: border-box;
  box-sizing: content-box;
}
.feature__item-number img {
  width: 74px;
}

.feature__item-content {
  background: #fff;
  margin: 0 auto;
  width: 90%;
  height: 90%;
  background-repeat: 4px;
  padding: 14px 10px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .feature__item-content {
    width: 98%;
  }
}
.feature__item-content h5 {
  font-weight: bold;
  padding-bottom: 1%;
  padding: 0px 10px;
  border-bottom: 3px solid #98B7A5;
}
.feature__item-content p {
  margin-top: 20px;
  text-align: left;
}

.feature__item-picture {
  position: absolute;
  width: 175px;
  height: 175px;
  right: -86px;
  bottom: -86px;
  z-index: 2;
}
@media (max-width: 767px) {
  .feature__item-picture {
    width: 120px;
    height: 130px;
    right: 8px;
    top: -112px;
  }
}
.feature__item-picture img {
  border-radius: 50%;
  border: 3px solid #fff;
}
.feature__item-picture .feature-btn {
  text-align: center;
  display: inline-block;
  margin-top: 20px;
}

/*----------------------------------------
menu
----------------------------------------*/
#menu {
  background: #fff;
}
#menu .inner-inner {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}
#menu .section-title {
  width: 100%;
  max-width: 100%;
}

.menu__title-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .menu__title-box {
    flex-direction: column;
  }
}
.menu__title-box::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 15px;
  height: 100%;
  border-radius: 0px 0px 4px 4px;
  background-color: #98B7A5;
}
@media (max-width: 767px) {
  .menu__title-box::before {
    height: 34px;
  }
}
.menu__title-box .main {
  padding-left: 40px;
  font-weight: bold;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .menu__title-box .main {
    padding-left: 0px;
  }
}

.menu__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .menu__items {
    display: none;
  }
}

.menu-item {
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.menu-item .menu__item-food {
  width: 200px;
  height: 200px;
  margin-bottom: 10px;
  border-radius: 50%;
  background-image: url(../img/bg-orange.jpg);
  background-size: 1%;
  background-repeat: repeat;
  background-position: center center;
  position: relative;
}
.menu-item .menu__item-food .menu__item-food-flag {
  position: absolute;
  width: 70px;
  right: 0;
  bottom: 0;
}
.menu-item .menu__item-food-name,
.menu-item .menu__item-food-price {
  font-weight: bold;
}
.menu-item .menu__item-food-price {
  margin: 15px 0px;
}
@media (max-width: 767px) {
  .menu-item .menu__item-food-price {
    margin-top: 0px;
  }
}
.menu-item .menu__item-food-detail {
  text-align: left;
}
@media (max-width: 767px) {
  .menu-item .menu__item-food-detail {
    width: 70%;
    padding-bottom: 30px;
  }
}

.menu-btn {
  text-align: center;
}
@media (max-width: 767px) {
  .menu-btn {
    margin-top: 30px;
  }
}

/*----------------------------------------
how to join
----------------------------------------*/
#howtojoin {
  background: #FCCA7A;
  margin: 40px 0px;
  text-align: center;
}

.howtojoin__background-circle {
  position: relative;
  background: #fff;
  border-radius: 9999px;
  width: 100%;
  height: 1002px;
  padding: 50px 0px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .howtojoin__background-circle {
    height: auto;
  }
}

.howtojoin-main-pic {
  position: absolute;
  right: -154px;
  top: 0px;
  width: 308px;
  height: 308px;
}
@media (max-width: 767px) {
  .howtojoin-main-pic {
    right: -10px;
    top: 110px;
    max-width: 38%;
  }
}
.howtojoin-main-pic img {
  border-radius: 50%;
}

.howtojoin__title {
  margin-top: 20px;
  margin-bottom: 40px;
  line-height: 22px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .howtojoin__title {
    margin-top: 75px;
    margin-bottom: 0px;
  }
}
.howtojoin__title span {
  font-weight: bold;
  font-size: 1.5rem;
  color: #D15B24;
}

.howtojoin__3step-items {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .howtojoin__3step-items {
    flex-direction: column;
  }
}

.howtojoin__3step-item {
  position: relative;
  width: 18%;
}
@media (max-width: 767px) {
  .howtojoin__3step-item {
    width: 50%;
    margin: 0 auto;
  }
}
.howtojoin__3step-item p {
  text-align: left;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .howtojoin__3step-item p {
    width: 120%;
  }
}

.howtojoin__3step-item-step {
  font-family: "Josefin Sans", sans-serif;
  position: absolute;
  left: -15%;
  top: 5%;
  padding: 0px 10px;
  line-height: 1;
  font-weight: bold;
  font-size: 1.5rem;
  border-bottom: 5px solid #98B7A5;
}

.arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #352b1a;
  margin: 0px 40px;
  align-self: center;
}
@media (max-width: 767px) {
  .arrow {
    margin: 10px 0px;
    transform: rotate(90deg);
  }
}

.howtojoin__title-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 35px;
  border-top: 2px dotted #352B1A;
}
@media (max-width: 767px) {
  .howtojoin__title-box {
    flex-direction: column;
  }
}
.howtojoin__title-box::before {
  position: absolute;
  left: 15%;
  top: 0;
  content: "";
  width: 15px;
  height: 100%;
  border-radius: 0px 0px 4px 4px;
  background-color: #98B7A5;
}
@media (max-width: 767px) {
  .howtojoin__title-box::before {
    height: 32px;
    left: 0%;
  }
}
.howtojoin__title-box .main {
  padding-left: 40px;
  font-weight: bold;
  font-size: 1.25rem;
  margin-right: 30px;
}
.howtojoin__title-box .sub span {
  font-weight: bold;
  border-bottom: 2px solid #D15B24;
}
@media (max-width: 767px) {
  .howtojoin__title-box .sub {
    text-align: left;
  }
}

.howtojoin__bottom-box {
  margin: 20px 0px;
  display: flex;
  justify-content: center;
  position: relative;
}

.comment {
  width: 200px;
  height: 160px;
  max-width: 100%;
  background: #D15B24;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 20px;
  position: absolute;
  left: 50px;
}
@media (max-width: 767px) {
  .comment {
    width: 83px;
    height: 75px;
    padding: 16px;
    left: -27px;
    top: 24px;
    font-size: 0.5rem;
  }
}

.comment:before {
  content: "";
  position: absolute;
  top: 30%;
  right: -40px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 40px solid #D15B24;
  z-index: 0;
  transform: rotate(-20deg);
}
@media (max-width: 767px) {
  .comment:before {
    content: "";
    top: 39%;
    right: -18px;
    margin-top: -15px;
    border: 8px solid transparent;
    border-left: 20px solid #D15B24;
    transform: rotate(340deg);
  }
}

.howtojoin__bottom-box-left {
  display: flex;
}
.howtojoin__bottom-box-left img {
  width: 104px;
}
@media (max-width: 767px) {
  .howtojoin__bottom-box-left img {
    width: 85px;
    height: 85px;
  }
}
.howtojoin__bottom-box-left span {
  font-weight: bold;
}

.howtojoin__bottom-box-middle {
  align-self: center;
  margin: 0px 40px;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .howtojoin__bottom-box-middle {
    margin: 0px 10px;
  }
}

.howtojoin__bottom-box-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.howtojoin__bottom-box-right span {
  font-size: 3rem;
  font-family: "Josefin Sans", sans-serif;
}

.howtojoin__bottom-box-right-option {
  font-size: 1.125rem;
  font-weight: 900;
}

.howtojoin__bottom-box-detail {
  width: 50%;
  margin: 20px auto;
}
@media (max-width: 767px) {
  .howtojoin__bottom-box-detail {
    width: 80%;
    text-align: left;
  }
}

/*----------------------------------------
access
----------------------------------------*/
#access {
  padding: 40px 0px;
}
#access .section-title {
  margin: 0px;
}

.access__picture-box {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .access__picture-box {
    flex-direction: column;
  }
}

.access__picture-box-outside {
  width: 488px;
  max-width: 100%;
}
.access__picture-box-outside img {
  border-radius: 4px;
}

.access__picture-box-outside-map {
  width: 488px;
  max-width: 100%;
}
.access__picture-box-outside-map iframe {
  border-radius: 4px;
}

.access__detail-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 40px;
}

.access__detail-title {
  width: 20%;
  margin-bottom: 10px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .access__detail-title {
    width: 100%;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
}

.access__detail-detail {
  width: 65%;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .access__detail-detail {
    width: 100%;
    font-weight: normal;
  }
}

/*----------------------------------------
footer
----------------------------------------*/
#footer {
  padding: 20px 0px;
  background: #FCCA7A;
}

.footer__left {
  margin-right: auto;
}
.footer__left .site-logo {
  width: 200px;
}
@media (max-width: 767px) {
  .footer__left .site-logo {
    width: 150px;
  }
}
.footer__left .site-logo img {
  vertical-align: bottom;
  line-height: 0px;
}

.copyright {
  font-size: 0.625rem;
  text-align: center;
  margin-top: 20px;
}

.back-to-top {
  width: 130px;
  height: 130px;
  background: #98B7A5;
  border-radius: 50%;
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.125rem;
  opacity: 0;
  z-index: 10000;
}
@media (max-width: 767px) {
  .back-to-top {
    width: 85px;
    height: 85px;
    right: 10px;
  }
}

@media (max-width: 767px) {
  .fa-2x {
    font-size: 1rem;
  }
}

/*----------------------------------------
swiper
----------------------------------------*/
.arrow-circle-up {
  color: #fff;
}

.swiper {
  display: none;
}
@media (max-width: 767px) {
  .swiper {
    display: block;
  }
}

.swiper-button-prev,
.swiper-button-next {
  height: 30px;
  width: 30px;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev:after,
.swiper-button-next:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 40px;
  margin: auto;
  width: 40px;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev:after {
  background-image: url(../img/slider-left.png);
}

/* 次への矢印カスタマイズ */
.swiper-button-next:after {
  background-image: url(../img/slider__right.png);
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0px;
}

.swiper-pagination-bullet-active {
  background: #D15B24;
}

/*----------------------------------------
MENU.HTML
----------------------------------------*/
#menu-detail {
  background: #FFF5E5;
  padding-top: 128px;
  padding-bottom: 40px;
}
#menu-detail .section-title {
  margin-bottom: 40px;
}

.menu-detail__title {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
  font-size: 900;
  font-family: "Josefin Sans", sans-serif;
}
.menu-detail__title span {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 0.875rem;
  display: block;
  font-weight: bold;
}

.fa-comment:before {
  color: #D15B24;
}

.menu-detail__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 767px) {
  .menu-detail__items {
    grid-template-columns: 1fr;
  }
}

.menu-detail__item {
  width: 300px;
  margin: 0 auto;
}

.menu-detail__item-picture-background {
  width: 300px;
  height: 320px;
  background-image: url(../img/bg-orange.jpg);
  background-repeat: repeat;
  background-size: 1%;
  border-radius: 4px;
  border: 1px #352B1A solid;
  position: relative;
}

.menu-detail__item-picture {
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  background: #fff;
}

.country {
  position: absolute;
  right: 10px;
  bottom: 5px;
  width: 100px;
  height: 72px;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  display: flex;
  background: #FFF5E5;
}
.country img {
  width: 65px;
}

.menu-detail__name {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 20px;
  border-top: 1px solid #352B1A;
  padding-left: 20px;
  position: relative;
}
.menu-detail__name::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 100%;
  top: -1px;
  left: 0;
  border-radius: 0px 0px 8.5px 8.5px;
  background: #98B7A5;
}

.menu-detail__description {
  font-size: 0.875rem;
}

.menu-detail__price {
  font-weight: bold;
  margin-top: 5px;
}

.menu-detail__title-drink {
  margin-top: 80px;
  font-size: 2rem;
  font-weight: bold;
  font-size: 900;
  font-family: "Josefin Sans", sans-serif;
}

.drink {
  padding: 40px 0px;
}

.drink__menu {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
@media (max-width: 767px) {
  .drink__menu {
    flex-direction: column;
  }
}

.drink__menu-left,
.drink__menu-right {
  width: 48%;
}
@media (max-width: 767px) {
  .drink__menu-left,
.drink__menu-right {
    width: 100%;
  }
}

.drink__menu-list {
  display: flex;
  flex-wrap: wrap;
}

.drink__menu-title {
  width: 75%;
  padding-left: 20px;
}

.drink__menu-price {
  width: 25%;
  padding-left: 20px;
}