@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "メイリオ", sans-serif;
  color: #222222;
  line-height: 1.8;
  letter-spacing: 0.05em;
  outline: none;
  -webkit-text-size-adjust: 100%;
}

a {
  overflow: visible;
  color: #222222;
  text-decoration: none;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  outline: none;
}

main {
  display: block;
}

hr {
  background-color: #707070;
  height: 1px;
  border: none;
  unicode-bidi: normal;
  margin-block-start: 0;
  margin-block-end: 0;
  padding: 0;
  margin: 0;
}

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

.sp-only {
  display: none;
}
@media screen and (max-width: 1023px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 1023px) {
  .pc-only {
    display: none;
  }
}

.wrapper {
  width: 100%;
  overflow-x: hidden;
  margin: 0 auto;
}

.title {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.title .title-ja {
  display: block;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  padding: 0 10px;
}

.title .title-en {
  font-family: "Lexend", sans-serif;
  font-size: 36px;
  line-height: 1;
  display: inline-block;
  letter-spacing: 0.02em;
  font-weight: 500;
  position: relative;
  margin-bottom: 15px;
}

.title .title-en::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -48px;
  margin: auto;
  height: 1px;
  width: 20px;
  background-color: #222222;
}

.title .title-en::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -48px;
  margin: auto;
  height: 1px;
  width: 20px;
  background-color: #222222;
}

.title .title-en span {
  display: inline-block;
}

@media screen and (max-width: 1023px) {
  .title .title-en::before {
    left: -40px;
  }
  .title .title-en::after {
    right: -40px;
  }
}
@media screen and (max-width: 350px) {
  .title .title-en::before {
    left: -35px;
  }
  .title .title-en::after {
    right: -35px;
  }
}
.link-btn {
  text-align: center;
}

.link-btn a {
  display: inline-block;
  font-size: 16px;
  background-color: #D9E6EF;
  max-width: 280px;
  width: 100%;
  padding: 19px 10px;
  margin: 0 auto;
  line-height: 1;
  font-weight: 500;
  border-radius: 5px;
  margin-top: 70px;
  border: solid 1px #222222;
}

.link-btn a span {
  position: relative;
}

.link-btn a span::after {
  position: absolute;
  content: "";
  margin: auto;
  top: 2px;
  bottom: 0;
  right: -24px;
  width: 10px;
  height: 10px;
  transform: rotate(135deg);
  transform: rotate(135deg) skew(10deg, 10deg);
  border-left: 1px solid #707070;
  border-top: 1px solid #707070;
}

.link-btn a:hover {
  background-color: #ffffff;
}

@media screen and (max-width: 767px) {
  .link-btn a {
    margin-top: 40px;
  }
}
.mainWidth {
  padding: 0 40px;
}

.mainInner {
  max-width: 1040px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .mainWidth {
    padding: 0 20px;
  }
}
.breadcrumb-list {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 10px 10px;
}

.breadcrumb-list li {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
}

.breadcrumb-list li::before {
  content: ">";
  margin: 0 10px;
}

.breadcrumb-list li:first-of-type::before {
  content: none;
}

.breadcrumb-list li a {
  text-decoration: underline;
}

.breadcrumb-list li a:hover {
  opacity: 0.6;
}

.page-top {
  position: fixed;
  bottom: 110px;
  right: 20px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 5s00ms ease;
}

.page-top.show {
  opacity: 1;
  visibility: visible;
}

.page-top a {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #5F5F5F;
  opacity: 0.7;
  border-radius: 50%;
  position: relative;
}

.page-top a::before {
  position: absolute;
  content: "";
  transform: rotate(-45deg);
  top: 8px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 15px;
  height: 15px;
  margin: auto;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.page-top a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .page-top {
    bottom: 80px;
  }
  .page-top a {
    width: 45px;
    height: 45px;
  }
  .page-top a::before {
    top: 5px;
    width: 10px;
    height: 10px;
  }
}
.pagevavi {
  margin-top: 80px;
}

.wp-pagenavi {
  clear: both;
  text-align: center;
}

.wp-pagenavi .extend {
  display: none;
}

.wp-pagenavi a, .wp-pagenavi span {
  color: #717070;
  background-color: #fff;
  border: solid 1px #717070;
  line-height: 1.85;
  padding-left: 2px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: inline-block;
  margin: 0 10px;
  white-space: nowrap;
  border-radius: 50%;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  text-align: center;
  text-decoration: none;
}

.wp-pagenavi a:hover {
  color: #FFF;
  background-color: #59C3E3;
  border-color: #59C3E3;
}

.wp-pagenavi span.current {
  color: #FFF;
  background-color: #59C3E3;
  border-color: #59C3E3;
}

.wp-pagenavi > .previouspostslink {
  color: transparent;
  background-color: #717070;
  position: relative;
  margin-left: 0;
}

.wp-pagenavi > .previouspostslink::before {
  position: absolute;
  content: "";
  margin: auto;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 10px;
  height: 10px;
  transform: rotate(135deg) skew(10deg, 10deg);
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.wp-pagenavi > .previouspostslink:hover {
  color: transparent;
  border-color: transparent;
}

.wp-pagenavi > .nextpostslink {
  color: transparent;
  background-color: #717070;
  position: relative;
  margin-right: 0;
}

.wp-pagenavi > .nextpostslink::before {
  position: absolute;
  content: "";
  margin: auto;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 10px;
  height: 10px;
  transform: rotate(135deg) skew(10deg, 10deg);
  border-left: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.wp-pagenavi > .nextpostslink:hover {
  color: transparent;
  border-color: transparent;
}

@media all and (-ms-high-contrast: none) {
  .wp-pagenavi > .previouspostslink::before {
    transform: rotate(135deg);
  }
  .wp-pagenavi > .nextpostslink::before {
    transform: rotate(135deg);
  }
}
@media screen and (max-width: 1023px) {
  .pagevavi {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 315px) {
  .pagevavi {
    width: 100vw;
    position: relative;
    left: -20px;
  }
}
.error404-page .mainInner {
  padding: 140px 0 100px;
}

.error404 {
  text-align: center;
}

.error404 .error404-title {
  font-size: 35px;
  margin: 65px 0 10px;
}

.error404 .error404-sub-title {
  font-size: 32px;
  margin-bottom: 55px;
  letter-spacing: 0.1em;
}

.error404 p {
  line-height: 2.2;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.error404 p span {
  display: inline-block;
}

@media screen and (max-width: 1023px) {
  .error404-page .mainInner {
    padding: 64px 0 60px;
  }
  .error404-page .error404 {
    margin-bottom: 25px;
  }
  .error404-page .error404 .error404-title {
    font-size: 28px;
    margin: 55px 0 0;
  }
  .error404-page .error404 .error404-sub-title {
    font-size: 25px;
    margin-bottom: 30px;
  }
  .error404-page .error404 p {
    font-size: 15px;
    line-height: 1.9;
    max-width: 340px;
    margin: 0 auto;
  }
}
.sp-block {
  display: none;
}

@media screen and (max-width: 1023px) {
  .sp-none {
    display: none !important;
  }
  .sp-block {
    display: block !important;
  }
}
#header {
  width: 100%;
  z-index: 11;
  padding: 36.2px 60px;
  font-size: 16px;
  position: fixed;
  top: 0;
  background-color: #ffffff;
}

#header .header-inner {
  max-width: 1348px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

#header .headerLogo {
  display: flex;
  align-items: center;
  gap: 30px;
}

#header .headerLogo a {
  display: block;
  width: 200px;
  margin-right: 80px;
  position: relative;
}
#header .headerLogo a:first-child {
  max-width: 100%;
  width: 133px;
  margin-right: 0;
}
@media screen and (max-width: 1023px) {
  #header .headerLogo a:first-child {
    width: 81px;
  }
}
#header .headerLogo a:last-child {
  max-width: 100%;
  width: 160px;
}
@media screen and (max-width: 1023px) {
  #header .headerLogo a:last-child {
    width: 140px;
  }
}

#header .headerLogo a:hover {
  opacity: 0.6;
}

#header .header-nav-area {
  width: 100%;
}

#header .header-nav-area .gnav .gnav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}
@media screen and (max-width: 1219px) {
  #header .header-nav-area .gnav .gnav-list {
    gap: 14px;
  }
}

#header .header-nav-area .gnav .gnav-list .gnav-list-item {
  position: relative;
  z-index: 1;
}

#header .header-nav-area .gnav .gnav-list .gnav-list-item a {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.2;
  padding: 0;
  font-weight: 400;
  font-size: 15px;
  display: block;
  position: relative;
}

#header .header-nav-area .gnav .gnav-list .gnav-list-item a:hover {
  color: #59C3E3;
}

.top-page #header .header-nav-area .gnav .gnav-list .gnav-list-item a.active {
  color: #59C3E3;
}

.news-page #header .header-nav-area .gnav .gnav-list .gnav-list-item:nth-of-type(1) a {
  color: #59C3E3;
}

.about-page #header .header-nav-area .gnav .gnav-list .gnav-list-item:nth-of-type(2) a {
  color: #59C3E3;
}

