@charset "UTF-8";
/* Sass Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;700&display=swap");
html, body {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.7;
  scroll-behavior: smooth;
}
@media screen and (min-width: 768px) {
  html, body {
    min-width: 1230px;
  }
}
@media screen and (max-width: 575px) {
  html, body {
    font-size: 14px;
  }
}

.container-fluid {
  max-width: 1230px; /*　画面幅の上限　*/
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn_area .btn {
  display: block;
  max-width: 500px;
  width: 100%;
  color: #fff;
  font-size: 1.125rem;
  letter-spacing: 0.127em;
  background-color: #f77c90;
  border: 1px solid #f77c90;
  padding: 1.125rem;
}
.btn_area .btn:hover {
  color: #f77c90;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .btn_area .btn {
    font-size: 1rem;
  }
}

.photo {
  position: relative;
}
.photo span {
  display: block;
}
.photo span img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

a {
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
a:hover, a:focus, a:active {
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

body.top-page .top_mainvisual {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: calc(100vh - 100px);
}
body.top-page .top_mainvisual .top_slideshow {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: calc(100vh - 100px);
}
body.top-page .top_mainvisual .top_slideshow ul {
  margin: 0;
  padding: 0;
}
body.top-page .top_mainvisual .top_slideshow ul li {
  list-style: none;
}
body.top-page .top_mainvisual .top_slideshow ul li a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: calc(100vh - 100px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
body.top-page .top_mainvisual .top_slideshow .slick-arrow {
  top: calc(50% - 100px);
  width: 3rem;
  height: 8rem;
  background-color: #f77c90;
  opacity: 0.75;
  z-index: 1;
}
body.top-page .top_mainvisual .top_slideshow .slick-arrow::before {
  color: #fff;
  opacity: inherit;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2rem;
}
body.top-page .top_mainvisual .top_slideshow .slick-arrow.slick-prev {
  left: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
body.top-page .top_mainvisual .top_slideshow .slick-arrow.slick-prev::before {
  content: "\f0d9";
}
body.top-page .top_mainvisual .top_slideshow .slick-arrow.slick-next {
  right: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
body.top-page .top_mainvisual .top_slideshow .slick-arrow.slick-next::before {
  content: "\f0da";
}
body.top-page .top_mainvisual .top_slideshow .slick-arrow:hover {
  opacity: 1;
}
body.top-page .top_mainvisual .contents {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
body.top-page .top_mainvisual .contents h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  -webkit-filter: drop-shadow(3px 3px 7px #000);
          filter: drop-shadow(3px 3px 7px #000);
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  body.top-page .top_mainvisual {
    padding-bottom: 100%;
  }
  body.top-page .top_mainvisual .top_slideshow {
    padding-bottom: 100%;
  }
  body.top-page .top_mainvisual .top_slideshow ul li a {
    padding-bottom: 100%;
  }
  body.top-page .top_mainvisual .top_slideshow .slick-arrow {
    top: 50%;
    width: 2rem;
    height: 6rem;
  }
  body.top-page .top_mainvisual .contents h2 {
    max-width: 350px;
  }
}
@media screen and (max-width: 575px) {
  body.top-page .top_mainvisual .contents h2 {
    max-width: 250px;
  }
}
body.top-page main .top_block {
  padding: 3.125rem 0 5rem;
}
body.top-page main .top_block#theme {
  background-color: #faf8f3;
}
body.top-page main .top_block .top_title {
  position: relative;
  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;
  color: #707070;
  font-size: 2.125rem;
  font-weight: 400;
  margin-bottom: 3.125rem;
  padding-bottom: 10px;
}
body.top-page main .top_block .top_title span {
  color: #c1c0bf;
  font-size: 1.25rem;
}
body.top-page main .top_block .top_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 10.5rem;
  height: 2px;
  background-color: #f77c90;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
body.top-page main .top_block ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 285px));
  gap: 25px 20px;
  margin-bottom: 6.25rem;
  padding: 0;
}
body.top-page main .top_block ul li {
  display: block;
  width: 100%;
  list-style: none;
}
body.top-page main .top_block ul li a {
  color: #333;
  text-decoration: none;
}
body.top-page main .top_block ul li a .photo {
  overflow: hidden;
  margin-bottom: 0.875rem;
}
body.top-page main .top_block ul li a .photo span {
  padding-bottom: 100%;
}
body.top-page main .top_block ul li a .photo span img {
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
body.top-page main .top_block ul li a h4, body.top-page main .top_block ul li a p {
  font-family: "Noto Sans JP", Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
}
body.top-page main .top_block ul li a h4 {
  font-size: 1.125rem;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 0.5rem;
}
body.top-page main .top_block ul li a p {
  font-size: 0.875rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}
body.top-page main .top_block ul li a:hover {
  color: #f77c90;
}
body.top-page main .top_block ul li a:hover span img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media screen and (max-width: 767px) {
  body.top-page main .top_block {
    padding: 2.5rem 0 3rem;
  }
  body.top-page main .top_block .top_title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  body.top-page main .top_block .top_title span {
    font-size: 1rem;
  }
  body.top-page main .top_block .top_title::after {
    width: 7.5rem;
  }
  body.top-page main .top_block ul {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 3rem;
  }
  body.top-page main .top_block ul li {
    margin-bottom: 0.5rem;
  }
  body.top-page main .top_block ul li a h4 {
    font-size: 1rem;
    font-weight: 500;
  }
  body.top-page main .top_block ul li a p {
    font-size: 0.75rem;
  }
}

body.second-page main .page_title {
  background-image: url("../img/bg_pagetitle.gif");
  background-repeat: repeat;
  background-position: center;
  margin-bottom: 3.75rem;
  padding: 1.6875rem 15px;
}
body.second-page main .page_title h2 {
  max-width: 1200px;
  font-weight: 400;
  border-left: 0.1875rem solid #f77c90;
  margin: 0 auto;
  padding-left: 1.375rem;
}
body.second-page main .page_title h2 span {
  display: block;
}
body.second-page main .page_title h2 span.jp {
  font-size: 2.125rem;
  letter-spacing: 0.127em;
}
body.second-page main .page_title h2 span.en {
  color: #bcbcbc;
  font-size: 1.3rem;
  letter-spacing: 0.124em;
}
@media screen and (max-width: 767px) {
  body.second-page main .page_title h2 span.jp {
    font-size: 1.5rem;
  }
  body.second-page main .page_title h2 span.en {
    font-size: 0.85rem;
  }
}
body.second-page main .tab_area {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 3rem;
}
body.second-page main .tab_area input[name=spot] {
  display: none;
}
body.second-page main .tab_area input[name=spot]:checked + .tab_name {
  color: #fff;
  background-color: #f77c90;
}
body.second-page main .tab_area input[name=spot]:checked + .tab_name + .tab_content {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  max-height: none;
  opacity: 1;
}
body.second-page main .tab_area .tab_name {
  display: block;
  white-space: nowrap;
  float: left;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  font-size: 1.25rem;
  font-weight: 500;
  background-color: #faf8f3;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  cursor: pointer;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  margin-bottom: 3rem;
  padding: 1.25em;
}
body.second-page main .tab_area .tab_name:hover {
  color: #fff;
  background-color: #f77c90;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
body.second-page main .tab_area .tab_content {
  width: 100%;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  max-height: 0;
  overflow: hidden;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  -webkit-transform-origin: top;
          transform-origin: top;
  opacity: 0;
}
body.second-page main .tab_area .tab_content ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 564px));
  gap: 72px;
  margin-bottom: 0;
  padding: 0;
}
body.second-page main .tab_area .tab_content ul li {
  display: block;
  width: 100%;
  list-style: none;
}
body.second-page main .tab_area .tab_content ul li a {
  color: #333;
  text-decoration: none;
}
body.second-page main .tab_area .tab_content ul li a .photo {
  overflow: hidden;
  margin-bottom: 0.875rem;
}
body.second-page main .tab_area .tab_content ul li a .photo span {
  padding-bottom: 66.667%;
}
body.second-page main .tab_area .tab_content ul li a .photo span img {
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
body.second-page main .tab_area .tab_content ul li a h3 {
  display: block;
  font-size: 1.125rem;
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 0.5rem;
}
body.second-page main .tab_area .tab_content ul li a p {
  font-size: 0.875rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}
body.second-page main .tab_area .tab_content ul li a:hover .photo img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
body.second-page main .tab_area .tab_content ul li a:hover h3, body.second-page main .tab_area .tab_content ul li a:hover p {
  color: #f77c90;
}
@media screen and (max-width: 767px) {
  body.second-page main .tab_area .tab_name {
    font-size: 0.85rem;
  }
  body.second-page main .tab_area .tab_content ul {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
  }
  body.second-page main .tab_area .tab_content ul li a .photo span {
    padding-bottom: 47%;
  }
  body.second-page main .tab_area .tab_content ul li a h3 {
    font-size: 1rem;
    font-weight: 500;
  }
  body.second-page main .tab_area .tab_content ul li a p {
    font-size: 0.75rem;
  }
}
body.second-page main .second_mainvisual .photo {
  margin-bottom: 2.5rem;
}
body.second-page main .second_mainvisual .photo span {
  padding-bottom: 50%;
}
body.second-page main .second_mainvisual > p {
  line-height: 2;
  margin-bottom: 1.25rem;
}
body.second-page main .second_mainvisual ul.link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.875rem;
  border-bottom: 1px solid #707070;
  margin: 0;
  padding: 0;
  padding-bottom: 4.6875rem;
}
body.second-page main .second_mainvisual ul.link_list li {
  list-style: none;
}
body.second-page main .second_mainvisual ul.link_list li a {
  display: block;
  color: #fff;
  font-size: 1.125rem;
  letter-spacing: 0.127em;
  text-decoration: none;
  background-color: #f77c90;
  border: 1px solid #f77c90;
  padding: 1.125rem 1.25rem;
}
body.second-page main .second_mainvisual ul.link_list li a::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.9375rem;
  padding-left: 0.9375rem;
}
body.second-page main .second_mainvisual ul.link_list li a:hover {
  color: #f77c90;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  body.second-page main .second_mainvisual .photo span {
    padding-bottom: 75%;
  }
  body.second-page main .second_mainvisual ul.link_list {
    gap: 1.25rem;
  }
  body.second-page main .second_mainvisual ul.link_list li a {
    font-size: 0.85rem;
    padding: 1rem 1.125rem;
  }
}
body.second-page main .theme_inner {
  margin-bottom: 6.25rem;
}
body.second-page main .theme_inner h3 {
  font-size: 1.35rem;
  font-weight: 400;
  border-left: 2px solid #f77c90;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}
body.second-page main .theme_inner .theme_text p {
  line-height: 2;
  margin-bottom: 2rem;
}
body.second-page main .theme_inner .theme_text p:last-of-type {
  margin: 0;
}
body.second-page main .theme_inner hr {
  margin: 3.125rem 0;
}
body.second-page main .theme_inner .tbl_wrap {
  margin: 2rem 0;
}
body.second-page main .theme_inner .tbl_wrap table {
  border-color: #ccc;
}
body.second-page main .theme_inner .tbl_wrap table tr th, body.second-page main .theme_inner .tbl_wrap table tr td {
  padding: 1em;
}
body.second-page main .theme_inner .tbl_wrap table tr th {
  font-weight: normal;
  background-color: #fcece8;
  white-space: nowrap;
}
body.second-page main .theme_inner .tbl_wrap table tr td span {
  display: block;
  font-size: 0.75rem;
}
body.second-page main .theme_inner .tbl_wrap table tr td:nth-of-type(even) {
  white-space: nowrap;
}
body.second-page main .theme_inner .btn_area {
  margin-bottom: 3rem;
}
body.second-page main .theme_inner .btn_area .btn::before {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 1rem;
}
@media screen and (max-width: 767px) {
  body.second-page main .theme_inner .theme_text:has(+ .btn_area) {
    margin-bottom: 3rem;
  }
  body.second-page main .theme_inner hr {
    margin: 2rem 0;
  }
  body.second-page main .theme_inner .tbl_wrap {
    overflow-x: scroll;
  }
  body.second-page main .theme_inner .tbl_wrap table {
    white-space: nowrap;
  }
}
body.second-page main .photospot_list .photospot_inner {
  padding: 4.6875rem 0;
}
body.second-page main .photospot_list .photospot_inner:nth-of-type(3n + 1) {
  background-color: #faf8f3;
}
body.second-page main .photospot_list .photospot_inner:nth-of-type(3n + 2) {
  background-color: #fcece8;
}
body.second-page main .photospot_list .photospot_inner:nth-of-type(3n) {
  background-color: #fff;
}
body.second-page main .photospot_list .photospot_inner h3 {
  color: #f77c90;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
body.second-page main .photospot_list .photospot_inner > p {
  line-height: 2;
  margin-bottom: 1.875rem;
}
body.second-page main .photospot_list .photospot_inner ul.photospot_images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 564px));
  gap: 72px;
  margin: 0;
  padding: 0;
}
body.second-page main .photospot_list .photospot_inner ul.photospot_images li {
  display: block;
  width: 100%;
  list-style: none;
}
body.second-page main .photospot_list .photospot_inner ul.photospot_images li .photo:has(+ h4) {
  margin-bottom: 0.875rem;
}
body.second-page main .photospot_list .photospot_inner ul.photospot_images li .photo span {
  padding-bottom: 66.667%;
}
body.second-page main .photospot_list .photospot_inner ul.photospot_images li h4 {
  display: block;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
body.second-page main .photospot_list .photospot_inner ul.photospot_images li p {
  font-size: 0.875rem;
  margin-bottom: 0;
}
body.second-page main .photospot_list .photospot_inner .photogallery_text {
  background-color: #fff;
  margin-top: 2rem;
  padding: 1.5rem;
}
body.second-page main .photospot_list .photospot_inner .photogallery_text p {
  text-align: center;
  margin-bottom: 0;
}
body.second-page main .photospot_list .photospot_inner .photogallery_text:has(+ ul.photospot_images) {
  margin-bottom: 2rem;
}
body.second-page main .photospot_list .photospot_inner .festival_text h4 {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.127em;
  margin-bottom: 0.5rem;
}
body.second-page main .photospot_list .photospot_inner .festival_text ul {
  margin-bottom: 0.9375rem;
  padding: 0;
}
body.second-page main .photospot_list .photospot_inner .festival_text ul li {
  position: relative;
  list-style: none;
  line-height: 1.8;
  padding-left: 2em;
}
body.second-page main .photospot_list .photospot_inner .festival_text ul li::before {
  content: "•";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  display: inline-block;
  width: 2em;
  color: #f77c90;
  text-align: center;
}
@media screen and (max-width: 767px) {
  body.second-page main .photospot_list .photospot_inner {
    padding: 2.5rem 0;
  }
  body.second-page main .photospot_list .photospot_inner h3 {
    font-size: 1.5rem;
  }
  body.second-page main .photospot_list .photospot_inner ul.photospot_images {
    gap: 30px;
  }
}

header.global_header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
header.global_header nav.global_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100px;
  background-color: #f77c90;
}
header.global_header nav.global_nav h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  margin: 0;
  padding-left: 1.25rem;
}
header.global_header nav.global_nav h1 a {
  width: 275px;
}
header.global_header nav.global_nav h1 a img {
  max-width: 100%;
}
header.global_header nav.global_nav button {
  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;
  width: 200px;
  height: 6.25rem;
  color: #fff;
  font-size: 1.3125rem;
  font-weight: 500;
  background-color: #e6697b;
  border: 1px solid #e6697b;
  margin-left: auto;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
header.global_header nav.global_nav button:hover {
  background-color: rgba(230, 105, 123, 0.3);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
header.global_header nav.global_nav div.global_menu {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
header.global_header nav.global_nav div.global_menu ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  list-style: none;
  margin-bottom: 0;
  padding: 0 3.75rem;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu {
  position: relative;
  border-right: 1px solid #fff;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu:first-of-type {
  border-left: 1px solid #fff;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 1rem;
  line-height: 2;
  text-decoration: none;
  padding: 0 2rem;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu a:hover::after {
  width: calc(100% - 4em);
}
header.global_header nav.global_nav div.global_menu#sp_menu {
  display: none;
}
header.global_header nav.global_nav div.lang_btn {
  position: relative;
}
header.global_header nav.global_nav div.lang_btn .lang_menu {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
}
header.global_header nav.global_nav div.lang_btn .lang_menu .menu_inner {
  position: relative;
  background-color: rgba(255, 255, 255, 0.95);
  text-align: left;
  margin: 0;
  padding: 0;
}
header.global_header nav.global_nav div.lang_btn .lang_menu .menu_inner li {
  text-align: center;
  list-style: none;
  border-bottom: 1px solid #e4e4e4;
}
header.global_header nav.global_nav div.lang_btn .lang_menu .menu_inner li a {
  display: inline-block;
  width: 100%;
  color: #f77c90;
  font-size: 1.3125rem;
  text-decoration: none;
  white-space: nowrap;
  padding: 1.25rem;
}
header.global_header nav.global_nav div.lang_btn .lang_menu .menu_inner li a:hover {
  color: #fff;
  background-color: #f77c90;
}
header.global_header nav.global_nav div.lang_btn .lang_menu .menu_inner li:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  header.global_header nav.global_nav {
    height: auto;
  }
  header.global_header nav.global_nav h1 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  header.global_header nav.global_nav h1 a {
    width: 175px;
  }
  header.global_header nav.global_nav button {
    width: auto;
    height: 3.75rem;
    font-size: 1.125rem;
    padding: 0 0.75rem;
  }
  header.global_header nav.global_nav div.global_menu#pc_menu {
    display: none;
  }
  header.global_header nav.global_nav div.global_menu#sp_menu {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
  header.global_header nav.global_nav div.global_menu#sp_menu button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header.global_header nav.global_nav div.global_menu#sp_menu ul {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0;
    background-color: #fff;
  }
  header.global_header nav.global_nav div.global_menu#sp_menu ul li {
    border: none;
    border-bottom: 1px solid #e4e4e4;
  }
  header.global_header nav.global_nav div.global_menu#sp_menu ul li a {
    width: 100%;
    color: #f77c90;
    font-size: 1.125rem;
    line-height: unset;
    padding: 1rem;
  }
  header.global_header nav.global_nav div.global_menu#sp_menu ul li a::after {
    display: none;
  }
  header.global_header nav.global_nav div.global_menu#sp_menu ul li a:hover, header.global_header nav.global_nav div.global_menu#sp_menu ul li a:active, header.global_header nav.global_nav div.global_menu#sp_menu ul li a:focus {
    background-color: #f77c90;
    color: #fff;
  }
  header.global_header nav.global_nav div.global_menu#sp_menu ul li:last-of-type {
    border-bottom: none;
  }
  header.global_header nav.global_nav div.lang_btn {
    margin-left: 1px;
  }
  header.global_header nav.global_nav div.lang_btn .lang_menu .menu_inner li a {
    font-size: 1.125rem;
    padding: 1rem;
  }
}

.global_footer footer {
  color: #151515;
  background-color: #faf8f3;
  text-align: center;
  padding: 3.125rem 0;
}
.global_footer footer .footer_logo {
  margin-bottom: 3rem;
}
.global_footer footer .footer_contents .footer_text {
  margin-bottom: 2.5rem;
}
.global_footer footer .footer_contents .footer_text p {
  font-size: 0.875rem;
  line-height: 2;
  margin-bottom: 0;
}
.global_footer footer .footer_contents .footer_text:last-of-type {
  margin-bottom: 1.25rem;
}
.global_footer .copyright {
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  background-color: #f77c90;
  padding: 1.5em 0;
}
@media screen and (max-width: 767px) {
  .global_footer footer .footer_logo {
    margin-bottom: 0.625rem;
  }
  .global_footer footer .footer_logo img {
    width: 12.5rem;
  }
  .global_footer footer .footer_contents .footer_text p {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

#page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 50;
}
#page-top a {
  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;
  width: 3.125rem;
  height: 3.125rem;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  background-color: rgba(21, 21, 21, 0.9);
  text-decoration: none;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
#page-top a::before {
  content: "\f062";
}/*# sourceMappingURL=style.css.map */