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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*add reset styles*/
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

img {
  max-width: 100%;
}

/*Break Point
------------------------------*/
/*font
---------------------------------*/
/*color
---------------------------------*/
/* Text Reveal Animation
------------------------------------------------*/
@-webkit-keyframes textAnime_w {
  0% {
    color: transparent;
    background: transparent;
  }
  50% {
    color: transparent;
    background: transparent;
  }
  51% {
    color: #161616;
    background: #fff;
  }
  100% {
    color: #161616;
    background: #fff;
  }
}
@keyframes textAnime_w {
  0% {
    color: transparent;
    background: transparent;
  }
  50% {
    color: transparent;
    background: transparent;
  }
  51% {
    color: #161616;
    background: #fff;
  }
  100% {
    color: #161616;
    background: #fff;
  }
}
@-webkit-keyframes barAnime {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  68% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes barAnime {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  68% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
.u-reveal-mask {
  position: relative;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  opacity: 0;
  /* Black bar element */
}
.u-reveal-mask::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #000;
}
.u-reveal-mask.is-active {
  opacity: 1;
  -webkit-animation: textAnime_w 1s forwards;
          animation: textAnime_w 1s forwards;
}
.u-reveal-mask.is-active::before {
  -webkit-animation: barAnime 1s forwards;
          animation: barAnime 1s forwards;
}

body {
  color: #40220f;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  overflow-x: clip;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

.header {
  width: 100%;
  background-color: #fff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 3000;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
@media print, screen and (min-width: 701px) {
  .header {
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
    width: 34% !important;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 15px;
  height: 70px;
  position: relative;
}
@media print, screen and (min-width: 701px) {
  .header__inner {
    height: auto;
  }
}

.header__logo {
  width: 110px;
  line-height: 1;
}
@media print, screen and (min-width: 701px) {
  .header__logo {
    width: 140px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.header__logo a {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__logo a:hover {
  opacity: 0.7;
}
.header__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media print, screen and (min-width: 701px) {
  .header__right {
    gap: 20px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-left: 30px;
    display: none !important;
  }
}

.header__cv-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media print, screen and (min-width: 701px) {
  .header__cv-list {
    gap: 15px;
  }
}

.header__cv-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  color: #40220f;
  font-size: 10px;
  line-height: 1.2;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media print, screen and (min-width: 701px) {
  .header__cv-item a {
    font-size: 12px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.header__cv-item a:hover {
  opacity: 0.7;
}

.header__cv-icon {
  margin-bottom: 4px;
  height: 20px;
}
@media print, screen and (min-width: 701px) {
  .header__cv-icon {
    width: 24px;
    margin-bottom: 0;
    margin-right: 5px;
  }
}
.header__cv-icon img {
  width: auto;
  height: 100%;
  display: block;
}

.header__hamburger {
  display: block;
  width: 30px;
  height: 20px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
@media print, screen and (min-width: 701px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #40220f;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 2px;
}
.header__hamburger span:nth-child(1) {
  top: 0;
}
.header__hamburger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__hamburger span:nth-child(3) {
  bottom: 0;
}
.header__hamburger.is-active span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

@media only screen and (max-width: 700.9px) {
  .header__nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    overflow-y: auto;
    z-index: 1000;
  }
  .header__nav.is-active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media print, screen and (min-width: 701px) {
  .header__nav {
    display: none;
    position: static;
    margin-left: auto;
    margin-right: auto;
    -webkit-transform: none;
            transform: none;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.header__nav::before {
  content: "";
  display: block;
  height: 100%;
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fcf2c3;
  border-radius: 110px;
  z-index: -1;
}

@media only screen and (max-width: 700.9px) {
  .header__nav-inner {
    padding: 30px 20px 90px;
  }
}

@media only screen and (max-width: 700.9px) {
  .header__nav-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media print, screen and (min-width: 701px) {
  .header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}

.header__nav-item a {
  color: #40220f;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media only screen and (max-width: 700.9px) {
  .header__nav-item a {
    display: block;
    font-size: 10px;
  }
}
@media print, screen and (min-width: 701px) {
  .header__nav-item a {
    font-size: 14px;
    font-weight: 500;
  }
}
.header__nav-item a span {
  font-size: 18px;
  display: block;
  line-height: 1;
  border-bottom: 1px solid #40220f;
  margin-bottom: 5px;
}
.header__nav-item a:hover {
  color: rgb(146.6329113924, 77.8987341772, 34.3670886076);
}

body.is-locked {
  overflow: hidden;
}

.header__nav-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  gap: 40px;
}

.header__icon-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 12px;
}
.header__icon-link img {
  width: auto;
  height: 20px;
}
.header__icon-link + .header__icon-link {
  margin-top: 10px;
}

.header__icon-links {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.limited-link {
  width: 60%;
}

.header__more {
  margin-top: 30px;
}

.header__more-text {
  font-size: 14px;
  text-align: center;
}

.header__more-link {
  display: block;
  margin-top: 20px;
}

.header__contact-text {
  margin-top: 60px;
  font-size: 12px;
  text-align: center;
}

.header__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 900;
  font-size: 30px;
  margin-top: 20px;
}
.header__tel img {
  width: 50px;
}

.header__copyright {
  margin-top: 20px;
  font-size: 12px;
  text-align: center;
}

.pc-left {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fcf2c3;
  padding: 4vh 70px;
  width: calc((100% - 700px) / 2);
  min-width: 33.33%;
  overflow-y: scroll;
  height: 100%;
}
.pc-left .en-and-ja-heading {
  font-size: 14px;
}
.pc-left .en-and-ja-heading span {
  font-size: 22px;
  padding-bottom: 2px;
}
.pc-left::-webkit-scrollbar {
  display: none;
}

.pc-menu-inner {
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
}

.pc-left-logo {
  width: 73%;
  margin-inline: auto;
}

.pc-left-menu {
  background-color: #5eb7e8;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 3vh;
}
.pc-left-menu li + li {
  border-top: 1px solid #fff;
}

.pc-left-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  padding: 8px 30px;
  padding-left: 100px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 15px;
}
@media (hover: hover) {
  .pc-left-link:hover {
    background-color: #000;
    color: #fff;
  }
}
.pc-left-link::after {
  content: "";
  display: block;
  background-image: url("../img/common/white-arrow.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
}
.pc-left-link img {
  height: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 30px;
}

.pc-left-style {
  margin-top: 3vh;
}

.pc-left-card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 2vh;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pc-left-card {
  width: calc((100% - 20px) / 3);
}

.pc-right {
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fcf2c3;
  padding: 5vh 60px;
  width: calc((100% - 700px) / 2);
  min-width: 33.33%;
  overflow-y: scroll;
  height: 100%;
}
.pc-right::-webkit-scrollbar {
  display: none;
}

.pc-right-nav {
  margin-top: 30px;
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
}
.pc-right-nav li + li {
  border-top: 1px solid #fff;
}

.pc-right-nav-link {
  display: block;
  text-align: center;
  padding: 10px 10px;
  background-color: #5eb7e8;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 11px;
}
@media (hover: hover) {
  .pc-right-nav-link:hover {
    background-color: #000;
    color: #fff;
  }
}
.pc-right-nav-link span {
  font-size: 15px;
  display: block;
  line-height: 1;
}
.pc-right-nav-link.-active {
  background-color: #000;
  color: #fff;
}

.pc-right-cap {
  margin-top: 15px;
  font-size: 10px;
}

.footer {
  padding-top: 40px;
  padding-bottom: 140px;
}
@media print, screen and (min-width: 701px) {
  .footer {
    width: 34%;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 60px;
  }
}

.footer__info {
  text-align: center;
  font-size: 10px;
  line-height: 1.4;
}
@media print, screen and (min-width: 1024px) {
  .footer__info {
    font-size: 14px;
    line-height: 1.6;
  }
}

.footer__tel {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-size: 34px;
  line-height: 1;
  margin-top: 20px;
  color: #000;
}
@media print, screen and (min-width: 1024px) {
  .footer__tel {
    font-size: 4px;
    margin-top: 20px;
  }
}
@media print, screen and (min-width: 701px) {
  .footer__tel {
    font-size: 45px;
    margin-top: 20px;
  }
}
.footer__tel img {
  width: 40px;
  height: auto;
  display: block;
}
@media print, screen and (min-width: 1024px) {
  .footer__tel img {
    width: 80px;
  }
}

@media print, screen and (min-width: 1024px) {
  .co-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
}
@media print, screen and (min-width: 701px) {
  .co-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
}

.co {
  margin-top: 40px;
}
@media print, screen and (min-width: 1024px) {
  .co {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: subgrid;
    grid-template-rows: subgrid;
    -ms-grid-row-span: 2;
    grid-row: span 2;
  }
}

.co__label {
  font-size: 12px;
}

.footer .tobu {
  width: 260px;
  margin-right: auto;
  margin-left: auto;
}
.footer .haseko {
  width: 220px;
  margin-top: 25px;
  margin-right: auto;
  margin-left: auto;
}
.footer .tobu2 {
  width: 220px;
  margin-top: 5px;
  margin-right: auto;
  margin-left: auto;
}

.contents-wrap {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

main {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (min-width: 701px) {
  main {
    width: 34%;
  }
}

@media print, screen and (min-width: 701px) {
  .hide-at-pc {
    display: none !important;
  }
}

@media only screen and (max-width: 700.9px) {
  .hide-at-sp {
    display: none !important;
  }
}

.cap {
  font-size: 10px;
  margin-top: 50px;
}

.section {
  position: sticky;
  top: 0;
  z-index: 1;
  padding-top: 100px;
  border-top-right-radius: 120px;
  border-top-left-radius: 120px;
  -webkit-box-shadow: 0 -20px 20px -22px rgba(0, 0, 0, 0.5);
          box-shadow: 0 -20px 20px -22px rgba(0, 0, 0, 0.5);
  padding-bottom: 100px;
}
.section.-orange {
  background-color: #f8c5ac;
}
.section.-yellow {
  background-color: #fcf2c3;
}
.section.-white {
  background-color: #fff;
}
.section.-green {
  background-color: #c0e1ca;
}
.section.-beige {
  background-color: #cac6b5;
}
.section.-purple {
  background-color: #bebcd6;
}
.section.-sky {
  background-color: #b0d6eb;
}
.section.-pink {
  background-color: #e4cbbe;
}
.section.-blue {
  background-color: #005bac;
  color: #fff;
}
.section.-gray {
  background-color: #8b989e;
  color: #fff;
}
.section.-gray .section-sub-heading::before {
  background-color: #fff;
}
.section.-no-shadow {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.section.-no-radius {
  padding-top: 50px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.section.-no-padding {
  padding-top: 0;
  padding-bottom: 0;
}
.section.-pt_narrow {
  padding-top: 70px;
}
.section.-pb_narrow {
  padding-bottom: 70px;
}
.section.-pb_none {
  padding-bottom: 0;
}
.section:first-of-type {
  margin-top: 5px;
}
.section.-nosticky {
  position: relative;
}

.bottom-slider-area {
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 70px;
  margin-top: 60px;
  color: #000;
}

.search {
  position: relative;
}
.search input {
  padding-block: 5px;
  font-size: 14px;
  padding-left: 25px;
  background-color: #efefef;
  border-radius: 50px;
  display: block;
  width: 100%;
  border: none;
}
.search .gsc-control-cse {
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
}
.search .gsc-search-box {
  margin-bottom: 0 !important;
}
/* Google Custom Search - Input Box Container */
.search .gsc-input-box {
  background-color: #efefef !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 5px 10px 5px 0 !important;
}

/* Google Custom Search - Input Field (統合) */
.search .gsc-input,
.search input.gsc-input,
.search td.gsc-input {
  font-size: 14px !important;
  background-color: transparent !important;
  background-image: none !important;
  padding: 0 !important;
}
.search input.gsc-input {
  padding-left: 3.3em !important;
}

/* Google Custom Search - 非表示要素 */
.search .gsc-search-button,
.search .gsib_b,
.search .gsc-branding,
.search .gcsc-branding,
.search .gsc-branding-text,
.search .gcsc-branding-text,
.search .gs-visibleUrl,
.search .gsc-above-wrapper-area {
  display: none !important;
}

/* Google Custom Search - その他の調整 */
.search .gsib_a {
  padding: 0 !important;
  background-image: url("../img/common/icon-search.webp") !important;
  background-size: 1em;
  background-repeat: no-repeat !important;
  background-position: left 1.5em center !important;
}
.search table.gsc-search-box {
  max-width: 100%;
  margin-bottom: 0 !important;
}

.search__icon {
  display: none;
  width: 12px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10px;
  z-index: 10;
  pointer-events: none;
}

.point {
  margin-top: 40px;
  margin-bottom: 40px;
}

.icon-link {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  background-color: #5eb7e8;
  border-radius: 20px;
  margin-top: 20px;
  padding-block: 10px;
  -webkit-transition: border-radius 0.3s ease, width 0.3s ease;
  transition: border-radius 0.3s ease, width 0.3s ease;
}
.icon-link.-fixed {
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  z-index: 1100;
  max-width: 700px;
  width: 100%;
}
@media print, screen and (min-width: 701px) {
  .icon-link.-fixed {
    width: 34%;
    display: none !important;
    opacity: 0;
  }
}

.icon-link__item {
  text-align: center;
  padding-block: 5px;
  font-size: 14px;
  color: #fff;
}
.icon-link__item img {
  margin-bottom: 4px;
  height: 22px;
  width: auto;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.icon-link__item + .icon-link__item {
  border-left: 1px solid #fff;
}

.en-and-ja-heading {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}
.en-and-ja-heading span {
  display: block;
  font-size: 30px;
  padding-bottom: 5px;
  margin-bottom: 5px;
  position: relative;
}
.en-and-ja-heading span::after {
  content: "";
  display: block;
  height: 1px;
  width: 90px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.common-slider {
  margin-top: 40px;
  padding-bottom: 40px;
  width: 100vw;
  max-width: 700px;
  margin-left: calc(50% - 50vw);
}

@media print, screen and (min-width: 701px) {
  .common-slider {
    width: 100%;
    margin-inline: auto;
  }
}
.second-slider-section {
  margin-top: 60px;
}

.pickup-swiper {
  padding-bottom: 40px;
  overflow: visible;
}
.pickup-swiper .swiper-slide {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  height: auto;
}
.pickup-swiper .swiper-slide:not(.swiper-slide-active) {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  opacity: 0.7;
}
.pickup-swiper .swiper-pagination {
  bottom: 0;
}
.pickup-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  margin: 0 5px;
}
.pickup-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-pagination {
  position: static !important;
  margin-top: 20px;
}

.swiper-scrollbar {
  position: relative !important;
  margin-top: 15px;
  height: 6px !important;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-inline: 20px;
  cursor: pointer;
  width: 30.7vw !important;
}
.swiper-scrollbar .swiper-scrollbar-drag {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-transition: -webkit-transform 0.15s ease-out;
  transition: -webkit-transform 0.15s ease-out;
  transition: transform 0.15s ease-out;
  transition: transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
}
.swiper-scrollbar .swiper-scrollbar-drag:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  -webkit-transition: none;
  transition: none;
}

.pickup-swiper .swiper-slide:not(.swiper-slide-active) {
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
  opacity: 1 !important;
}

.zoom {
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: block;
  width: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  border: none;
  background-color: transparent;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal_body {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
  max-width: 800px;
  margin-right: auto;
  margin-top: 50px;
  margin-left: auto;
  background-color: #fff;
  z-index: 1001;
}
@media print, screen and (min-width: 701px) {
  .modal_body {
    height: 70vh;
    overflow: scroll;
    top: 44%;
    width: 700px;
  }
}

.modal_map {
  overflow-x: scroll;
  padding: 20px;
}
.modal_map img {
  width: 180% !important;
  max-width: none;
  height: auto;
}
@media print, screen and (min-width: 701px) {
  .modal_map img {
    max-width: 100%;
  }
}

.modal_close {
  height: 40px;
  width: 40px;
  display: block;
  position: absolute;
  top: 15px;
  right: 10px;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.prev-and-next {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
}