@media screen and (max-width: 1023px) {
  .top-page #header .header-nav-area .gnav .gnav-list .gnav-list-item a.active {
    color: #222222;
  }
  .news-page #header .header-nav-area .gnav .gnav-list .gnav-list-item:nth-of-type(1) a {
    color: #222222;
  }
  .about-page #header .header-nav-area .gnav .gnav-list .gnav-list-item:nth-of-type(2) a {
    color: #222222;
  }
}
@media screen and (max-width: 1399px) {
  #header {
    padding: 15px 4vw;
  }
  #header .headerLogo a {
    margin-right: 4vw;
    width: 180px;
  }
  #header .header-nav-area .gnav .gnav-list .gnav-list-item a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1219px) {
  #header .header-nav-area .gnav .gnav-list .gnav-list-item a {
    font-size: 12px;
  }
}
@media screen and (max-width: 1023px) {
  #header {
    height: 80px;
    font-size: 20px;
    position: fixed;
    padding: 0;
    z-index: 15;
    border-bottom: none;
  }
  #header .headerLogo {
    position: absolute;
    top: 16px;
    left: 20px;
  }
  #header .headerLogo a {
    width: 140px;
  }
  #header.active .headerLogo {
    z-index: -1;
  }
  #header .header-nav-area {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #EDEDED;
    overflow: scroll;
    padding-top: 12vh;
    visibility: hidden;
    opacity: 0;
    transition: all 400ms ease;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
  }
  #header .header-nav-area .gnav {
    width: 100%;
    display: block;
    padding-bottom: 100px;
    opacity: 0;
  }
  #header .header-nav-area .gnav .gnav-list {
    margin-top: 0;
    height: auto;
    display: block;
  }
  #header .header-nav-area .gnav .gnav-list .gnav-list-item {
    margin: 0 25px;
    border-bottom: solid 1px #95979C;
    border-left: none;
  }
  #header .header-nav-area .gnav .gnav-list .gnav-list-item:last-of-type {
    border-right: none;
  }
  #header .header-nav-area .gnav .gnav-list .gnav-list-item a {
    padding: 28px 0;
    display: block;
    position: relative;
    font-size: 16px;
  }
  #header .header-nav-area .gnav .gnav-list .gnav-list-item a::before {
    content: none;
  }
  #header .header-nav-area .gnav .gnav-list .gnav-list-item a::after {
    position: absolute;
    content: "";
    margin: auto;
    top: 0;
    bottom: 0;
    right: 4px;
    width: 10px;
    height: 10px;
    transform: rotate(135deg) skew(10deg, 10deg);
    border-left: 2px solid #95979C;
    border-top: 2px solid #95979C;
    border-radius: 2px;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
  }
  #header .header-nav-area .gnav .gnav-list .gnav-list-item a:hover::after {
    right: 0;
    border-left: 2px solid #59C3E3;
    border-top: 2px solid #59C3E3;
  }
  #header.active .header-nav-area {
    visibility: visible;
    opacity: 1;
    transition: all 450ms ease;
    -webkit-transition: all 450ms ease;
    -moz-transition: all 450ms ease;
  }
  #header.active .header-nav-area .gnav {
    opacity: 1;
  }
  #header .headerButton {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 64px;
    height: 80px;
    overflow: hidden;
    cursor: pointer;
    z-index: 4;
  }
  #header .headerButton span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 41px;
    height: 4px;
    background-color: #B4B4B5;
  }
  #header .headerButton span.top {
    top: -20px;
  }
  #header .headerButton span.middle {
    top: 3px;
  }
  #header .headerButton span.bottom {
    top: 26px;
  }
  #header.active .headerButton {
    position: fixed;
  }
  #header.active .headerButton::before {
    content: none;
  }
  #header.active .headerButton span.top {
    top: 0;
    width: 22px;
    transform: rotate(45deg);
  }
  #header.active .headerButton span.middle {
    display: none;
  }
  #header.active .headerButton span.bottom {
    bottom: 26px;
    width: 22px;
    transform: rotate(-45deg);
  }
}
@media all and (-ms-high-contrast: none) {
  #header .header-nav-area .gnav .gnav-list .gnav-list-item a::after {
    transform: rotate(135deg);
  }
}
.hero {
  position: relative;
  margin-top: 120px;
  max-width: 1348px;
  margin: 120px auto 0;
  width: 100%;
}
.hero .hero-copy {
  position: absolute;
  top: 58px;
  left: 43%; /* Safari用 */
  transform: translate(-50%, 0);
  z-index: 2;
  color: #ffffff;
}
@media screen and (max-width: 1023px) {
  .hero .hero-copy {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: unset;
  }
}
.hero .hero-copy__lead {
  font-size: 20px;
  text-align: center;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1023px) {
  .hero .hero-copy__lead {
    font-size: 14px;
    text-align: left;
    padding-top: 23px;
    padding-left: 30px;
    line-height: 1.78;
  }
}
.hero .hero-copy__lead br.sp-only {
  display: none;
}
@media screen and (max-width: 1023px) {
  .hero .hero-copy__lead br.sp-only {
    display: block;
  }
}
.hero .hero-information {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  right: 26px;
  top: 29px;
  border-radius: 10px;
  font-size: 12px;
}
.hero .hero-information__inner {
  padding: 40px;
}
.hero .hero-information__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 10px;
}
.hero .hero-information__logo img {
  width: 83px;
}
.hero .hero-information__logo-name {
  font-size: 20px;
  font-weight: 700;
}
.hero .hero-information__text-access {
  font-size: 12px;
  font-weight: 700;
  margin: 13px 0;
}
.hero .hero-information__text-sns {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.hero .hero-information__text-sns a {
  text-decoration: underline;
}

.hero .hero-slider-item a {
  display: block;
  cursor: pointer;
}

.hero .sp-hero-img {
  display: none;
}

.hero .scroll_down {
  display: none;
}

@media screen and (max-width: 1399px) {
  .hero {
    margin-top: 82px;
  }
}
.hero-description {
  text-align: center;
  margin-top: 24px;
}

.brompton-logo-sp {
  display: none;
}
@media screen and (max-width: 1023px) {
  .brompton-logo-sp {
    display: block;
    position: absolute;
    top: 18px;
    right: 27px;
    z-index: 2;
  }
}
.brompton-logo-sp img {
  width: 123px;
}

.brompton-pc {
  position: absolute;
  left: 29px;
  top: 26px;
  z-index: 2;
  width: 200px;
  height: 748px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  display: none;
}
@media screen and (min-width: 1024px) {
  .brompton-pc {
    border-radius: 0;
    display: block;
  }
}
.brompton-pc__inner {
  position: relative;
}
.brompton-pc__header {
  background-color: #3a6728;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  margin-top: 28px;
}
.brompton-pc__logo img {
  height: 17px;
  width: auto;
  display: block;
}
.brompton-pc__headline {
  font-size: 20px;
  font-weight: 400;
  margin: 10px 12px 0;
  text-align: center;
}
.brompton-pc__line {
  content: "";
  display: inline-block;
  width: 1px;
  height: 50px;
  background-color: #fff;
}
.brompton-pc__line-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px 0;
}
.brompton-pc__intro {
  font-size: 12px;
  font-weight: 400;
  margin: 0 12px;
  text-align: center;
}
.brompton-pc__list {
  padding: 0;
}
.brompton-pc__list-item {
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  text-align: center;
}
.brompton-pc__list-item a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s linear;
}
.brompton-pc__list-item a .filter-overlay {
  opacity: 0;
  width: 100px;
  height: 100px;
  position: absolute;
  z-index: 1;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  transition: opacity 0.3s linear;
}
.brompton-pc__list-item a:hover .filter-overlay {
  opacity: 1;
}
.brompton-pc__list-item-text {
  text-align: center;
  margin-top: 10px;
}
.brompton-pc__thumbs {
  margin: 20px auto 0;
  text-align: center;
  width: 100px;
  height: 100px;
}
.brompton-pc__thumbs img {
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 10px;
}
.brompton-pc__thumb {
  position: relative;
  padding-top: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.brompton-sp {
  display: none;
}
@media screen and (max-width: 1023px) {
  .brompton-sp {
    display: block;
    background-color: #000;
    color: #fff;
    font-size: 13px;
  }
}
.brompton-sp__intro {
  padding: 10px 16px;
  text-align: center;
}
.brompton-sp__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
  padding: 0 24px;
}
.brompton-sp__list-item {
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  text-align: center;
  font-size: 11px;
}
.brompton-sp__list-item img {
  border-radius: 10px;
}
.brompton-sp__list-item-text {
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

.top-page-information {
  display: none;
}
@media screen and (max-width: 1023px) {
  .top-page-information {
    display: block;
    background-color: #78CBD1;
    padding: 16px 24px;
    font-size: 13px;
    line-height: 1.38;
  }
}

.top-shop-information {
  display: none;
}
@media screen and (max-width: 1023px) {
  .top-shop-information {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 24px;
    letter-spacing: 0;
  }
}
.top-shop-information__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 10px;
}
.top-shop-information__logo img {
  width: 83px;
}
.top-shop-information__text-lead {
  font-size: 13px;
  line-height: 1.38;
  margin-bottom: 10px;
}
.top-shop-information__text-access {
  font-size: 13px;
  line-height: 1.38;
  margin-bottom: 16px;
  margin-top: 16px;
  font-weight: 700;
}
.top-shop-information__text-sns {
  font-size: 13px;
  line-height: 1.38;
  text-decoration: underline;
  font-weight: 700;
}
.top-shop-information__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
.top-shop-information__image-badge {
  width: 115px;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.hero-slider {
  opacity: 0;
  transition: opacity 0.3s linear;
  height: 796px;
  max-width: 1348px;
  margin: 0 auto;
  width: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 1023px) {
  .hero-slider {
    height: 538px;
  }
}
.hero-slider img {
  border-radius: 10px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .hero-slider img {
    border-radius: 0;
  }
}
.hero-slider .slick-list,
.hero-slider .slick-track,
.hero-slider .pc-hero-img {
  height: 100%;
}
.hero-slider .slick-list img,
.hero-slider .slick-track img,
.hero-slider .pc-hero-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-slider.slick-initialized {
  opacity: 1;
}

.hero-slider .slick-dots {
  display: none !important;
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  max-width: 1050px;
  padding: 0 20px;
}

.hero-slider .slick-dots li {
  vertical-align: middle;
  margin: 0 10px 35px;
  height: 10px;
  width: 10px;
  position: relative;
  z-index: 1;
}

.hero-slider .slick-dots li:first-child:last-child {
  display: none;
}

.hero-slider .slick-dots li.slick-active button {
  background-color: #ffffff;
}

.hero-slider .slick-dots li.slick-active button::before {
  background-color: #ffffff;
  animation: slick-active 5.4s 0s forwards;
}

.hero-slider .slick-dots li button {
  padding: 0;
  font-size: 0;
  background-color: transparent;
  border: solid 1px #ffffff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-sizing: content-box;
  cursor: pointer;
  position: relative;
  z-index: -1;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.hero-slider .slick-dots li button:hover {
  background-color: #ffffff;
}

.hero-slider .slick-dots li button:before {
  content: "";
  width: 10px;
  height: 10px;
  line-height: 0;
  border-radius: 50%;
}

.section-top {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .section-top {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.front-news-wrap {
  padding: 70px 40px 45px;
}

.front-news-wrap .front-news-area {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
  gap: 40px;
}

.front-news-area__content {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  width: 810px;
}
@media screen and (max-width: 1023px) {
  .front-news-area__content {
    width: auto;
    display: block;
    border: none;
  }
}

@media screen and (max-width: 1023px) {
  .news-list__link-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
}
.news-list__item {
  padding: 13px 9px;
  border-bottom: 1px solid #ddd;
  width: 683px;
}
@media screen and (max-width: 1023px) {
  .news-list__item {
    width: auto;
  }
}
.news-list__item:last-child {
  border-bottom: none;
}
.news-list__item a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
  gap: 30px;
}
.news-list__item a:last-child {
  border-bottom: none;
}
.news-list__pill {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #333;
  background-color: #78CBD1;
  color: #fff;
  border-radius: 3px;
  padding: 4px 10px;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .news-list__pill {
    padding: 2px 6px;
    font-size: 10px;
    text-align: center;
  }
}

.front-service-wrap {
  padding: 80px 0;
}
@media screen and (max-width: 1023px) {
  .front-service-wrap {
    background-color: #F5F3EF;
  }
}
.front-service-wrap .mainWidth {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 1023px) {
  .front-service-wrap .mainWidth {
    padding: 0;
  }
}
.front-service-wrap .front-service-title {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.front-service-wrap .front-service-title__icon {
  width: 41px;
  height: 41px;
  margin-right: 16px;
  flex-shrink: 0;
}
.front-service-wrap .front-service-title__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.front-service-wrap .front-service-title__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  letter-spacing: 0.96px;
  line-height: normal;
}
.front-service-wrap .front-service-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.front-service-wrap .front-service-item {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
@media screen and (max-width: 1023px) {
  .front-service-wrap .front-service-item {
    pointer-events: none;
  }
}
.front-service-wrap .front-service-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.front-service-wrap .front-service-item.fade-in:hover {
  opacity: 0.7;
}
.front-service-wrap .front-service-item__image {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.front-service-wrap .front-service-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.front-service-wrap .front-service-item__content {
  flex: 1;
}
.front-service-wrap .front-service-item__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: bold;
  color: #000;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  line-height: normal;
}
.front-service-wrap .front-service-item__title.pc-only {
  display: block;
}
.front-service-wrap .front-service-item__title.sp-only {
  display: none;
}
.front-service-wrap .front-service-item__dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #78CBD1;
  border-radius: 50%;
  margin-right: 4px;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .front-service-wrap .front-service-item__dot {
    margin-right: 8px;
  }
}
.front-service-wrap .front-service-item__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #000;
  line-height: 22px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .front-service-wrap {
    padding: 30px 0;
  }
  .front-service-wrap .front-service-title {
    margin-bottom: 20px;
    justify-content: center;
  }
  .front-service-wrap .front-service-title__icon {
    width: 24px;
    height: 24px;
    margin-bottom: 0;
  }
  .front-service-wrap .front-service-title__icon img {
    position: relative;
    top: -4px;
  }
  .front-service-wrap .front-service-title__text {
    font-size: 16px;
  }
  .front-service-wrap .front-service-items {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
  }
  .front-service-wrap .front-service-item-sp {
    border-top: solid 8px #78CBD1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .front-service-wrap .front-service-item-sp.fade-in {
    opacity: 1;
    transform: translateY(0);
  }
  .front-service-wrap .front-service-item__image {
    padding: 0 30px;
  }
  .front-service-wrap .front-service-item__image img {
    border-radius: 8px;
  }
  .front-service-wrap .front-service-item__title {
    font-size: 16px;
    padding: 19px 30px 18px;
    margin-bottom: 0;
  }
  .front-service-wrap .front-service-item__title .small {
    font-size: 14px;
    font-weight: normal;
    color: #000;
  }
  .front-service-wrap .front-service-item__title.pc-only {
    display: none;
  }
  .front-service-wrap .front-service-item__title.sp-only {
    display: block;
  }
  .front-service-wrap .front-service-item__text {
    font-size: 14px;
    padding: 0 30px;
  }
}

.brompton-rental {
  max-width: 1100px;
  background: #f5f3ef;
  border-radius: 16px;
  padding: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .brompton-rental {
    display: none;
  }
}
.brompton-rental .brompton-rental-main__image {
  border-radius: 12px;
  overflow: hidden;
}
.brompton-rental .brompton-rental-main__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.brompton-rental .brompton-rental-main__content .brompton-rental-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brompton-rental .brompton-rental-main__content .brompton-rental-title__dot {
  width: 20px;
  height: 20px;
  background: #78cbd1;
  border-radius: 50%;
}
.brompton-rental .brompton-rental-main__content .brompton-rental-description {
  font-size: 14px;
  line-height: 22px;
  color: #000;
  margin-bottom: 24px;
}
.brompton-rental .brompton-rental-main__content .brompton-rental-illustrations {
  margin-bottom: 16px;
}
.brompton-rental .brompton-rental-main__content .brompton-rental-illustrations .brompton-illustration-item {
  border-radius: 3px;
  overflow: hidden;
  margin-top: -40px;
}
.brompton-rental .brompton-rental-main__content .brompton-rental-illustrations .brompton-illustration-item img {
  width: 100%;
}
.brompton-rental .brompton-rental-main__content .brompton-rental-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.brompton-rental .brompton-rental-main__content .brompton-rental-caption img {
  width: 32px;
  position: relative;
  top: -2px;
}
.brompton-rental .brompton-rental-main__content .brompton-rental-caption p {
  font-size: 15px;
  text-align: center;
  color: #000;
  margin: 0;
}
.brompton-rental .brompton-rental-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.brompton-rental .brompton-rental-price {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}
.brompton-rental .brompton-rental-price .brompton-price-box {
  background: #fff;
  border-radius: 32px;
  padding: 18px 24px;
  position: relative;
}
.brompton-rental .brompton-rental-price .brompton-price-box .brompton-price-label {
  font-weight: bold;
}
.brompton-rental .brompton-rental-price .brompton-price-box .brompton-price-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.brompton-rental .brompton-rental-price .brompton-price-box .brompton-price-list p {
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 500;
}
.brompton-rental .brompton-rental-price .brompton-price-box .brompton-price-list p:last-child {
  margin-bottom: 0;
}
.brompton-rental .brompton-rental-price .brompton-price-box .brompton-price-list .price-bullet {
  color: #93bcd5;
  margin-right: 0;
}
.brompton-rental .brompton-rental-price .brompton-rental-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  margin-top: 6px;
}
.brompton-rental .brompton-rental-price .brompton-rental-note .brompton-note-icon {
  flex-shrink: 0;
}
.brompton-rental .brompton-rental-price .brompton-rental-note p {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
}
.brompton-rental .brompton-rental-price .brompton-rental-note .brompton-note-badge {
  position: relative;
  font-size: 9.815px;
  font-weight: bold;
  top: 2px;
}
.brompton-rental .brompton-rental-price .brompton-rental-note .brompton-note-badge::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 4px;
  background-image: url(../img/rental-cycle/rental-alert.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.brompton-rental .brompton-rental-price .brompton-rental-note .brompton-note-badge::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 11.5px;
  background-color: #000;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 11px;
  margin-right: 3px;
  position: relative;
  top: 1px;
}
.brompton-rental .brompton-info-section {
  margin-top: 20px;
  padding-top: 34px;
  border-top: 1px solid #A2A2A2;
  display: grid;
  grid-template-columns: 317px 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.brompton-rental .brompton-info-section .brompton-info-content .brompton-info-title {
  font-size: 22px;
  font-weight: bold;
}
.brompton-rental .brompton-info-section .brompton-info-content .brompton-info-subtitle {
  font-size: 14px;
  margin-bottom: 16px;
}
.brompton-rental .brompton-info-section .brompton-info-content .brompton-info-text {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
}
.brompton-rental .brompton-machinori {
  background: #e0efd4;
  border-radius: 40px;
  padding: 22px;
}
.brompton-rental .brompton-machinori-box {
  display: flex;
  gap: 12px;
  align-items: center;
}
.brompton-rental .brompton-machinori .brompton-machinori-logo {
  margin-bottom: 16px;
  width: 124px;
}
.brompton-rental .brompton-machinori .brompton-machinori-logo img {
  height: 124px;
  width: auto;
}
.brompton-rental .brompton-machinori .brompton-machinori-content {
  width: calc(100% - 124px - 12px);
}
.brompton-rental .brompton-machinori .brompton-machinori-content .brompton-machinori-content-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .brompton-rental .brompton-machinori .brompton-machinori-content .brompton-machinori-content-title-wrap {
    flex-direction: column;
  }
}
.brompton-rental .brompton-machinori .brompton-machinori-title {
  font-size: 22px;
  font-weight: bold;
  color: #7da749;
  margin-bottom: 0;
  letter-spacing: 0;
}
.brompton-rental .brompton-machinori .brompton-machinori-port {
  font-size: 14px;
  color: #7da749;
  margin-bottom: 12px;
}
.brompton-rental .brompton-machinori .brompton-machinori-description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px;
  letter-spacing: 0;
}
.brompton-rental .brompton-machinori .brompton-machinori-button a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 7.4px 15px;
  color: #7da749;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
}
.brompton-rental .brompton-machinori .brompton-machinori-button a:after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url(../img/rental-cycle/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.brompton-rental .brompton-machinori .brompton-machinori-button a:hover {
  color: #fff;
  background: #7da749;
}
.brompton-rental .brompton-machinori .brompton-machinori-button a:hover::after {
  background-image: url(../img/rental-cycle/arrow-hover.svg);
}
@media screen and (max-width: 1023px) {
  .brompton-rental {
    padding: 24px 20px;
    margin-bottom: 40px;
  }
  .brompton-rental .brompton-rental-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .brompton-rental .brompton-rental-main__content .brompton-rental-title {
    font-size: 18px;
  }
  .brompton-rental .brompton-rental-main__content .brompton-rental-illustrations {
    grid-template-columns: repeat(2, 1fr);
  }
  .brompton-rental .brompton-rental-price {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .brompton-rental .brompton-info-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .brompton-rental .brompton-machinori-section {
    padding: 24px 20px;
  }
  .brompton-rental .brompton-machinori-section .brompton-machinori-logo img {
    height: 89px;
  }
}

.brompton-rental-sp {
  display: none;
}
@media screen and (max-width: 1023px) {
  .brompton-rental-sp {
    display: block;
  }
}
.brompton-rental-sp .brompton-rental-caption {
  font-size: 12px;
  text-align: center;
}
.brompton-rental-sp .brompton-rental-caption .flag {
  text-align: center;
  width: 32px;
  margin: 0 auto;
  margin-top: 4px;
}
.brompton-rental-sp .brompton-illustration-item {
  padding: 0 30px;
  margin-top: -30px;
}
.brompton-rental-sp .brompton-price-box {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
}
.brompton-rental-sp .brompton-price-box .brompton-price-label {
  background: #231815;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brompton-rental-sp .brompton-price-box .brompton-price-list {
  display: inline-block;
  line-height: 1.4;
}
.brompton-rental-sp .brompton-price-box .brompton-price-list .price-bullet {
  font-size: 16px;
  margin-right: 4px;
}
.brompton-rental-sp .brompton-rental-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  margin-top: 10px;
}
.brompton-rental-sp .brompton-rental-note p {
  position: relative;
  top: -2px;
}
.brompton-rental-sp .brompton-rental-note .brompton-note-badge::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 4px;
  background-image: url(../img/rental-cycle/rental-alert.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.brompton-rental-sp .brompton-rental-note .brompton-note-badge::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 11.5px;
  background-color: #000;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 11px;
  margin-right: 3px;
  position: relative;
  top: 1px;
}

.brompton-machinori-sp {
  padding: 0 30px;
  margin-bottom: 24px;
  display: none;
}
@media screen and (max-width: 1023px) {
  .brompton-machinori-sp {
    display: block;
  }
}
.brompton-machinori-sp .brompton-machinori-box {
  background-color: #E0EFD4;
  border-radius: 15px;
  padding: 20px;
  letter-spacing: 0;
}
.brompton-machinori-sp .brompton-machinori-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brompton-machinori-sp .brompton-machinori-logo {
  margin-bottom: 16px;
  width: 83px;
}
.brompton-machinori-sp .brompton-machinori-logo img {
  height: 83px;
  width: auto;
}
.brompton-machinori-sp .brompton-machinori-content {
  width: calc(100% - 83px - 12px);
}
.brompton-machinori-sp .brompton-machinori-content-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.brompton-machinori-sp .brompton-machinori-title {
  font-size: 13px;
  font-weight: bold;
  color: #7da749;
  margin-bottom: 8px;
  letter-spacing: 0;
}
.brompton-machinori-sp .brompton-machinori-port {
  font-size: 11px;
  color: #7da749;
  margin-bottom: 0;
}
.brompton-machinori-sp .brompton-machinori-description {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: 0;
}
.brompton-machinori-sp .brompton-machinori-button a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 7.4px 15px;
  color: #7da749;
  font-weight: bold;
  font-size: 12px;
  transition: all 0.3s ease;
}
.brompton-machinori-sp .brompton-machinori-button a:after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url(../img/rental-cycle/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.brompton-machinori-sp .brompton-machinori-button a:hover {
  color: #fff;
  background: #7da749;
}
.brompton-machinori-sp .brompton-machinori-button a:hover::after {
  background-image: url(../img/rental-cycle/arrow-hover.svg);
}

.soy-sauce-town {
  line-height: 1;
  padding: 0;
  margin: 0;
  text-align: center;
  vertical-align: middle;
  position: relative;
  top: 2px;
  z-index: 1;
  border-radius: 16px;
  padding: 120px 20px 0;
  max-width: 1140px;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .soy-sauce-town {
    display: none;
  }
}
.soy-sauce-town .soy-sauce-town-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0;
}
.soy-sauce-town .soy-sauce-town-title__dot {
  width: 20px;
  height: 20px;
  background: #78cbd1;
  border-radius: 50%;
}
.soy-sauce-town .soy-sauce-town-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.soy-sauce-town .soy-sauce-town-content {
  width: 464px;
  max-width: 100%;
  position: relative;
  z-index: 4;
}
.soy-sauce-town .soy-sauce-town-content .soy-sauce-town-text .soy-sauce-town-description {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.soy-sauce-town .soy-sauce-town-content .soy-sauce-town-text .soy-sauce-town-services {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 28px;
}
.soy-sauce-town .soy-sauce-town-content .soy-sauce-town-text .soy-sauce-town-services li {
  margin-bottom: 0;
  text-align: left;
}
.soy-sauce-town .soy-sauce-town-image {
  width: 345px;
  max-width: 100%;
  position: relative;
  z-index: 4;
}
.soy-sauce-town .soy-sauce-town-center {
  width: 436px;
  position: absolute;
  top: 59%;
  left: 58%; /* Safari用 */
  transform: translate(-50%, -50%);
  z-index: 3;
}
.soy-sauce-town .japan-eco-track-box {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  margin-top: 82px;
}
.soy-sauce-town .japan-eco-track-box .japan-eco-track-logo {
  flex-shrink: 0;
}
.soy-sauce-town .japan-eco-track-box .japan-eco-track-logo img {
  width: 100px;
  height: auto;
}
.soy-sauce-town .japan-eco-track-box .japan-eco-track-text {
  font-size: 12px;
  line-height: 15px;
  margin: 0;
}
.soy-sauce-town .japan-eco-track-box .japan-eco-track-text .japan-eco-track-icon {
  width: 72px;
}
.soy-sauce-town .japan-eco-track-box .japan-eco-track-text p {
  margin-top: 4px;
  max-width: 150px;
  letter-spacing: 0;
  line-height: 1.75;
  text-align: left;
}
.soy-sauce-town .japan-eco-track-box .japan-eco-track-text .japan-eco-track-link {
  color: #0092e5;
  text-decoration: underline;
}
@media screen and (max-width: 1023px) {
  .soy-sauce-town {
    padding: 40px 20px;
  }
  .soy-sauce-town .soy-sauce-town-title {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .soy-sauce-town .soy-sauce-town-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .soy-sauce-town .japan-eco-track-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

.soy-sauce-town-sp {
  display: none;
  margin: 20px 30px 0;
  padding-top: 19px;
  font-size: 14px;
  border-top: solid 1px #a2a2a2;
}
@media screen and (max-width: 1023px) {
  .soy-sauce-town-sp {
    display: block;
  }
}
.soy-sauce-town-sp .japan-eco-track-box {
  background-color: #fff;
  border-radius: 15px;
  padding: 10px 20px;
  display: flex;
  gap: 17px;
  margin: 20px 0 30px;
}
.soy-sauce-town-sp .japan-eco-track-box .japan-eco-track-text {
  letter-spacing: 0;
  line-height: 1.3;
}
.soy-sauce-town-sp .japan-eco-track-box .japan-eco-track-text p {
  font-size: 12px;
  margin-top: 4px;
}
.soy-sauce-town-sp .japan-eco-track-box .japan-eco-track-text a {
  text-decoration: underline;
  color: #0092e5;
}
.soy-sauce-town-sp .japan-eco-track-box .japan-eco-track-text .japan-eco-track-icon img {
  width: 72px;
}

.travel-kururu-detail-sp {
  display: none;
  margin: 20px 30px 0;
  padding-top: 19px;
  font-size: 14px;
  border-top: solid 1px #a2a2a2;
}
@media screen and (max-width: 1023px) {
  .travel-kururu-detail-sp {
    display: block;
  }
}
.travel-kururu-detail-sp .travel-kururu-images {
  margin: 20px auto;
}
.travel-kururu-detail-sp .travel-kururu-button {
  justify-content: flex-end;
}

@media screen and (max-width: 1023px) {
  .access.section-top {
    padding: 30px 0;
  }
}
.access .mainWidth {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.access .access-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media screen and (max-width: 1023px) {
  .access .access-header {
    align-items: flex-start;
    gap: 16px;
  }
}
.access-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1023px) {
  .access-title {
    font-size: 18px;
    width: 120px;
  }
}
.access-title__dot {
  width: 20px;
  height: 20px;
  background: #78cbd1;
  border-radius: 50%;
}
@media screen and (max-width: 1023px) {
  .access-title__dot {
    width: 18px;
    height: 18px;
  }
}
.access .access-info {
  display: flex;
  align-items: center;
  gap: 35px;
}
@media screen and (max-width: 1023px) {
  .access .access-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.access .access-info-item {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1023px) {
  .access .access-info-item {
    border-top: solid 1px #000;
    width: 100%;
    padding: 10px 0;
  }
}
.access .access-info-item span {
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .access .access-info-item span {
    font-size: 10px;
  }
}
.access .access-info-item.car img {
  width: 18px;
  height: 16px;
}
.access .access-info-item.bicycle img {
  width: 21px;
  height: 18px;
}
.access-text {
  font-size: 12px;
  text-align: right;
}
@media screen and (max-width: 1023px) {
  .access-text {
    text-align: left;
    letter-spacing: 0;
  }
}
.access-text .sp-only {
  display: none;
}
@media screen and (max-width: 1023px) {
  .access-text .sp-only {
    display: inline-block;
    font-weight: 700;
  }
}
.access-text .pc-only {
  display: inline-block;
}
@media screen and (max-width: 1023px) {
  .access-text .pc-only {
    display: none;
  }
}
.access .gmap {
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .access .gmap {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
.access .gmap iframe {
  width: 100%;
  height: 300px;
  border: 0;
}
@media screen and (max-width: 1023px) {
  .access .access-transport {
    flex-direction: column;
    gap: 16px;
  }
  .access .access {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .access .gmap iframe {
    height: 300px;
  }
}

.front-news-wrap .front-news-area .front-news-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(100% - 683px);
}

.front-news-wrap .front-news-area .front-news-title .title {
  margin-bottom: 0;
}
.front-news-wrap .front-news-area .front-news-title .title .title-icon {
  text-align: center;
  margin-bottom: 10px;
}
.front-news-wrap .front-news-area .front-news-title .title .title-icon img {
  width: 31px;
}
.front-news-wrap .front-news-area .front-news-title .title .title-ja {
  font-size: 12px;
  font-weight: 400;
}

.front-news-wrap .front-news-area .front-news-list-wrap {
  width: 100%;
  margin-left: 40px;
}

.front-news-wrap .front-news-area .front-news-list-wrap .news-none p {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2;
  text-align: center;
  padding-top: 30px;
}

.front-news-wrap .front-news-area .front-news-list-wrap .front-news-list {
  border-bottom: solid 1px #484848;
}

.front-news-wrap .front-news-area .front-news-list-wrap .front-news-list a {
  letter-spacing: 0.07em;
  position: relative;
  display: block;
  padding: 20px 20px 20px 0;
}

.front-news-wrap .front-news-area .front-news-list-wrap .front-news-list a:hover {
  opacity: 0.6;
}

.front-news-wrap .front-news-area .front-news-list-wrap .front-news-list a .news-time {
  font-size: 15px;
  display: inline-block;
  margin-right: 20px;
}

.front-news-wrap .front-news-area .front-news-list-wrap .front-news-list a .news-category {
  min-width: 75px;
  padding: 2px 8px 3px;
  line-height: 1;
  font-size: 12px;
  background-color: #D9E6EF;
  text-align: center;
  display: inline-block;
  font-weight: 500;
  margin-right: 25px;
}

.front-news-wrap .front-news-area .front-news-list-wrap .front-news-list a .news-title {
  font-size: 15px;
  padding-top: 6px;
  display: inline-block;
}

@media screen and (max-width: 1023px) {
  .front-news-wrap {
    padding: 0 24px 45px;
  }
  .front-news-wrap .front-news-area {
    flex-wrap: wrap;
    display: block;
  }
  .front-news-wrap .front-news-area .front-news-btn {
    right: 65px;
  }
  .front-news-wrap .front-news-area .front-news-title {
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .front-news-wrap .front-news-area .front-news-title .title {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .front-news-wrap .front-news-area .front-news-title .title .title-icon {
    margin-bottom: 0;
  }
  .front-news-wrap .front-news-area .front-news-title .title .title-icon img {
    width: 26px;
  }
  .front-news-wrap .front-news-area .front-news-title .title .title-ja {
    padding-left: 0;
  }
  .news-list {
    margin-top: 10px;
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
  }
  .front-news-wrap .front-news-area .front-news-list-wrap {
    margin: 20px 40px 0;
  }
}
.top-about-wrap .top-about .top-about-logo {
  max-width: 200px;
  margin: 0 auto;
}

.top-about-wrap .top-about .top-about-catch-copy {
  max-width: 730px;
  margin: 40px auto 35px;
}

.top-about-wrap .top-about .top-about-catch-copy .catch-copy-sp {
  display: none;
}

.top-about-wrap .top-about .top-about-text-wrap .top-about-text {
  text-align: center;
  font-size: 15px;
}

.top-about-wrap .top-about .top-about-text-wrap .top-about-text:not(:last-of-type) {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .top-about-wrap .top-about .top-about-logo {
    max-width: 190px;
  }
  .top-about-wrap .top-about .top-about-catch-copy {
    max-width: 370px;
    margin: 30px auto;
  }
  .top-about-wrap .top-about .top-about-catch-copy .catch-copy-pc {
    display: none;
  }
  .top-about-wrap .top-about .top-about-catch-copy .catch-copy-sp {
    display: block;
    padding: 0 20px;
  }
  .top-about-wrap .top-about .top-about-text-wrap {
    text-align: center;
    display: block;
    max-width: 550px;
    margin: 0 auto;
  }
  .top-about-wrap .top-about .top-about-text-wrap .top-about-text {
    text-align: left;
    display: inline-block;
  }
  .top-about-wrap .top-about .top-about-text-wrap .top-about-text:not(:last-of-type) {
    margin-bottom: 15px;
  }
  .top-about-wrap .top-about .top-about-text-wrap .top-about-text br {
    display: none;
  }
}
.rental-cycle-wrap {
  background-color: #F7F7F7;
}

.rental-cycle-wrap .rental-cycle-text {
  text-align: center;
  font-weight: 500;
}

.rental-cycle-wrap .rental-cycle-text span {
  display: inline-block;
}

.rental-cycle-wrap .rental-flow-title {
  text-align: center;
  max-width: 1040px;
  margin: 50px auto;
  position: relative;
}

.rental-cycle-wrap .rental-flow-title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 100%;
  background-color: #95979C;
}

.rental-cycle-wrap .rental-flow-title span {
  display: inline-block;
  background-color: #F7F7F7;
  font-size: 25px;
  width: 240px;
  position: relative;
}

.rental-cycle-wrap .rental-money-wrap {
  padding: 0 60px;
}

.rental-cycle-wrap .rental-money-wrap .rental-money {
  max-width: 1040px;
  padding: 50px 70px 30px;
  margin: 90px auto 0;
  border: solid 1px #95979C;
  position: relative;
}

.rental-cycle-wrap .rental-money-wrap .rental-money::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  margin: auto;
  width: 15px;
  height: 10px;
  background-color: #F7F7F7;
}

.rental-cycle-wrap .rental-money-wrap .rental-money::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 60px;
  background-image: linear-gradient(to bottom, #95979C, #95979C 3px, transparent 3px, transparent 8px);
  background-size: 3px 8px;
  background-position: right top;
  background-repeat: repeat-y;
}

.rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner .rental-money-en {
  position: absolute;
  top: 50%;
  left: -39px;
  font-size: 10px;
  transform: translateY(-50%) rotate(90deg);
  font-family: "Lexend", sans-serif;
  letter-spacing: 0.2em;
}

.rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner .rental-money-title {
  font-size: 25px;
  margin-right: 100px;
  margin-bottom: 20px;
  min-width: 105px;
}

.rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner .rental-money-detail {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner .rental-money-detail .rental-money-time {
  display: flex;
  align-items: center;
  margin-right: 50px;
  margin-bottom: 20px;
}

.rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner .rental-money-detail .rental-money-time dt {
  font-size: 25px;
  margin-right: 20px;
  font-weight: 600;
  line-height: 1.5;
  background: linear-gradient(transparent 60%, #FAEB97 60%);
  min-width: 121px;
}

.rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner .rental-money-detail .rental-money-time dd {
  font-weight: 500;
  font-size: 20px;
  min-width: 175px;
}

.rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner .rental-money-detail .rental-money-method {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner .rental-money-detail .rental-money-method dt {
  border: solid 1px #95979C;
  padding: 2px 5px 4px;
  margin-right: 20px;
  line-height: 1;
}

.rental-cycle-wrap .rental-flow-slider {
  opacity: 0;
  transition: opacity 0.3s linear;
}

.rental-cycle-wrap .rental-flow-slider.slick-initialized {
  opacity: 1;
}

.rental-cycle-wrap .rental-flow-slider .rental-flow-item {
  margin: 0 65px;
  max-width: 800px;
}

.rental-cycle-wrap .rental-flow-slider .rental-flow-item .rental-flow-step .number {
  font-size: 80px;
  color: #59C3E3;
  font-family: "Lexend", sans-serif;
  font-weight: 200;
  margin-right: 15px;
  line-height: 1;
  position: relative;
  bottom: -26px;
}

.rental-cycle-wrap .rental-flow-slider .rental-flow-item .rental-flow-step b {
  font-size: 20px;
  font-weight: 500;
}

.rental-cycle-wrap .rental-flow-slider .rental-flow-item .rental-flow-step b br {
  display: none;
}

.rental-cycle-wrap .rental-flow-slider .rental-flow-item .rental-flow-img {
  padding: 15px;
  border: solid 1px #95979C;
  background-color: #ffffff;
}

.rental-cycle-wrap .rental-flow-slider .rental-flow-item .rental-flow-text {
  margin: 30px auto 0;
  font-size: 15px;
}

.rental-cycle-wrap .rental-flow-slider .rental-flow-item .rental-flow-text .rental-flow-text-list li {
  text-indent: -1.1em;
  padding-left: 1.2em;
}

.rental-cycle-wrap .rental-flow-slider .rental-flow-button {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 1;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.rental-cycle-wrap .rental-flow-slider .rental-flow-button.slick-disabled {
  opacity: 0;
}

.rental-cycle-wrap .rental-flow-slider .rental-flow-button:hover {
  opacity: 0.7;
}

.rental-cycle-wrap .rental-flow-slider .rental-flow-button.rental-flow-button-next {
  right: calc(50% - 410px);
  top: 315px;
  transform: translateX(100%);
}

.rental-cycle-wrap .rental-flow-slider .rental-flow-button.rental-flow-button-next::after {
  content: "";
  position: absolute;
  background-image: url(../img/common/slidr-next.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 40px;
  height: 40px;
}

.rental-cycle-wrap .rental-flow-slider .rental-flow-button.rental-flow-button-prev {
  left: calc(50% - 414px);
  top: 315px;
  transform: translateX(-100%);
}

.rental-cycle-wrap .rental-flow-slider .rental-flow-button.rental-flow-button-prev:after {
  content: "";
  position: absolute;
  background-image: url(../img/common/slider-prev.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 40px;
  height: 40px;
}

@media screen and (max-width: 1399px) {
  .rental-cycle-wrap .rental-flow-slider .rental-flow-item {
    margin: 0 42px;
    max-width: 550px;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-item .rental-flow-step {
    display: flex;
    align-items: flex-end;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-item .rental-flow-step .number {
    font-size: 80px;
    color: #59C3E3;
    font-family: "Lexend", sans-serif;
    font-weight: 200;
    margin-right: 15px;
    line-height: 1;
    position: relative;
    bottom: -26px;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-item .rental-flow-step b {
    line-height: 1.2;
    padding-bottom: 5px;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-item .rental-flow-img {
    padding: 15px;
    border: solid 1px #95979C;
    background-color: #ffffff;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-item .rental-flow-text {
    margin: 30px auto 0;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-button {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-button.slick-disabled {
    opacity: 0;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-button.rental-flow-button-next {
    right: calc(50% - 285px);
    top: 245px;
    transform: translateX(100%);
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-button.rental-flow-button-prev {
    left: calc(50% - 295px);
    top: 245px;
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 1023px) {
  .rental-cycle-wrap .rental-flow-slider {
    width: calc(80% + 16px);
    max-width: 520px;
    margin: 0 auto;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-item {
    margin: 0 10px;
    max-width: initial;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-item .rental-flow-step .number {
    font-size: 65px;
    bottom: -3px;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-item .rental-flow-img {
    padding: 6px;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-item .rental-flow-text {
    margin: 20px auto 0;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-button.rental-flow-button-next {
    right: -28px;
    top: 208px;
    transform: none;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-button.rental-flow-button-prev {
    left: -38px;
    top: 208px;
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  .rental-cycle-wrap .rental-flow-slider .rental-flow-item .rental-flow-step b br {
    display: block;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-button {
    display: block;
    position: absolute;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-button.slick-disabled {
    opacity: 0;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-button.rental-flow-button-next {
    right: -24px;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-button.rental-flow-button-next::after {
    width: 28px;
    height: 28px;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-button.rental-flow-button-prev {
    left: -22px;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-button.rental-flow-button-prev::after {
    width: 28px;
    height: 28px;
  }
}
@media screen and (max-width: 630px) {
  .rental-cycle-wrap .rental-flow-slider {
    width: 83.5%;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-item .rental-flow-step b {
    font-size: 19px;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-button.rental-flow-button-next {
    top: calc(23.5vw + 60px);
    right: -25px;
  }
  .rental-cycle-wrap .rental-flow-slider .rental-flow-button.rental-flow-button-prev {
    top: calc(23.5vw + 60px);
    left: -22px;
  }
}
@media screen and (max-width: 319px) {
  .rental-cycle-wrap .rental-flow-slider .rental-flow-item .rental-flow-step b br {
    display: none;
  }
}
@media screen and (max-width: 1120px) {
  .rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner .rental-money-detail {
    max-width: 310px;
  }
  .rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner .rental-money-detail .rental-money-time {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .rental-cycle-wrap .rental-cycle-text {
    font-size: 15px;
  }
  .rental-cycle-wrap .rental-flow-title {
    margin: 45px auto 20px;
  }
  .rental-cycle-wrap .rental-flow-title span {
    font-size: 24px;
    width: 180px;
  }
  .rental-cycle-wrap .rental-money-wrap {
    padding: 0 20px;
  }
  .rental-cycle-wrap .rental-money-wrap .rental-money {
    max-width: 1040px;
    padding: 50px 30px 45px;
    margin: 90px auto 0;
  }
  .rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner {
    flex-wrap: wrap;
    max-width: 270px;
    margin: 0 auto;
  }
  .rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner .rental-money-en {
    display: none;
  }
  .rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner .rental-money-title {
    font-size: 24px;
    margin-right: 0;
  }
  .rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner .rental-money-detail {
    max-width: 270px;
  }
  .rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner .rental-money-detail .rental-money-time {
    margin-right: 0;
    flex-wrap: wrap;
  }
  .rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner .rental-money-detail .rental-money-time dt {
    font-size: 18px;
    min-width: 85px;
  }
  .rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner .rental-money-detail .rental-money-time dd {
    font-size: 18px;
    min-width: auto;
  }
  .rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner .rental-money-detail .rental-money-method {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner .rental-money-detail .rental-money-method dt {
    min-width: 75px;
    font-size: 15px;
  }
  .rental-cycle-wrap .rental-money-wrap .rental-money .rental-money-inner .rental-money-detail .rental-money-method dd {
    font-size: 15px;
  }
}
@media screen and (max-width: 560px) {
  .rental-cycle-wrap .rental-cycle-text {
    max-width: 420px;
    margin: 0 auto;
  }
  .rental-cycle-wrap .rental-cycle-text br {
    display: none;
  }
}
.rental-cycle2-wrap {
  background-color: #CEE5F5;
}
.rental-cycle2-wrap .rental-cycle-text {
  text-align: center;
  font-weight: 500;
}
.rental-cycle2-wrap .rental-flow-title {
  text-align: center;
  max-width: 1040px;
  margin: 50px auto;
  position: relative;
}
.rental-cycle2-wrap .rental-flow-title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 100%;
  background-color: #95979C;
}
.rental-cycle2-wrap .rental-flow-title span {
  display: inline-block;
  background-color: #CEE5F5;
  font-size: 25px;
  width: 240px;
  position: relative;
}
.rental-cycle2-wrap .rental-item-box {
  background-color: #fff;
  margin-top: 40px;
  padding: 20px;
  max-width: 1040px;
  margin: 40px auto 30px;
}
.rental-cycle2-wrap .rental-item-box .rental-item-supply {
  font-size: 13px;
  background-color: #F5F5F5;
  padding: 23px 20px 13px;
}
@media screen and (max-width: 767px) {
  .rental-cycle2-wrap .rental-item-box .rental-item-supply {
    padding: 16px;
  }
}
.rental-cycle2-wrap .rental-item-box .rental-item-supply .label {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.rental-cycle2-wrap .rental-item-box .rental-item-supply .rental-item-supply-item {
  margin-bottom: 10px;
}
.rental-cycle2-wrap .label {
  font-size: 13px;
}
.rental-cycle2-wrap .label span {
  margin-right: 10px;
  border-radius: 20px;
  padding: 3px 10px;
  font-weight: 500;
}
.rental-cycle2-wrap .label span.ono-ono {
  background-color: #E9D9EF;
}
.rental-cycle2-wrap .label span.ono-kanazawa {
  background-color: #E0EFD9;
}
.rental-cycle2-wrap .rental-item {
  display: flex;
  padding: 24px 0;
  justify-content: space-between;
  border-bottom: solid 2px #CEE5F5;
}
@media screen and (max-width: 767px) {
  .rental-cycle2-wrap .rental-item {
    display: block;
  }
}
.rental-cycle2-wrap .rental-item:last-child {
  border-bottom: none;
}
.rental-cycle2-wrap .rental-item__img {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .rental-cycle2-wrap .rental-item__img {
    width: 100%;
    margin-bottom: 16px;
  }
}
.rental-cycle2-wrap .rental-item__content {
  width: 62%;
}
@media screen and (max-width: 767px) {
  .rental-cycle2-wrap .rental-item__content {
    width: 100%;
  }
}
.rental-cycle2-wrap .rental-item__content .label {
  text-align: right;
  margin-bottom: 10px;
}
.rental-cycle2-wrap .rental-item__content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .rental-cycle2-wrap .rental-item__content h3 {
    font-size: 20px;
  }
}
.rental-cycle2-wrap .rental-item__content .content {
  font-size: 15px;
}
.rental-cycle2-wrap .rental-item__content .rental-info {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .rental-cycle2-wrap .rental-item__content .rental-info {
    display: block;
  }
}
.rental-cycle2-wrap .rental-item__content .rental-info__price p {
  display: inline;
  font-size: 24px;
  font-weight: 700;
  background-image: linear-gradient(transparent 60%, #FAEA96 40%);
  background-repeat: no-repeat;
  line-height: 1.5em;
  background-size: 100% 1.5em; /* マーカーの高さを行の高さと一致させる */
  padding: 0;
}
@media screen and (max-width: 767px) {
  .rental-cycle2-wrap .rental-item__content .rental-info__price p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .rental-cycle2-wrap .rental-item__content .rental-info__button {
    margin-top: 16px;
  }
}
.rental-cycle2-wrap .rental-item__content .reserve-button {
  display: inline-block;
  background-color: #2C83D6;
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  padding: 15px 33px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .rental-cycle2-wrap .rental-item__content .reserve-button {
    display: block;
    padding: 10px 20px;
    text-align: center;
  }
}
.rental-cycle2-wrap .rental-item__content .reserve-button:hover {
  opacity: 0.7;
}
.rental-cycle2-wrap .rental-item__content .reserve-button.disabled {
  background-color: rgba(102, 102, 102, 0.6);
}
.rental-cycle2-wrap .rental-item__content .reserve-button.disabled:hover {
  opacity: 1;
}
.rental-cycle2-wrap .other-price {
  background-color: #fff;
  display: flex;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  border: solid 1px #95979C;
}
.rental-cycle2-wrap .other-price__title {
  width: 370px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  border-right: solid 1px #95979C;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rental-cycle2-wrap .other-price__content {
  width: calc(100% - 370px);
  padding: 20px;
  text-align: center;
}
.rental-cycle2-wrap .rental-flow-items {
  max-width: 1130px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.rental-cycle2-wrap .rental-flow-items .rental-flow-item {
  width: 200px;
  font-size: 15px;
}
.rental-cycle2-wrap .rental-flow-items .rental-flow-item img {
  display: block;
  width: 165px;
  margin: 0 auto 20px;
}
.rental-cycle2-wrap .rental-flow-items .rental-flow-item h4 {
  margin-bottom: 14px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.take-out-wrap .take-out-text {
  text-align: center;
  font-weight: 500;
  margin-bottom: 50px;
}

.take-out-wrap .take-out-detail-wrap {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
  align-items: center;
}

.take-out-wrap .take-out-detail-wrap .take-out-detail {
  max-width: 400px;
  margin: 0 40px;
}

.take-out-wrap .take-out-detail-wrap .take-out-detail .take-out-detail-title {
  font-size: 28px;
}

.take-out-wrap .take-out-detail-wrap .take-out-detail .limit {
  font-size: 24px;
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  background: linear-gradient(transparent 60%, #FAEB97 60%);
}

.take-out-wrap .take-out-detail-wrap .take-out-detail .note {
  font-size: 15px;
  margin-top: 10px;
  text-indent: -1.2em;
  padding-left: 1.2em;
}

.take-out-wrap .take-out-detail-wrap .take-out-detail .take-out-detail-text-wrap {
  padding-top: 25px;
  margin-top: 25px;
  border-top: solid 1px #95979C;
}

.take-out-wrap .take-out-detail-wrap .take-out-detail .take-out-detail-text-wrap .take-out-detail-text {
  font-size: 15px;
}

.take-out-wrap .take-out-detail-wrap .take-out-detail .take-out-detail-text-wrap .take-out-detail-text:not(:last-of-type) {
  margin-bottom: 1.3em;
}

.take-out-wrap .take-out-detail-wrap .take-out-slider {
  width: 520px;
  margin: 0 40px;
  padding: 15px;
  border: solid 1px #95979C;
  background-color: #ffffff;
}

.take-out-wrap .take-out-detail-wrap .take-out-slider .take-out-button {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 1;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.take-out-wrap .take-out-detail-wrap .take-out-slider .take-out-button.slick-disabled {
  opacity: 0;
}

.take-out-wrap .take-out-detail-wrap .take-out-slider .take-out-button:hover {
  opacity: 0.7;
}

.take-out-wrap .take-out-detail-wrap .take-out-slider .take-out-button.take-out-button-next {
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
}

.take-out-wrap .take-out-detail-wrap .take-out-slider .take-out-button.take-out-button-next::after {
  content: "";
  position: absolute;
  background-image: url(../img/common/button-next.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 40px;
  height: 40px;
}

.take-out-wrap .take-out-detail-wrap .take-out-slider .take-out-button.take-out-button-prev {
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
}

.take-out-wrap .take-out-detail-wrap .take-out-slider .take-out-button.take-out-button-prev::after {
  content: "";
  position: absolute;
  background-image: url(../img/common/slider-prev.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 40px;
  height: 40px;
}

@media screen and (max-width: 1199px) {
  .take-out-wrap .take-out-text {
    margin-bottom: 30px;
  }
  .take-out-wrap .take-out-detail-wrap .take-out-detail {
    max-width: 520px;
  }
  .take-out-wrap .take-out-detail-wrap .take-out-detail .take-out-detail-title {
    font-size: 20px;
  }
  .take-out-wrap .take-out-detail-wrap .take-out-detail .limit {
    font-size: 20px;
  }
  .take-out-wrap .take-out-detail-wrap .take-out-detail .note {
    margin-top: 15px;
  }
  .take-out-wrap .take-out-detail-wrap .take-out-detail .take-out-detail-text-wrap {
    padding-top: 15px;
    margin-top: 15px;
  }
  .take-out-wrap .take-out-detail-wrap .take-out-slider {
    max-width: 520px;
    width: 88%;
    margin: 0 40px 30px;
  }
}
@media screen and (max-width: 767px) {
  .take-out-wrap .take-out-detail-wrap .take-out-detail {
    margin: 0;
  }
  .take-out-wrap .take-out-detail-wrap .take-out-detail .note {
    font-size: 14px;
  }
  .take-out-wrap .take-out-detail-wrap .take-out-slider {
    margin: 0 0 30px;
    padding: 10px;
  }
  .take-out-wrap .take-out-detail-wrap .take-out-slider .take-out-button {
    width: 28px;
    height: 28px;
  }
  .take-out-wrap .take-out-detail-wrap .take-out-slider .take-out-button.take-out-button-next {
    right: -33px;
  }
  .take-out-wrap .take-out-detail-wrap .take-out-slider .take-out-button.take-out-button-next::after {
    width: 28px;
    height: 28px;
  }
  .take-out-wrap .take-out-detail-wrap .take-out-slider .take-out-button.take-out-button-prev {
    left: -33px;
  }
  .take-out-wrap .take-out-detail-wrap .take-out-slider .take-out-button.take-out-button-prev::after {
    width: 28px;
    height: 28px;
  }
}
@media screen and (max-width: 560px) {
  .take-out-wrap .take-out-text {
    max-width: 440px;
    margin: 0 auto 30px;
  }
  .take-out-wrap .take-out-text br {
    display: none;
  }
}
.goods-wrap {
  background-color: #D9E6EF;
}

.goods-wrap .goods-text {
  text-align: center;
  font-weight: 500;
  margin-bottom: 50px;
}

.goods-wrap .goods-text span {
  display: inline-block;
}

.goods-wrap .goods-detail-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap-reverse;
}

.goods-wrap .goods-detail-wrap .goods-detail {
  max-width: 450px;
  margin: 0 55px;
}

.goods-wrap .goods-detail-wrap .goods-detail .goods-detail-text-wrap .goods-detail-text:not(:last-of-type) {
  margin-bottom: 1.3em;
}

.goods-wrap .goods-detail-wrap .goods-detail .goods-link-btn {
  text-align: right;
}

.goods-wrap .goods-detail-wrap .goods-detail .goods-link-btn a {
  text-align: center;
  display: inline-block;
  font-size: 16px;
  background-color: #D9E6EF;
  max-width: 200px;
  width: 100%;
  padding: 19px 10px;
  margin: 0 auto;
  line-height: 1;
  font-weight: 500;
  border-radius: 5px;
  margin-top: 40px;
  border: solid 1px #222222;
}

.goods-wrap .goods-detail-wrap .goods-detail .goods-link-btn a span {
  position: relative;
  padding-right: 15px;
}

.goods-wrap .goods-detail-wrap .goods-detail .goods-link-btn a span::after {
  content: "";
  position: absolute;
  margin: auto;
  top: 1px;
  bottom: 0;
  right: -10px;
  background-image: url("../img/goods/goods_icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 14px;
  height: 14px;
}

.goods-wrap .goods-detail-wrap .goods-detail .goods-link-btn a:hover {
  background-color: #ffffff;
}

.goods-wrap .goods-detail-wrap .goods-slider {
  width: 430px;
  margin: 0 40px;
  padding: 15px;
  background-color: #ffffff;
}

.goods-wrap .goods-detail-wrap .goods-slider .goods-button {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 1;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.goods-wrap .goods-detail-wrap .goods-slider .goods-button.slick-disabled {
  opacity: 0;
}

.goods-wrap .goods-detail-wrap .goods-slider .goods-button:hover {
  opacity: 0.7;
}

.goods-wrap .goods-detail-wrap .goods-slider .goods-button.goods-button-next {
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
}

.goods-wrap .goods-detail-wrap .goods-slider .goods-button.goods-button-next::after {
  content: "";
  position: absolute;
  background-image: url(../img/common/button-next.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 40px;
  height: 40px;
}

.goods-wrap .goods-detail-wrap .goods-slider .goods-button.goods-button-prev {
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
}

.goods-wrap .goods-detail-wrap .goods-slider .goods-button.goods-button-prev::after {
  content: "";
  position: absolute;
  background-image: url(../img/common/slider-prev.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 40px;
  height: 40px;
}

@media screen and (max-width: 1199px) {
  .goods-wrap .title .title-en {
    max-width: 230px;
  }
  .goods-wrap .goods-text {
    margin-bottom: 30px;
  }
  .goods-wrap .goods-detail-wrap .goods-detail {
    max-width: 520px;
  }
  .goods-wrap .goods-detail-wrap .goods-detail .goods-link-btn {
    text-align: center;
  }
  .goods-wrap .goods-detail-wrap .goods-slider-wrap {
    width: 88%;
    max-width: 520px;
    margin: 0 auto 30px;
  }
  .goods-wrap .goods-detail-wrap .goods-slider {
    width: 88%;
    max-width: 520px;
    margin: 0 40px 30px;
  }
}
@media screen and (max-width: 767px) {
  .goods-wrap .goods-detail-wrap .goods-detail {
    margin: 0;
  }
  .goods-wrap .goods-detail-wrap .goods-slider {
    margin: 0 0 30px;
    padding: 10px;
  }
  .goods-wrap .goods-detail-wrap .goods-slider .goods-button {
    width: 28px;
    height: 28px;
  }
  .goods-wrap .goods-detail-wrap .goods-slider .goods-button.goods-button-next {
    right: -33px;
  }
  .goods-wrap .goods-detail-wrap .goods-slider .goods-button.goods-button-next::after {
    width: 28px;
    height: 28px;
  }
  .goods-wrap .goods-detail-wrap .goods-slider .goods-button.goods-button-prev {
    left: -33px;
  }
  .goods-wrap .goods-detail-wrap .goods-slider .goods-button.goods-button-prev::after {
    width: 28px;
    height: 28px;
  }
}
@media screen and (max-width: 560px) {
  .goods-wrap .goods-text {
    max-width: 305px;
    margin: 0 auto 30px;
  }
  .goods-wrap .goods-text br {
    display: none;
  }
}
.instagram-wrap .instagram {
  max-width: 510px;
  margin: 0 auto;
  position: relative;
}

.instagram-wrap .instagram .instagram_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.instagram-wrap .instagram .instagram_list::before {
  content: "Instagram";
  position: absolute;
  top: 50%;
  font-size: 10px;
  transform: translateY(-50%) rotate(90deg);
  font-family: "Lexend", sans-serif;
  display: flex;
  letter-spacing: 0.2em;
  left: -58px;
}

.instagram-wrap .instagram .instagram_list::after {
  content: "Instagram";
  position: absolute;
  top: 50%;
  font-size: 10px;
  transform: translateY(-50%) rotate(90deg);
  font-family: "Lexend", sans-serif;
  display: flex;
  letter-spacing: 0.2em;
  right: -55px;
}

.instagram-wrap .instagram .instagram_list .instagram_list_item {
  margin: 2.5px;
  width: calc(33.3333333333% - 5px);
}

.instagram-wrap .instagram .instagram_list .instagram_list_item a {
  display: block;
  box-shadow: 0 0 3px rgba(120, 120, 120, 0.2);
}

.instagram-wrap .instagram .instagram_list .instagram_list_item a:hover {
  opacity: 0.6;
}

.instagram-wrap .instagram .instagram_link {
  margin-top: 30px;
}

.instagram-wrap .instagram .instagram_link a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.instagram-wrap .instagram .instagram_link a:hover {
  opacity: 0.6;
}

.instagram-wrap .instagram .instagram_link a .text01 {
  font-size: 12px;
  font-family: "Lexend", sans-serif;
  color: #59C3E3;
}

.instagram-wrap .instagram .instagram_link a .icon {
  width: 25px;
  margin: 0 15px;
}

.instagram-wrap .instagram .instagram_link a .icon img {
  display: block;
}

.instagram-wrap .instagram .instagram_link a .text02 {
  text-decoration: underline;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .instagram-wrap .instagram .instagram_list::before {
    content: none;
  }
  .instagram-wrap .instagram .instagram_list::after {
    content: none;
  }
  .instagram-wrap .instagram .instagram_link {
    margin-top: 25px;
  }
  .instagram-wrap .instagram .instagram_link a {
    flex-wrap: wrap;
  }
  .instagram-wrap .instagram .instagram_link a:hover {
    opacity: 0.6;
  }
}
.access-wrap {
  background-color: #F6F6F6;
  position: relative;
}

.access-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #DDDDDD;
  width: calc(50% - 195px);
  height: 100%;
}

.access-wrap.section-top {
  padding-bottom: 0;
}

.access-wrap .access {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 90px;
  padding: 0 40px;
}

.access-wrap .access .access-img {
  max-width: 520px;
  padding: 10px;
  border: solid 1px #95979C;
  background-color: #ffffff;
  position: relative;
}

.access-wrap .access .access-text {
  margin-left: 60px;
  min-width: 335px;
}

.access-wrap .access .access-text .shop-name {
  font-size: 25px;
  margin-bottom: 40px;
}

.access-wrap .access .access-text .shop-name span {
  display: inline-block;
}

.access-wrap .access .access-text .shop-detail {
  display: flex;
  font-size: 15px;
}

.access-wrap .access .access-text .shop-detail dt {
  min-width: 100px;
  position: relative;
}

.access-wrap .access .access-text .shop-detail dt::after {
  content: "：";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
}

.access-wrap .gmap {
  height: 460px;
  position: relative;
}

.access-wrap .gmap iframe {
  height: 460px;
  width: 100%;
}

@media screen and (max-width: 900px) {
  .access-wrap .access .access-text .shop-name {
    margin-bottom: 15px;
  }
  .access-wrap .gmap {
    height: 400px;
  }
  .access-wrap .gmap iframe {
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .access-wrap::before {
    content: none;
  }
  .access-wrap .access {
    flex-wrap: wrap;
    margin-bottom: 0;
    padding: 0;
  }
  .access-wrap .access .access-img {
    padding: 0;
    border: 0;
    max-width: 100%;
  }
  .access-wrap .access .access-text {
    min-width: auto;
    margin: 30px auto 40px;
    padding: 0 20px;
  }
  .access-wrap .access .access-text .shop-name {
    margin-bottom: 20px;
  }
  .access-wrap .gmap {
    height: 230px;
  }
  .access-wrap .gmap iframe {
    height: 230px;
  }
}
footer {
  background-color: #222222;
}

footer .footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 0 50px 0;
  position: relative;
}

footer .footer-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 70px;
}

footer .footer-box .footer-container {
  max-width: 220px;
}

footer .footer-box .footer-container .footerLogo {
  display: block;
  margin-bottom: 30px;
}

footer .footer-box .footer-container .footerLogo:hover {
  opacity: 0.6;
}

footer .footer-box .footer-container .footer-instagram {
  color: #ffffff;
  display: flex;
  justify-content: left;
  align-items: center;
}

footer .footer-box .footer-container .footer-instagram:hover {
  opacity: 0.6;
}

footer .footer-box .footer-container .footer-instagram .footer-instagram-text {
  margin-right: 15px;
  font-size: 12px;
  font-family: "Lexend", sans-serif;
}

footer .footer-box .footer-container .footer-instagram .footer-instagram-icon {
  width: 25px;
}

footer .footer-box .footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  margin: 15px 30px 0;
}

footer .footer-box .footer-nav-list .footer-nav-list-item a {
  font-size: 14px;
  display: inline-block;
  margin: 10px 20px;
  color: #ffffff;
  position: relative;
}

footer .footer-box .footer-nav-list .footer-nav-list-item a:hover {
  opacity: 0.6;
}

footer .footer-box .footer-nav-list .footer-nav-list-item a::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: -15px;
  width: 6px;
  height: 6px;
  transform: rotate(135deg) skew(10deg, 10deg);
  transform: rotate(135deg);
  border-left: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

footer .footer-box .footer-nav-list .footer-nav-list-item a:hover::before {
  left: -13px;
}

footer .footer-box .footer-banner {
  max-width: 180px;
}

footer .footer-box .footer-banner:hover {
  opacity: 0.6;
}

footer .copyright {
  color: #ffffff;
  text-align: center;
  font-size: 11px;
  display: block;
}

@media screen and (max-width: 767px) {
  footer .footer-inner {
    padding: 35px 50px 40px 20px;
    position: relative;
  }
  footer .footer-box {
    justify-content: space-between;
    margin-bottom: 25px;
  }
  footer .footer-box .footer-container {
    max-width: 180px;
    margin-bottom: 20px;
  }
  footer .footer-box .footer-container .footerLogo {
    margin-bottom: 15px;
  }
  footer .footer-box .footer-nav-list {
    margin: 0 0 30px 0;
  }
  footer .footer-box .footer-nav-list .footer-nav-list-item a {
    font-size: 13px;
  }
  footer .footer-box .footer-nav-list .footer-nav-list-item a {
    min-width: 110px;
  }
  footer .copyright {
    text-align: left;
  }
}
.news-page {
  margin-top: 95px;
}

.news-page .title .title-en {
  font-size: 50px;
}

.news-page .news-firstview {
  padding: 100px 0 75px;
}

@media screen and (max-width: 1399px) {
  .news-page {
    margin-top: 85px;
  }
}
@media screen and (max-width: 1023px) {
  .news-page {
    margin-top: 64px;
  }
  .news-page .news-firstview {
    padding: 50px 0 0;
  }
}
.news-area {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 150px;
  padding: 0 40px;
}

.news-main-area {
  max-width: 800px;
  width: 100%;
}

.news-main-area .news-report-wrap .news-report {
  padding-top: 20px;
  margin-bottom: 80px;
}

.news-main-area .news-report-wrap .news-report .news-info {
  margin-bottom: 40px;
}

.news-main-area .news-report-wrap .news-report .news-info .news-time {
  font-size: 16px;
  margin-bottom: 5px;
  margin-right: 15px;
  margin-left: 40px;
  display: inline-block;
}

.news-main-area .news-report-wrap .news-report .news-info .news-category {
  min-width: 80px;
  padding: 0 8px;
  font-size: 13px;
  background-color: #D9E6EF;
  text-align: center;
  display: inline-block;
  font-weight: 500;
  line-height: 1.9;
}

.news-main-area .news-report-wrap .news-report .news-info .news-title {
  margin-top: 5px;
  font-size: 28px;
  letter-spacing: 0.01em;
  border-bottom: solid 1px #222222;
  padding: 0 40px 30px 40px;
  margin-bottom: 30px;
}

.news-main-area .news-report-wrap .news-report .news-content {
  font-size: 16px;
  line-height: 2;
  padding: 0 40px;
}

.news-main-area .news-single-nav {
  position: relative;
  margin-top: 60px;
  letter-spacing: 0.026em;
}

.news-main-area .news-single-nav span {
  position: absolute;
  display: inline-block;
  font-size: 15px;
}

.news-main-area .news-single-nav span a:hover {
  color: #49BBBC;
}

.news-main-area .news-single-nav .link-prev {
  left: 35px;
  z-index: 1;
}

.news-main-area .news-single-nav .link-prev a {
  display: block;
  position: relative;
}

.news-main-area .news-single-nav .link-prev a::before {
  position: absolute;
  content: "";
  margin: auto;
  top: 0;
  bottom: 0;
  left: -25px;
  width: 13px;
  height: 13px;
  transform: rotate(135deg) skew(10deg, 10deg);
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.news-main-area .news-single-nav .link-prev a:hover::before {
  border-right: 1px solid #49BBBC;
  border-bottom: 1px solid #49BBBC;
}

.news-main-area .news-single-nav .link-news-top {
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.news-main-area .news-single-nav .link-next {
  right: 35px;
}

.news-main-area .news-single-nav .link-next a {
  display: block;
  position: relative;
}

.news-main-area .news-single-nav .link-next a::before {
  position: absolute;
  content: "";
  margin: auto;
  top: 0;
  bottom: 0;
  right: -25px;
  width: 13px;
  height: 13px;
  transform: rotate(135deg) skew(10deg, 10deg);
  border-left: 1px solid #707070;
  border-top: 1px solid #707070;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.news-main-area .news-single-nav .link-next a:hover::before {
  border-left: 1px solid #49BBBC;
  border-top: 1px solid #49BBBC;
}

@media all and (-ms-high-contrast: none) {
  .news-main-area .news-single-nav .link-prev a::before {
    transform: rotate(135deg);
  }
  .news-main-area .news-single-nav .link-next a::before {
    transform: rotate(135deg);
  }
}
.news-sub-area {
  margin-left: 6.5vw;
  min-width: 200px;
}

.news-sub-area .archives-wrap .archives-title {
  border-bottom: solid 1px #222222;
  padding: 0 0 10px;
  margin-bottom: 10px;
  letter-spacing: 0.3em;
  font-size: 18px;
  font-weight: 600;
}

.news-sub-area .archives-wrap .archives li a {
  padding: 15px 20px 15px 0px;
  display: block;
  position: relative;
  font-size: 16px;
}

.news-sub-area .archives-wrap .archives li a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1023px) {
  .news-area {
    display: block;
    margin: 0 auto 80px;
  }
  .news-main-area {
    margin: 0 auto;
  }
  .news-main-area .news-report-wrap .news-report .news-info {
    margin-bottom: 20px;
  }
  .news-main-area .news-report-wrap .news-report .news-info .news-time {
    margin-bottom: 10px;
    margin-left: 0;
  }
  .news-main-area .news-report-wrap .news-report .news-info .news-category {
    font-size: 13px;
    line-height: 1.6;
  }
  .news-main-area .news-report-wrap .news-report .news-info .news-title {
    margin-top: 0px;
    font-size: 22px;
    letter-spacing: 0.05em;
    padding: 0 0 20px;
    margin-bottom: 20px;
  }
  .news-main-area .news-report-wrap .news-report .news-content {
    font-size: 16px;
    line-height: 2;
    padding: 0;
  }
  .news-main-area .news-single-nav {
    margin-top: 30px;
    display: block;
    min-height: 24px;
    margin-bottom: 40px;
  }
  .news-main-area .news-single-nav .link-prev {
    left: 25px;
  }
  .news-main-area .news-single-nav .link-prev a::before {
    left: -16px;
  }
  .news-main-area .news-single-nav .link-next {
    right: 25px;
  }
  .news-main-area .news-single-nav .link-next a::before {
    right: -16px;
  }
  .news-sub-area {
    margin-left: 0;
    max-width: 350px;
    margin: 0 auto;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .news-area {
    padding: 0 20px;
  }
  .news-single-page .news-area {
    padding: 0 10px;
  }
  .news-main-area .news-single-nav .link-prev {
    left: 25px;
  }
  .news-main-area .news-single-nav .link-prev a::before {
    left: -16px;
  }
  .news-main-area .news-single-nav .link-next {
    right: 25px;
  }
  .news-main-area .news-single-nav .link-next a::before {
    right: -16px;
  }
}
.news-content {
  word-wrap: break-word;
}

.news-content img {
  margin-bottom: 30px;
}

.news-content h1, .news-content h2, .news-content h3, .news-content h4, .news-content h5, .news-content h6 {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.news-content h1 img, .news-content h2 img, .news-content h3 img, .news-content h4 img, .news-content h5 img, .news-content h6 img {
  margin-bottom: 0;
}

.news-content p {
  margin-bottom: 30px;
}

.news-content p img {
  margin-bottom: 0;
}

.news-content ul {
  margin-left: 1.5em;
  margin-bottom: 30px;
  letter-spacing: 0.08em;
  list-style-type: disc;
}

.news-content ul li {
  position: relative;
}

.news-content ul li::before {
  content: "・";
  content: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.45em;
  margin: auto;
}

.news-content ol {
  list-style-type: decimal;
  margin-left: 1.6em;
  margin-bottom: 30px;
  letter-spacing: 0.08em;
}

.news-content a {
  text-decoration: underline;
  letter-spacing: 0.08em;
}

.news-content a:hover {
  opacity: 0.6;
}

.news-content table {
  margin-bottom: 30px;
}

.news-content table tr th {
  border: solid 1px #707070;
  padding: 0 5px;
  background-color: #707070;
  color: #fff;
  font-weight: 500;
  text-align: left;
}

.news-content table tr td {
  border: solid 1px #707070;
  padding: 0 5px;
  background-color: #ffffff;
}

@media screen and (max-width: 767px) {
  .news-content img {
    margin-bottom: 20px;
  }
  .news-content p {
    letter-spacing: 0.03em;
    margin-bottom: 20px;
  }
  .news-content ul {
    margin-left: 1.3em;
    font-size: 13px;
    margin-bottom: 20px;
  }
  .news-content ol {
    margin-left: 1.6em;
    font-size: 13px;
    margin-bottom: 20px;
  }
  .news-content table {
    margin-bottom: 20px;
  }
}
.about-page {
  margin-top: 95px;
}

@media screen and (max-width: 1399px) {
  .about-page {
    margin-top: 85px;
  }
}
@media screen and (max-width: 1023px) {
  .about-page {
    margin-top: 64px;
  }
  .about-wrap.section-top {
    padding-top: 70px;
  }
}
.about-wrap.section-top {
  padding-bottom: 50px;
}

.about-wrap .title .title-en {
  font-size: 50px;
}

.about-wrap .about-text {
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 2.2;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 60px;
}

.about-wrap .about-img-pc {
  max-width: 600px;
  margin: 0 auto;
}

.about-wrap .about-img-sp {
  max-width: 440px;
  margin: 0 auto;
  display: none;
}

@media screen and (max-width: 767px) {
  .about-wrap .about-img-pc {
    display: none;
  }
  .about-wrap .about-img-sp {
    display: block;
  }
}
@media screen and (max-width: 560px) {
  .about-wrap .about-text {
    max-width: 360px;
    margin: 0 auto 50px;
  }
  .about-wrap .about-text br {
    display: none;
  }
}
.thoughts-wrap .thoughts-text {
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 2.2;
  font-size: 15px;
  font-weight: bold;
}

.thoughts-wrap .thoughts-detail-wrap {
  margin-top: 60px;
}

.thoughts-wrap .thoughts-detail-wrap .mr50 {
  margin-right: 50px;
}

.thoughts-wrap .thoughts-detail-wrap .thoughts-detail {
  display: flex;
  align-items: center;
  justify-content: center;
}

.thoughts-wrap .thoughts-detail-wrap .thoughts-detail:not(:last-of-type) {
  margin-bottom: 100px;
}

.thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-img {
  padding: 15px;
  border: solid 1px #95979C;
  max-width: 475px;
  position: relative;
}

.thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-img.left figcaption {
  left: -40px;
}

.thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-img.right figcaption {
  right: -40px;
}

.thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-img figcaption {
  position: absolute;
  top: 50%;
  writing-mode: vertical-rl;
  font-size: 10px;
  transform: translateY(-50%);
  font-family: "Lexend", sans-serif;
  display: flex;
  letter-spacing: 0.2em;
}

.thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-img figcaption span {
  display: block;
}

.thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-img figcaption .times {
  padding: 2px 0;
}

.thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-text {
  max-width: 540px;
}

.thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-text .thoughts-detail-title {
  font-size: 24px;
  margin: 35px 0 30px;
}

.thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-text .thoughts-detail-title br {
  display: none;
}

.thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-text .thoughts-detail-title span {
  display: inline-block;
}

.thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-text p {
  font-size: 15px;
  line-height: 1.8;
}

@media screen and (max-width: 1399px) {
  .thoughts-wrap .thoughts-detail-wrap {
    padding: 0 40px;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-img.left figcaption {
    left: -25px;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-img.right figcaption {
    right: -25px;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-text {
    max-width: 480px;
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .thoughts-wrap .thoughts-detail-wrap .mr50 {
    margin-right: 20px;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-img {
    max-width: 355px;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-img.left figcaption {
    left: -20px;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-img.right figcaption {
    right: -20px;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-text {
    max-width: 350px;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-text .thoughts-detail-title {
    margin: 20px 0 15px;
    font-size: 17px;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-text p {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .thoughts-wrap .thoughts-detail-wrap {
    padding: 0;
  }
  .thoughts-wrap .thoughts-detail-wrap .mr50 {
    margin-right: 0;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail:nth-last-of-type(even) {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail:nth-last-of-type(odd) {
    flex-wrap: wrap-reverse;
    justify-content: flex-start;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail:not(:last-of-type) {
    margin-bottom: 70px;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-img {
    padding: 10px;
    max-width: 635px;
    position: relative;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-img.left {
    padding-right: 0;
    border-right: none;
    margin-left: 30px;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-img.left figcaption {
    left: -20px;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-img.right {
    padding-left: 0;
    border-left: none;
    margin-right: 30px;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-img.right figcaption {
    right: -20px;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-text {
    margin: 0 auto;
    padding: 30px 25px 0;
    max-width: 540px;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-text .thoughts-detail-title {
    font-size: 24px;
    margin: 35px 0 30px;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-text .thoughts-detail-title br {
    display: block;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-text p {
    font-size: 15px;
  }
}
@media screen and (max-width: 560px) {
  .thoughts-wrap .thoughts-text {
    max-width: 360px;
    margin: 0 auto;
  }
  .thoughts-wrap .thoughts-text br {
    display: none;
  }
}
@media all and (-ms-high-contrast: none) {
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail .thoughts-detail-img figcaption {
    transform: translateY(-50%) rotate(90deg);
    justify-content: center;
    align-items: center;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail:nth-of-type(1) .thoughts-detail-img.left figcaption {
    left: -60px;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail:nth-of-type(2) .thoughts-detail-img.right figcaption {
    right: -95px;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail:nth-of-type(3) .thoughts-detail-img.left figcaption {
    left: -75px;
  }
  .thoughts-wrap .thoughts-detail-wrap .thoughts-detail:nth-of-type(4) .thoughts-detail-img.right figcaption {
    right: -100px;
  }
}
.reserve-page .reserve-wrap .title {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  padding: 100px 0 75px;
}
@media screen and (max-width: 767px) {
  .reserve-page .reserve-wrap .title {
    padding: 70px 0 40px;
  }
}
.reserve-page .reserve-wrap .title-en {
  font-family: "Lexend", sans-serif;
  font-size: 50px;
  line-height: 1;
  display: inline-block;
  letter-spacing: 0.02em;
  font-weight: 500;
  position: relative;
  margin-bottom: 15px;
}
.reserve-page .reserve-wrap .title-ja {
  font-size: 19px;
}
.reserve-page .reserve-wrap .reserve-text {
  background-color: #f2f2f2;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.85;
  padding: 20px 24px;
}
.reserve-page .reserve-wrap .reserve-text span {
  font-size: 16px;
}
.reserve-page .reserve-wrap .contact-form {
  max-width: 800px;
  width: 100%;
  margin: 40px auto;
  font-size: 16px;
}
.reserve-page .reserve-wrap .contact-form .form-item-label {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .reserve-page .reserve-wrap .contact-form .form-item-label {
    font-size: 14px;
  }
}
.reserve-page .reserve-wrap .contact-form .form-item-label span {
  color: #F44335;
}
.reserve-page .reserve-wrap .contact-form .contact-form-item-wrap {
  display: flex;
  -moz-column-gap: 100px;
       column-gap: 100px;
}
@media screen and (max-width: 767px) {
  .reserve-page .reserve-wrap .contact-form .contact-form-item-wrap {
    display: block;
  }
}
.reserve-page .reserve-wrap .contact-form .contact-form-item {
  margin-bottom: 35px;
}
.reserve-page .reserve-wrap .contact-form .contact-form-item.agree {
  text-align: center;
}
.reserve-page .reserve-wrap .contact-form .contact-form-item.agree p {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .reserve-page .reserve-wrap .contact-form .contact-form-item.agree p {
    font-size: 12px;
    text-align: left;
  }
}
.reserve-page .reserve-wrap .contact-form input, .reserve-page .reserve-wrap .contact-form select {
  width: 100%;
  padding: 13px;
  font-size: 16px;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .reserve-page .reserve-wrap .contact-form input, .reserve-page .reserve-wrap .contact-form select {
    font-size: 14px;
  }
}
.reserve-page .reserve-wrap .contact-form input.cycle, .reserve-page .reserve-wrap .contact-form select.cycle {
  width: 525px;
  max-width: 100%;
}
.reserve-page .reserve-wrap .contact-form input[name=reserve_date], .reserve-page .reserve-wrap .contact-form input.reserve_time, .reserve-page .reserve-wrap .contact-form input.from, .reserve-page .reserve-wrap .contact-form input.to, .reserve-page .reserve-wrap .contact-form select[name=reserve_date], .reserve-page .reserve-wrap .contact-form select.reserve_time, .reserve-page .reserve-wrap .contact-form select.from, .reserve-page .reserve-wrap .contact-form select.to {
  width: 250px;
  max-width: 100%;
}
.reserve-page .reserve-wrap .contact-form input[name=reserve_date], .reserve-page .reserve-wrap .contact-form input.from, .reserve-page .reserve-wrap .contact-form select[name=reserve_date], .reserve-page .reserve-wrap .contact-form select.from {
  margin-bottom: 12px;
}
.reserve-page .reserve-wrap .contact-form input#agree-1, .reserve-page .reserve-wrap .contact-form select#agree-1 {
  width: 16px;
  position: relative;
  top: 1px;
}
.reserve-page .reserve-wrap .contact-form .sub-label {
  margin-right: 12px;
}
.reserve-page .reserve-wrap .contact-form .contact-button-wrap {
  text-align: center;
}
.reserve-page .reserve-wrap .contact-form .contact-button-wrap .submit-button-wrap {
  position: relative;
}
.reserve-page .reserve-wrap .contact-form .contact-button-wrap .submit-button-wrap .button-arrow-wrap {
  position: absolute;
  top: 45%;
  right: 35%; /* Safari用 */
  transform: translate(0, -50%);
}
.reserve-page .reserve-wrap .contact-form .contact-button-wrap .return__btn {
  cursor: pointer;
  padding: 0;
  margin: 30px 0;
  width: auto;
  text-decoration: underline;
  border: none;
  background: none;
}
.reserve-page .reserve-wrap .contact-form .contact-button-wrap .btn-lineblue {
  cursor: pointer;
  background-color: #2C83D6;
  color: #fff;
  font-size: 15px;
  border: none;
  box-shadow: none;
  border-radius: 40px;
  width: 280px;
  margin: 0;
  padding: 20px 10px;
  letter-spacing: 0.03em;
}
.reserve-page .front-news-wrap {
  position: relative;
}
.reserve-page .news-board {
  position: relative;
  max-width: 1100px;
  margin: 40px auto 0;
}
.reserve-page .news-board__decor {
  position: relative;
  min-height: 171px; /* ラインとバッジ群の高さに合わせる */
}
.reserve-page .news-board__line {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 1px;
  background: #d9d9d9;
  width: 810px; /* Figma参照値 */
  max-width: calc(100% - 330px);
}
.reserve-page .news-board__line--top {
  top: 0;
}
.reserve-page .news-board__line--mid {
  top: 54px;
}
.reserve-page .news-board__line--bot {
  top: 108px;
}
.reserve-page .news-board__badges {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.reserve-page .news-badge {
  background: #261f1c;
  color: #fff;
  height: 54px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 24px;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.reserve-page .news-list {
  list-style: none;
  margin: 14px 0 0; /* ライン群の直後 */
  padding: 0;
  width: 683px; /* Figma参照値 */
  margin-left: 215px; /* 左寄せ位置 */
}
@media screen and (max-width: 1023px) {
  .reserve-page .news-list {
    margin-left: 0;
    width: auto;
  }
}
.reserve-page .news-list__item {
  margin: 18px 0;
}
.reserve-page .news-list__link {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: inherit;
}
.reserve-page .news-list__date {
  font-size: 14px;
}
.reserve-page .news-list__pill {
  background: #78cbd1;
  color: #fff;
  border-radius: 3px;
  font-size: 12px;
  padding: 4px 10px;
  white-space: nowrap;
}
.reserve-page .news-list__title {
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
@media screen and (max-width: 1023px) {
  .reserve-page .news-board {
    margin: 28px 20px 0;
  }
  .reserve-page .news-board__line {
    width: auto;
    max-width: none;
    left: 20px;
    right: 20px;
  }
  .reserve-page .news-board__badges {
    right: 20px;
  }
  .reserve-page .news-badge {
    height: 44px;
    font-size: 20px;
  }
  .reserve-page .news-list {
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }
}
.reserve-page .policy {
  background-color: #F0F0F0;
  font-size: 14px;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .reserve-page .policy {
    padding: 60px 0;
  }
}
.reserve-page .policy .mainWidth {
  max-width: 800px;
  margin: 0 auto;
}
.reserve-page .policy .inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.reserve-page .policy .title {
  font-size: 16px;
  text-align: left;
  margin-bottom: 16px;
}
.reserve-page .policy .title.second {
  margin-top: 60px;
}
.reserve-page .policy ul {
  list-style-type: disc;
  margin-left: 20px;
}
.reserve-page .policy ul li {
  margin-bottom: 20px;
}
.reserve-page .policy p {
  margin-bottom: 40px;
}
.reserve-page .mw_wp_form_confirm .contact-form-item.agree {
  display: none;
}
.reserve-page .mw_wp_form_complete p {
  text-align: center;
  padding: 60px 150px;
}

.travel-kururu-button {
  display: flex;
  justify-content: flex-start;
  margin-top: 26px;
}
.travel-kururu-button a {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 20px;
  color: #78cbd1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.travel-kururu-button a:after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url(../img/take-out/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.travel-kururu-button a:hover {
  color: #fff;
  background: #78cbd1;
}
.travel-kururu-button a:hover::after {
  background-image: url(../img/take-out/arrow-hover.svg);
}

.front-travel-kururu {
  position: relative;
  padding: 60px 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 1023px) {
  .front-travel-kururu {
    display: none;
  }
}
.front-travel-kururu .mainWidth {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.front-travel-kururu .travel-kururu-container {
  position: relative;
  background: #def4f5;
  border-radius: 100px;
  padding: 118px 65px 90px;
  margin-right: 0;
  z-index: 10;
}
.front-travel-kururu .travel-kururu-decoration {
  position: absolute;
  left: -110px;
  top: -30px;
  transform: rotate(-6.667deg);
}
.front-travel-kururu .travel-kururu-decoration .travel-kururu-decoration-line {
  width: 391px;
  height: 67px;
  background: #78cbd1;
  margin-bottom: -50px;
}
.front-travel-kururu .travel-kururu-decoration .travel-kururu-decoration-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  color: #000;
  white-space: nowrap;
  position: relative;
  top: 10px;
  left: 30px;
  margin: 0;
}
.front-travel-kururu .travel-kururu-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 17px;
  position: relative;
  z-index: 1;
}
.front-travel-kururu .travel-kururu-header .travel-kururu-title-dot {
  width: 20px;
  height: 20px;
  background: #78cbd1;
  border-radius: 50%;
  flex-shrink: 0;
}
.front-travel-kururu .travel-kururu-header .travel-kururu-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin: 0;
  white-space: nowrap;
}
.front-travel-kururu .travel-kururu-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 58px;
  margin-bottom: 40px;
}
.front-travel-kururu .travel-kururu-images {
  width: 430px;
}
.front-travel-kururu .travel-kururu-images .travel-kururu-image-item {
  border-radius: 3px;
  overflow: hidden;
}
.front-travel-kururu .travel-kururu-images .travel-kururu-image-item.travel-kururu-image-1 {
  width: 191px;
  height: 135px;
  grid-column: 1;
  grid-row: 1;
}
.front-travel-kururu .travel-kururu-images .travel-kururu-image-item.travel-kururu-image-2 {
  width: 139px;
  height: 164px;
  grid-column: 2;
  grid-row: 1;
}
.front-travel-kururu .travel-kururu-images .travel-kururu-image-item.travel-kururu-image-3 {
  width: 225px;
  height: 160px;
  grid-column: 1/3;
  grid-row: 2;
}
.front-travel-kururu .travel-kururu-images .travel-kururu-image-item.travel-kururu-image-4 {
  width: 186px;
  height: 132px;
  grid-column: 2;
  grid-row: 3;
  margin-top: -28px;
}
.front-travel-kururu .travel-kururu-images .travel-kururu-image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.front-travel-kururu .travel-kururu-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #000;
  width: 464px;
}
.front-travel-kururu .travel-kururu-text p {
  margin: 0;
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  .front-travel-kururu {
    padding: 40px 0;
    margin-bottom: 40px;
  }
  .front-travel-kururu .travel-kururu-container {
    margin-left: 0;
    border-radius: 16px;
    padding: 40px 20px 60px;
  }
  .front-travel-kururu .travel-kururu-decoration {
    position: static;
    transform: none;
    margin-bottom: 20px;
  }
  .front-travel-kururu .travel-kururu-decoration .travel-kururu-decoration-line {
    width: 100%;
    max-width: 300px;
    height: 40px;
    margin-bottom: 10px;
  }
  .front-travel-kururu .travel-kururu-decoration .travel-kururu-decoration-text {
    font-size: 16px;
    position: static;
    left: 0;
    top: 0;
  }
  .front-travel-kururu .travel-kururu-header {
    margin-bottom: 40px;
  }
  .front-travel-kururu .travel-kururu-header .travel-kururu-title {
    font-size: 20px;
    white-space: normal;
  }
  .front-travel-kururu .travel-kururu-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .front-travel-kururu .travel-kururu-images {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 12px;
  }
  .front-travel-kururu .travel-kururu-images .travel-kururu-image-item {
    width: 100% !important;
    height: auto;
    aspect-ratio: 4/3;
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
  }
  .front-travel-kururu .travel-kururu-text {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
  }
  .front-travel-kururu .travel-kururu-screenshot {
    width: 100%;
    max-width: 192px;
    height: auto;
    aspect-ratio: 192/174;
  }
}
@media screen and (max-width: 767px) {
  .front-travel-kururu .travel-kururu-container {
    padding: 30px 16px 40px;
  }
  .front-travel-kururu .travel-kururu-decoration .travel-kururu-decoration-line {
    height: 30px;
  }
  .front-travel-kururu .travel-kururu-decoration .travel-kururu-decoration-text {
    font-size: 14px;
  }
  .front-travel-kururu .travel-kururu-header .travel-kururu-title {
    font-size: 18px;
  }
  .front-travel-kururu .travel-kururu-images {
    gap: 8px;
  }
  .front-travel-kururu .travel-kururu-text {
    font-size: 13px;
    line-height: 22px;
  }
}

.product-page {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.travel-kururu-page {
  padding-top: 120px;
}
@media screen and (max-width: 1023px) {
  .travel-kururu-page {
    padding-top: 80px;
  }
}
.travel-kururu-page .travel-kururu-hero {
  position: relative;
  margin-bottom: 80px;
  max-width: 1330px;
  margin: 0 auto;
}
.travel-kururu-page .travel-kururu-hero .button-instagram {
  width: 180px;
  position: absolute;
  right: 0;
  bottom: -87px;
  transition: all 0.3s ease;
}
.travel-kururu-page .travel-kururu-hero .button-instagram:hover {
  opacity: 0.7;
}
.travel-kururu-page .travel-kururu-catch {
  margin-bottom: 60px;
}
.travel-kururu-page .travel-kururu-catch .travel-kururu-catch-title {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 32px;
  text-align: center;
  letter-spacing: 1.26px;
  color: #000;
  padding-top: 103px;
}
.travel-kururu-page .travel-kururu-description {
  margin-bottom: 120px;
}
.travel-kururu-page .travel-kururu-description .travel-kururu-description-text {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: medium;
  line-height: 32px;
  text-align: center;
  letter-spacing: 1.26px;
  color: #000;
  max-width: 800px;
  margin: 0 auto;
}
.travel-kururu-page .travel-kururu-grid {
  margin-bottom: 120px;
}
@media screen and (max-width: 1023px) {
  .travel-kururu-page .travel-kururu-grid {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
.travel-kururu-page .travel-kururu-grid .travel-kururu-swiper-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.travel-kururu-page .travel-kururu-grid .travel-kururu-swiper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .travel-kururu-page .travel-kururu-grid .travel-kururu-swiper {
    max-width: 290px;
  }
}
.travel-kururu-page .travel-kururu-grid .travel-kururu-grid-item {
  position: relative;
  height: auto;
}
.travel-kururu-page .travel-kururu-grid .travel-kururu-grid-item .travel-kururu-grid-item-image {
  width: 100%;
  height: 275px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .travel-kururu-page .travel-kururu-grid .travel-kururu-grid-item .travel-kururu-grid-item-image {
    height: 145px;
  }
}
.travel-kururu-page .travel-kururu-grid .travel-kururu-grid-item .travel-kururu-grid-item-image:hover {
  opacity: 0.8;
}
.travel-kururu-page .travel-kururu-grid .travel-kururu-grid-item .travel-kururu-grid-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.travel-kururu-page .travel-kururu-grid .travel-kururu-swiper-button-next,
.travel-kururu-page .travel-kururu-grid .travel-kururu-swiper-button-prev {
  width: 32px;
  height: 32px;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
  color: transparent;
  background: transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.travel-kururu-page .travel-kururu-grid .travel-kururu-swiper-button-next::after,
.travel-kururu-page .travel-kururu-grid .travel-kururu-swiper-button-prev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.travel-kururu-page .travel-kururu-grid .travel-kururu-swiper-button-next:hover,
.travel-kururu-page .travel-kururu-grid .travel-kururu-swiper-button-prev:hover {
  opacity: 0.7;
}
.travel-kururu-page .travel-kururu-grid .travel-kururu-swiper-button-next {
  right: 0;
}
@media screen and (max-width: 1023px) {
  .travel-kururu-page .travel-kururu-grid .travel-kururu-swiper-button-next {
    right: -10px;
  }
}
.travel-kururu-page .travel-kururu-grid .travel-kururu-swiper-button-next::after {
  background-image: url(../img/common/slider-next.svg);
}
.travel-kururu-page .travel-kururu-grid .travel-kururu-swiper-button-prev {
  left: 0;
}
@media screen and (max-width: 1023px) {
  .travel-kururu-page .travel-kururu-grid .travel-kururu-swiper-button-prev {
    left: -10px;
  }
}
.travel-kururu-page .travel-kururu-grid .travel-kururu-swiper-button-prev::after {
  background-image: url(../img/common/slider-prev.svg);
}
.travel-kururu-page .travel-kururu-grid .swiper-button-disabled {
  opacity: 0.3;
}
.travel-kururu-page .travel-kururu-notice {
  margin: 32px 0 120px;
  font-size: 16px;
  color: #000;
  text-align: center;
  line-height: 32px;
  letter-spacing: 1.12px;
}
.travel-kururu-page .travel-kururu-instagram {
  margin-bottom: 120px;
}
.travel-kururu-page .travel-kururu-instagram .travel-kururu-instagram-link {
  text-align: center;
  max-width: 200px;
  margin: 0 auto;
}
.travel-kururu-page .travel-kururu-instagram .travel-kururu-instagram-link .travel-kururu-instagram-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
}
.travel-kururu-page .travel-kururu-instagram .travel-kururu-instagram-link .travel-kururu-instagram-icon a {
  display: block;
}
.travel-kururu-page .travel-kururu-instagram .travel-kururu-instagram-link .travel-kururu-instagram-icon a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.travel-kururu-page .travel-kururu-instagram .travel-kururu-instagram-link .travel-kururu-instagram-label {
  font-size: 12px;
  font-weight: medium;
  color: #000;
  line-height: 32px;
  letter-spacing: 0.36px;
  margin-bottom: 4px;
}
.travel-kururu-page .travel-kururu-instagram .travel-kururu-instagram-link .travel-kururu-instagram-id {
  font-size: 14px;
  font-weight: medium;
  color: #27b2e6;
  line-height: normal;
  letter-spacing: 0.42px;
  margin: 0;
}
.travel-kururu-page .travel-kururu-products {
  background: #9a7364;
  padding: 100px 0 240px;
  margin-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .travel-kururu-page .travel-kururu-products {
    border-top: 10px solid #987060;
    background: #F5F3EF;
    padding: 20px 0 30px;
  }
}
.travel-kururu-page .travel-kururu-products .travel-kururu-products-title {
  font-size: 40px;
  font-weight: medium;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1023px) {
  .travel-kururu-page .travel-kururu-products .travel-kururu-products-title {
    font-size: 16px;
    margin-bottom: 16px;
    color: #987060;
    font-weight: 500;
  }
}
.travel-kururu-page .travel-kururu-products .travel-kururu-product-item {
  max-width: 1100px;
  margin: 0 auto 60px;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .travel-kururu-page .travel-kururu-products .travel-kururu-product-item {
    margin-bottom: 24px;
    display: inline-block;
  }
}
.travel-kururu-page .travel-kururu-products .travel-kururu-product-item:last-child {
  margin-bottom: 0;
}
.travel-kururu-page .travel-kururu-products .travel-kururu-product-item .travel-kururu-product-image {
  width: 100%;
  position: relative;
  max-width: 70%;
  margin: 0 auto 30px;
  display: block;
}
@media screen and (max-width: 1023px) {
  .travel-kururu-page .travel-kururu-products .travel-kururu-product-item .travel-kururu-product-image {
    max-width: 100%;
    margin: 0 auto;
  }
}
.travel-kururu-page .travel-kururu-products .travel-kururu-product-item .travel-kururu-product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.travel-kururu-page .travel-kururu-products .travel-kururu-product-item .travel-kururu-product-label {
  position: absolute;
  top: 0;
  left: 54px;
  width: 140px;
  height: 140px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: medium;
  color: #fff;
  letter-spacing: 0.9px;
}
.travel-kururu-page .travel-kururu-products .travel-kururu-product-item .travel-kururu-product-info {
  background: #fff;
  padding: 20px 0;
  border-radius: 0 0 32px 32px;
  text-align: center;
}
.travel-kururu-page .travel-kururu-products .travel-kururu-product-item .travel-kururu-product-info .travel-kururu-product-title {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  letter-spacing: 1.8px;
  margin-bottom: 8px;
}
.travel-kururu-page .travel-kururu-products .travel-kururu-product-item .travel-kururu-product-info .travel-kururu-product-subtitle {
  font-size: 18px;
  font-weight: medium;
  color: #000;
  letter-spacing: 0.9px;
  margin: 0;
}
.travel-kururu-page .travel-kururu-footer-image {
  margin-top: 0;
}
.travel-kururu-page .travel-kururu-footer-image img {
  width: 100%;
  height: auto;
  display: block;
}

.frozen-yogurt-shake-page {
  padding-top: 120px;
}
.frozen-yogurt-shake-page .mainWidth {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.frozen-yogurt-shake-hero {
  padding: 80px 0 100px;
}
.frozen-yogurt-shake-hero .mainWidth {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.frozen-yogurt-shake-hero-top {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}
.frozen-yogurt-shake-hero-top .frozen-yogurt-shake-hero-icon {
  margin-bottom: 20px;
}
.frozen-yogurt-shake-hero-top .frozen-yogurt-shake-hero-icon img {
  width: 100px;
  height: auto;
}
.frozen-yogurt-shake-hero-top .frozen-yogurt-shake-hero-subtitle {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
}
.frozen-yogurt-shake-hero-top .frozen-yogurt-shake-hero-title {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 2.4px;
  margin: 0;
}
.frozen-yogurt-shake-hero-top .hero-decorative {
  position: absolute;
  top: -20px;
  left: 0;
}
.frozen-yogurt-shake-hero-top .hero-decorative .hero-decorative-icon {
  width: 168px;
}
.frozen-yogurt-shake-hero-top .hero-decorative .hero-decorative-icon img {
  width: 100%;
  height: auto;
}
.frozen-yogurt-shake-hero-main-visual {
  background: white;
  border-radius: 32px;
  padding: 60px 40px;
  overflow: hidden;
  position: relative;
}
.frozen-yogurt-shake-hero-main-visual-mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #a8d5ba 0%, #c1e4d0 100%);
  z-index: 0;
}
.frozen-yogurt-shake-hero-main-visual-inner {
  position: relative;
  z-index: 1;
}
.frozen-yogurt-shake-hero-main-visual-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  min-height: 400px;
}
.frozen-yogurt-shake-hero-main-visual-left {
  text-align: center;
}
.frozen-yogurt-shake-hero-main-visual-left .frozen-yogurt-shake-mv-bacteria {
  font-family: "Toppan Bunkyu Midashi Mincho", serif;
  font-size: 18px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 10px;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.frozen-yogurt-shake-hero-main-visual-left .frozen-yogurt-shake-mv-lines {
  margin: 10px 0;
}
.frozen-yogurt-shake-hero-main-visual-left .frozen-yogurt-shake-mv-lines .line {
  display: block;
  width: 70px;
  height: 1px;
  background: white;
  margin: 5px auto;
}
.frozen-yogurt-shake-hero-main-visual-left .frozen-yogurt-shake-mv-bb12 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
}
.frozen-yogurt-shake-hero-main-visual-left .frozen-yogurt-shake-mv-activate {
  font-family: "Toppan Bunkyu Midashi Mincho", serif;
  font-size: 18px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.frozen-yogurt-shake-hero-main-visual-center {
  flex: 1;
  text-align: center;
}
.frozen-yogurt-shake-hero-main-visual-center img {
  max-width: 400px;
  height: auto;
  margin: 0 auto;
}
.frozen-yogurt-shake-hero-main-visual-right .frozen-yogurt-shake-mv-taste {
  font-family: "Toppan Bunkyu Midashi Mincho", serif;
  font-size: 19px;
  font-weight: 800;
  color: white;
  line-height: 1.5;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: center;
}
.frozen-yogurt-shake-hero-main-visual-footer {
  text-align: center;
  color: white;
}
.frozen-yogurt-shake-hero-main-visual-footer .frosta-logo {
  width: 133px;
  height: auto;
  margin-bottom: 10px;
}
.frozen-yogurt-shake-hero-main-visual-footer .frozen-yogurt-shake-mv-author {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-bottom: 5px;
}
.frozen-yogurt-shake-hero-main-visual-footer .frozen-yogurt-shake-mv-location {
  font-size: 16px;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.frozen-yogurt-shake-hero-main-visual-footer .frozen-yogurt-shake-mv-link {
  font-size: 14px;
  color: white;
  text-decoration: underline;
}

.frozen-yogurt-shake-story {
  padding: 80px 0;
  background: #f5f5f5;
}
.frozen-yogurt-shake-story-header {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.frozen-yogurt-shake-story-header-icon img {
  width: 61px;
  height: auto;
}
.frozen-yogurt-shake-story-header-content {
  flex: 1;
}
.frozen-yogurt-shake-story-header-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  padding: 8px 15px;
  background: #dcdddd;
  display: inline-block;
}
.frozen-yogurt-shake-story-header-text {
  font-size: 24px;
  line-height: 1.8;
}
.frozen-yogurt-shake-story-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.frozen-yogurt-shake-story-images-image-item img {
  width: 100%;
  height: auto;
  display: block;
}
.frozen-yogurt-shake-story-description {
  font-size: 16px;
  line-height: 2;
  max-width: 630px;
  letter-spacing: 1.12px;
  margin-bottom: 20px;
}
.frozen-yogurt-shake-story .frozen-yogurt-shake-notice {
  font-size: 14px;
  color: #888888;
  letter-spacing: 0.56px;
}

.frozen-yogurt-shake-chikuma {
  padding: 80px 0;
}
.frozen-yogurt-shake-chikuma-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.frozen-yogurt-shake-chikuma-title::before {
  content: "●";
  color: #ff4679;
  margin-right: 10px;
}
.frozen-yogurt-shake-chikuma-map {
  position: relative;
  margin-bottom: 60px;
  text-align: center;
}
.frozen-yogurt-shake-chikuma-map-image img {
  max-width: 600px;
  height: auto;
  margin: 0 auto;
}
.frozen-yogurt-shake-chikuma-info {
  position: absolute;
  right: 100px;
  top: 50px;
  text-align: center;
}
.frozen-yogurt-shake-chikuma-info .frozen-yogurt-shake-chikuma-location {
  font-size: 18px;
  font-weight: 500;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.frozen-yogurt-shake-chikuma-info .frozen-yogurt-shake-chikuma-shop {
  font-size: 13px;
  color: #333;
}
.frozen-yogurt-shake-chikuma-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.frozen-yogurt-shake-chikuma-images-image-item img {
  width: 100%;
  height: auto;
  display: block;
}
.frozen-yogurt-shake-chikuma-images-image-item .frozen-yogurt-shake-chikuma-caption {
  font-size: 16px;
  margin-top: 15px;
  text-align: left;
}

.frozen-yogurt-shake-flavors {
  padding: 80px 0;
  background: #dadad3;
}
.frozen-yogurt-shake-flavors-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.8;
}
.frozen-yogurt-shake-flavors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.frozen-yogurt-shake-flavors-flavor-item {
  text-align: center;
}
.frozen-yogurt-shake-flavors-flavor-item .frozen-yogurt-shake-flavor-image {
  width: 202px;
  height: 202px;
  background: #d9d9d9;
  border-radius: 12px;
  margin: 0 auto 15px;
  overflow: hidden;
}
.frozen-yogurt-shake-flavors-flavor-item .frozen-yogurt-shake-flavor-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.frozen-yogurt-shake-flavors-flavor-item .frozen-yogurt-shake-flavor-info {
  text-align: center;
}
.frozen-yogurt-shake-flavors-flavor-item .frozen-yogurt-shake-flavor-info .frozen-yogurt-shake-flavor-farm {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}
.frozen-yogurt-shake-flavors-flavor-item .frozen-yogurt-shake-flavor-info .frozen-yogurt-shake-flavor-name {
  font-size: 10px;
  margin-bottom: 5px;
}
.frozen-yogurt-shake-flavors-flavor-item .frozen-yogurt-shake-flavor-info .frozen-yogurt-shake-flavor-location {
  font-size: 13px;
}

@media screen and (max-width: 1023px) {
  .frozen-yogurt-shake-hero {
    padding: 60px 0;
  }
  .frozen-yogurt-shake-hero-top {
    margin-bottom: 40px;
  }
  .frozen-yogurt-shake-hero-top .frozen-yogurt-shake-hero-icon img {
    width: 80px;
  }
  .frozen-yogurt-shake-hero-top .frozen-yogurt-shake-hero-subtitle {
    font-size: 16px;
  }
  .frozen-yogurt-shake-hero-top .frozen-yogurt-shake-hero-title {
    font-size: 36px;
  }
  .frozen-yogurt-shake-hero-main-visual {
    padding: 40px 20px;
  }
  .frozen-yogurt-shake-hero-main-visual-content {
    flex-direction: column;
    min-height: auto;
  }
  .frozen-yogurt-shake-hero-main-visual-left, .frozen-yogurt-shake-hero-main-visual-right {
    display: none;
  }
  .frozen-yogurt-shake-hero-main-visual-center img {
    max-width: 250px;
  }
  .frozen-yogurt-shake-hero-main-visual-footer .frosta-logo {
    width: 100px;
  }
  .frozen-yogurt-shake-hero-main-visual-footer .frozen-yogurt-shake-mv-author {
    font-size: 20px;
  }
  .frozen-yogurt-shake-story {
    padding: 60px 0;
  }
  .frozen-yogurt-shake-story-header {
    flex-direction: column;
    gap: 20px;
  }
  .frozen-yogurt-shake-story-header-title {
    font-size: 16px;
  }
  .frozen-yogurt-shake-story-header-text {
    font-size: 20px;
  }
  .frozen-yogurt-shake-story-images {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .frozen-yogurt-shake-chikuma {
    padding: 60px 0;
  }
  .frozen-yogurt-shake-chikuma-images {
    grid-template-columns: 1fr;
  }
  .frozen-yogurt-shake-chikuma-info {
    position: static;
    margin-top: 20px;
  }
  .frozen-yogurt-shake-flavors {
    padding: 60px 0;
  }
  .frozen-yogurt-shake-flavors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .frozen-yogurt-shake-hero {
    padding: 40px 0;
  }
  .frozen-yogurt-shake-hero-top .frozen-yogurt-shake-hero-title {
    font-size: 28px;
  }
  .frozen-yogurt-shake-hero-main-visual {
    border-radius: 20px;
    padding: 30px 15px;
  }
  .frozen-yogurt-shake-hero-main-visual-center img {
    max-width: 200px;
  }
  .frozen-yogurt-shake-hero-main-visual-footer .frozen-yogurt-shake-mv-author {
    font-size: 16px;
  }
  .frozen-yogurt-shake-hero-main-visual-footer .frozen-yogurt-shake-mv-location {
    font-size: 14px;
  }
  .frozen-yogurt-shake-story {
    padding: 40px 0;
  }
  .frozen-yogurt-shake-story-header-text {
    font-size: 18px;
  }
  .frozen-yogurt-shake-story-description {
    font-size: 14px;
  }
  .frozen-yogurt-shake-chikuma {
    padding: 40px 0;
  }
  .frozen-yogurt-shake-chikuma-title {
    font-size: 20px;
  }
  .frozen-yogurt-shake-flavors {
    padding: 40px 0;
  }
  .frozen-yogurt-shake-flavors-title {
    font-size: 20px;
  }
  .frozen-yogurt-shake-flavors-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .frozen-yogurt-shake-flavors-flavor-item .frozen-yogurt-shake-flavor-image {
    width: 100%;
    max-width: 300px;
  }
}
/* =============================================
  商品ページ
============================================= */
.product-page {
  padding-top: 120px;
}
@media screen and (max-width: 1023px) {
  .product-page {
    padding-top: 80px;
  }
}
.product-page .mainWidth {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}
.product-page .product-hero {
  margin-top: 75px;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .product-page .product-hero {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.product-page .product-hero .product-hero-title {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .product-page .product-hero .product-hero-title.sp-only {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 30px;
    margin: 30px auto;
  }
}
.product-page .product-hero .product-hero-title .product-hero-subtitle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: 1px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-hero .product-hero-title .product-hero-subtitle {
    font-size: 13px;
  }
}
.product-page .product-hero .product-hero-title .product-hero-main-title {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-hero .product-hero-title .product-hero-main-title {
    font-size: 24px;
    line-height: 1.4;
  }
}
.product-page .product-hero .product-hero-title-description {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 20px;
  margin-bottom: 58px;
}
.product-page .product-hero .hero-decorative {
  position: absolute;
  top: -20px;
  left: 0;
}
@media screen and (max-width: 1023px) {
  .product-page .product-hero .hero-decorative {
    position: static;
  }
}
.product-page .product-hero .hero-decorative .hero-decorative-icon {
  width: 168px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-hero .hero-decorative .hero-decorative-icon {
    width: 77px;
  }
}
.product-page .product-hero .hero-decorative .hero-decorative-icon img {
  width: 100%;
  height: auto;
}
.product-page .product-hero .product-main-image {
  position: relative;
  width: 1100px;
  max-width: 100%;
  margin: 0 auto 40px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-hero .product-main-image {
    margin-bottom: 0;
  }
}
.product-page .product-hero .product-main-image-link {
  max-width: 140px;
  width: 100%;
  position: absolute;
  bottom: 30px;
  left: 30px;
  transition: opacity 0.3s ease;
}
.product-page .product-hero .product-main-image-link:hover {
  opacity: 0.7;
}
.product-page .product-hero .product-main-image-caption {
  color: #888;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.24px;
  margin-top: 10px;
  margin-bottom: 53px;
}
.product-page .product-travel-stories {
  margin-bottom: 60px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-travel-stories {
    padding: 0 30px;
    margin-bottom: 20px;
  }
}
.product-page .product-travel-stories .product-travel-stories-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 83px;
  margin-bottom: 95px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-travel-stories .product-travel-stories-content {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 0;
  }
}
.product-page .product-travel-stories .product-travel-stories-content .location-box {
  max-width: 596px;
  width: 100%;
}
.product-page .product-travel-stories .product-travel-stories-content .location-box .location-text {
  position: relative;
  background-color: #dcdddd;
  padding: 14px 10px 14px 40px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-travel-stories .product-travel-stories-content .location-box .location-text {
    font-size: 14px;
    padding: 18px 10px 18px 80px;
    text-align: left;
    margin-bottom: 10px;
  }
}
.product-page .product-travel-stories .product-travel-stories-content .location-box .location-text .badge {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 61px;
  height: 101px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-travel-stories .product-travel-stories-content .location-box .location-text .badge {
    width: 43px;
    height: 71px;
    top: -16px;
    left: 10px;
  }
}
.product-page .product-travel-stories .product-travel-stories-content .location-box .location-catch {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-travel-stories .product-travel-stories-content .location-box .location-catch {
    font-size: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
  }
}
.product-page .product-travel-stories .product-travel-stories-content .location-box .location-description {
  margin-top: 16px;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 1.12px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-travel-stories .product-travel-stories-content .location-box .location-description {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}
.product-page .product-travel-stories .product-travel-stories-content .project-box .product-travel-stories-title {
  background-color: #000;
  padding: 14px 20px;
  text-align: center;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.48px;
  color: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-travel-stories .product-travel-stories-content .project-box .product-travel-stories-title {
    font-size: 16px;
  }
}
.product-page .product-travel-stories .product-travel-stories-content .project-box .story-image-link {
  background-color: #B4B4B5;
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 15px 12px;
}
.product-page .product-travel-stories .product-travel-stories-content .project-box .story-image-link-text {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24px;
  line-height: 18px;
  text-align: left;
}
.product-page .product-travel-stories .product-travel-stories-content .project-box .story-image-link-button {
  position: relative;
  color: #B4B4B5;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24px;
  line-height: 18px;
  text-align: left;
  margin-top: 9px;
  padding: 8px 40px 8px 13px;
  border-radius: 30px;
  display: inline-block;
}
.product-page .product-travel-stories .product-travel-stories-content .project-box .story-image-link-button img {
  width: 19px;
  position: absolute;
  top: 50%;
  right: 10px; /* Safari用 */
  transform: translate(0, -50%);
}
.product-page .product-varieties {
  margin-bottom: 100px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-varieties {
    padding: 0 30px;
    margin-bottom: 20px;
  }
}
.product-page .product-varieties .product-varieties-title {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.56px;
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 1023px) {
  .product-page .product-varieties .product-varieties-title {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    border-bottom: none;
  }
}
.product-page .product-varieties .product-varieties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-varieties .product-varieties-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }
}
.product-page .product-varieties .product-varieties-grid .product-variety-item .product-variety-image {
  width: 202px;
  height: 202px;
  margin: 0 auto;
  background-color: #d9d9d9;
  border-radius: 12px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-varieties .product-varieties-grid .product-variety-item .product-variety-image {
    width: 152px;
    height: 152px;
    margin-bottom: 8px;
  }
}
.product-page .product-varieties .product-varieties-grid .product-variety-item .product-variety-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.product-page .product-varieties .product-varieties-grid .product-variety-item .product-variety-info {
  text-align: center;
}
.product-page .product-varieties .product-varieties-grid .product-variety-item .product-variety-info .product-variety-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-varieties .product-varieties-grid .product-variety-item .product-variety-info .product-variety-name {
    font-size: 12px;
    margin-bottom: 4px;
  }
}
.product-page .product-varieties .product-varieties-grid .product-variety-item .product-variety-info .product-variety-detail {
  font-size: 10px;
  margin-bottom: 4px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-varieties .product-varieties-grid .product-variety-item .product-variety-info .product-variety-detail {
    font-size: 9px;
  }
}
.product-page .product-varieties .product-varieties-grid .product-variety-item .product-variety-info .product-variety-location {
  font-size: 13px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-varieties .product-varieties-grid .product-variety-item .product-variety-info .product-variety-location {
    font-size: 10px;
  }
}
.product-page .product-store {
  background-color: #dadad3;
  padding: 80px 20px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-store {
    padding: 24px 30px;
  }
}
.product-page .product-store .product-store-title {
  text-align: left;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.56px;
  margin-bottom: 60px;
  position: relative;
  padding-left: 40px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-store .product-store-title {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 24px;
  }
}
.product-page .product-store .product-store-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 51%;
  transform: translateY(-50%);
  width: 31px;
  height: 31px;
  background-color: #FF4679;
  border-radius: 50%;
}
@media screen and (max-width: 1023px) {
  .product-page .product-store .product-store-title::before {
    width: 18px;
    height: 18px;
  }
}
.product-page .product-store .product-store-content {
  display: flex;
  gap: 63px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-store .product-store-content {
    flex-direction: column;
    gap: 20px;
  }
}
.product-page .product-store .product-store-content .product-store-images {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1023px) {
  .product-page .product-store .product-store-content .product-store-images {
    display: none;
  }
}
.product-page .product-store .product-store-content .product-store-images .product-store-image {
  max-width: 300px;
  width: 100%;
}
.product-page .product-store .product-store-content .product-store-images .product-store-image .product-store-caption {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
}
.product-page .product-store .product-store-content .product-store-map {
  width: 407px;
  height: 380px;
}
.product-page .product-store .product-store-content .product-store-map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-page .product-store .product-store-note {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24px;
  line-height: 25px;
}
.product-page .product-store .product-store-note-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.product-page .product-store .product-store-note-text {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24px;
  line-height: 18px;
  text-align: left;
}

.frozen-yogurt-shake-page .product-hero .product-main-image {
  margin-bottom: 0;
}
.frozen-yogurt-shake-page .product-travel-stories .product-travel-stories-content .location-box {
  max-width: 640px;
  width: 100%;
}
.frozen-yogurt-shake-page .product-travel-stories .product-travel-stories-content .project-box {
  max-width: 364px;
  width: 100%;
}
.frozen-yogurt-shake-page .product-varieties .product-varieties-title {
  font-size: 24px;
}
@media screen and (max-width: 1023px) {
  .frozen-yogurt-shake-page .product-varieties .product-varieties-title {
    font-size: 14px;
  }
}

.archive-artists-page {
  position: relative;
  padding-bottom: 80px;
}
@media screen and (max-width: 1023px) {
  .archive-artists-page {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1023px) {
  .archive-artists-page .product-hero {
    padding: 28px 0;
    text-align: center;
    background-color: #F5F3EF;
  }
}
.archive-artists-page .product-hero .hero-decorative {
  top: 30px;
}
@media screen and (max-width: 1023px) {
  .archive-artists-page .archive-artists-item-list {
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 40px;
  }
}
.archive-artists-page .archive-artists-item {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 50px;
  background-color: #e4e4df;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .archive-artists-page .archive-artists-item {
    background-color: #fff;
    padding: 27px 30px;
    margin-bottom: 0;
  }
}
.archive-artists-page .archive-artists-item-badge {
  position: absolute;
  right: 15px;
  top: -12px;
  width: 50.252px;
  height: 83px;
}
@media screen and (max-width: 1023px) {
  .archive-artists-page .archive-artists-item-badge {
    position: static;
    right: 0;
    top: 0;
  }
}
.archive-artists-page .archive-artists-item-content {
  position: relative;
  display: flex;
  padding: 50px 47px;
  gap: 43px;
}
@media screen and (max-width: 1023px) {
  .archive-artists-page .archive-artists-item-content {
    padding: 0;
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .archive-artists-page .archive-artists-item-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 17px;
  }
}
.archive-artists-page .archive-artists-item-header h2 {
  font-size: 24px;
  font-weight: bold;
  line-height: 39px;
  letter-spacing: 0.48px;
  margin-bottom: 20px;
  text-align: center;
}
.archive-artists-page .archive-artists-item-header .archive-artists-item-author {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
}
@media screen and (max-width: 1023px) {
  .archive-artists-page .archive-artists-item-header .archive-artists-item-author {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    border-top: solid 1px #ddd;
    padding-top: 5px;
  }
}
.archive-artists-page .archive-artists-item-header .archive-artists-item-image {
  max-width: 397px;
  width: 100%;
  height: auto;
}
.archive-artists-page .archive-artists-item-header .archive-artists-item-location {
  position: relative;
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 1023px) {
  .archive-artists-page .archive-artists-item-header .archive-artists-item-location {
    width: calc(100% - 43px - 17px);
    margin-bottom: 0;
  }
}
.archive-artists-page .archive-artists-item-header .archive-artists-item-location.sp-only {
  display: none;
}
@media screen and (max-width: 1023px) {
  .archive-artists-page .archive-artists-item-header .archive-artists-item-location.sp-only {
    display: flex;
    align-items: center;
  }
}
.archive-artists-page .archive-artists-item-header .archive-artists-item-location.pc-only {
  display: flex;
}
@media screen and (max-width: 1023px) {
  .archive-artists-page .archive-artists-item-header .archive-artists-item-location.pc-only {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .archive-artists-page .archive-artists-item-header .archive-artists-item-location .archive-artists-item-location-inner {
    width: 100%;
  }
}
.archive-artists-page .archive-artists-item-header .archive-artists-item-location .location-tag {
  display: inline-block;
  height: 46px;
  line-height: 46px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .archive-artists-page .archive-artists-item-header .archive-artists-item-location .location-tag {
    height: auto;
    font-size: 14px;
    color: #000;
  }
}
.archive-artists-page .archive-artists-item-header .archive-artists-item-location .location-tag.location-tag-prefecture {
  width: 93px;
  background-color: #ff2979;
}
@media screen and (max-width: 1023px) {
  .archive-artists-page .archive-artists-item-header .archive-artists-item-location .location-tag.location-tag-prefecture {
    width: auto;
    background-color: unset;
  }
}
.archive-artists-page .archive-artists-item-header .archive-artists-item-location .location-tag.location-tag-city {
  text-align: left;
  padding-left: 20px;
  width: 304px;
  background-color: black;
}
@media screen and (max-width: 1023px) {
  .archive-artists-page .archive-artists-item-header .archive-artists-item-location .location-tag.location-tag-city {
    width: auto;
    background-color: unset;
    padding-left: 0;
  }
}
.archive-artists-page .archive-artists-item-header .archive-artists-item-badge {
  position: absolute;
  right: 244px;
  top: 0;
  width: 50.252px;
  height: 83px;
}
@media screen and (max-width: 1023px) {
  .archive-artists-page .archive-artists-item-header .archive-artists-item-badge {
    position: static;
    width: 43px;
    height: auto;
  }
}
.archive-artists-page .archive-artists-item-header .archive-artists-item-badge img {
  width: 100%;
  height: auto;
}
.archive-artists-page .archive-artists-item .archive-artists-item-body {
  position: relative;
}
.archive-artists-page .archive-artists-item .archive-artists-item-body h2 {
  font-size: 24px;
  font-weight: bold;
  line-height: 39px;
  letter-spacing: 0.48px;
  margin-bottom: 24px;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .archive-artists-page .archive-artists-item .archive-artists-item-body h2 {
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 16px;
    padding-bottom: 13px;
    border-bottom: solid 1px #ddd;
  }
}
.archive-artists-page .archive-artists-item .archive-artists-item-body .archive-artists-item-description {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.32px;
  margin-bottom: 40px;
  max-width: 569px;
  margin-left: auto;
}
@media screen and (max-width: 1023px) {
  .archive-artists-page .archive-artists-item .archive-artists-item-body .archive-artists-item-description {
    font-size: 13px;
    line-height: 1.625;
    margin-bottom: 23px;
  }
}
.archive-artists-page .archive-artists-item .archive-artists-item-body .archive-artists-item-link {
  text-align: right;
}
@media screen and (max-width: 1023px) {
  .archive-artists-page .archive-artists-item .archive-artists-item-body .archive-artists-item-link {
    margin-top: 30px;
  }
}
.archive-artists-page .archive-artists-item .archive-artists-item-body .archive-artists-item-link .link-btn-text {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 25px;
  border: 1px solid black;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28px;
  background-color: white;
  line-height: 28px;
  transition: all 0.3s ease;
}
.archive-artists-page .archive-artists-item .archive-artists-item-body .archive-artists-item-link .link-btn-text img {
  width: 5px;
  height: 9px;
  transition: transform 0.3s ease;
}
.archive-artists-page .archive-artists-item .archive-artists-item-body .archive-artists-item-link .link-btn-text:hover {
  background-color: #f5f5f5;
}
.archive-artists-page .archive-artists-item .archive-artists-item-body .archive-artists-item-link .link-btn-text:hover img {
  transform: translateX(3px);
}/*# sourceMappingURL=styles_custom.css.map */