@charset "UTF-8";
/*==========================================
  Common
==========================================*/
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/NotoSans/NotoSansJP-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/NotoSans/NotoSansJP-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/NotoSans/NotoSansJP-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/NotoSans/NotoSansJP-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/NotoSans/NotoSansJP-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/NotoSans/NotoSansJP-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/NotoSans/NotoSansJP-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/NotoSans/NotoSansJP-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/NotoSans/NotoSansJP-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/fonts/DMSans/DMSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* base
==================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
  font-size: 16px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  line-break: strict;
  word-break: break-all;
  letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
a:visited {
  color: #000;
}
a:hover {
  color: #000;
  text-decoration: none;
}
a:active {
  color: #000;
}
@media (min-width: 768px) {
  a.tel {
    pointer-events: none;
    cursor: default;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/*================================
	header
=================================*/
.header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  /*.header-inner
  =================================*/
}
.header .header-inner {
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*.logo
  =================================*/
}
.header .header-inner .logo {
  display: inline-block;
  width: 82px;
}
.header .header-inner {
  /*.menu-button
  =================================*/
}
.header .header-inner .menu-button {
  position: relative;
  z-index: 1;
  width: 55px;
  height: 55px;
  border-radius: 999px;
  background-color: #343434;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.header .header-inner .menu-button .line-wrap {
  position: relative;
  width: 18px;
  height: 13px;
}
.header .header-inner .menu-button .line-wrap .line {
  position: absolute;
  left: 0;
  width: 18px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}
.header .header-inner .menu-button .line-wrap .line:nth-child(1) {
  top: 0;
}
.header .header-inner .menu-button .line-wrap .line:nth-child(2) {
  bottom: 0;
}
.header .header-inner .menu-button.is-open {
  background-color: #505050;
}
.header .header-inner .menu-button.is-open .line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header .header-inner .menu-button.is-open .line:nth-child(2) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.header {
  /*.header-nav
  =================================*/
}
.header .header-nav {
  position: fixed;
  right: 6px;
  top: 6px;
  width: 203px;
  padding: 100px 38px 60px;
  background-color: #343434;
  border-radius: 20px;
  box-sizing: border-box;
  /* 初期状態 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.header .header-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.header .header-nav .nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header .header-nav .nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .header-nav .nav-list li {
  margin: 0;
}
.header .header-nav .nav-list a {
  font-size: 18px;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.01em;
  display: inline-block;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.header .header-nav {
  /*.header-sns
  =================================*/
}
.header .header-nav .header-sns {
  margin-top: 46px;
  display: flex;
  gap: 18px;
}
.header .header-nav .header-sns .header-sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
.header .header-nav .header-sns .header-sns-link img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/*================================
	.footer
=================================*/
.footer {
  padding-top: 16px;
  padding-bottom: 48px;
  position: relative;
  /*.anchor
  =================================*/
}
.footer .anchor {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 17px;
  height: 17px;
  display: inline-block;
}
.footer .anchor a {
  display: block;
}
.footer {
  /*.footer-sns
  =================================*/
}
.footer .footer-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.footer .footer-sns .footer-sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
}
.footer .footer-sns .footer-sns-link img {
  display: block;
  width: 29px;
  height: 29px;
  object-fit: contain;
}
.footer {
  /*.copy
  =================================*/
}
.footer .copy {
  text-align: center;
}
.footer .copy .small {
  font-size: 12px;
  display: inline-block;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.01em;
}

/*================================
	page-layout
=================================*/
.page-layout {
  display: flex;
  width: 100%;
}

/*================================
	page-left
=================================*/
.page-left {
  display: none;
}

/*================================
	page-center
=================================*/
/*page-center　共通CSS*/
.page-center {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: #f36045;
  overflow: hidden;
  /*.main-visual
  =================================*/
}
.page-center .main-visual {
  width: 100%;
  height: 100dvh;
  position: relative;
}
.page-center .main-visual .main-visual-logo {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -48%);
  width: 66.8vw;
  z-index: 1;
}
.page-center .main-visual .main-visual-back .bg-video {
  display: block;
  width: 100%;
  height: 100dvh;
  object-fit: cover;
}
.page-center .main-visual .main-visual-arch {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: auto;
}
.page-center .main-visual .main-visual-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-center {
  /*.inner
  =================================*/
}
.page-center .inner {
  padding: 0 20px;
}
.page-center {
  /*.section-title
  =================================*/
}
.page-center .section-title {
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-center .section-title .en {
  font-size: 45px;
  line-height: 1;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.01em;
  display: block;
}
.page-center .section-title .jp {
  font-size: 19px;
  display: block;
}
.page-center {
  /*.view-button-wrap
  =================================*/
}
.page-center .view-button-wrap {
  text-align: center;
}
.page-center .view-button-wrap.is-hide {
  display: none;
}
.page-center .view-button-wrap .view-button {
  width: 215px;
  height: 95px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #79d8d3;
  border-radius: 50%;
  box-sizing: border-box;
  position: relative;
}
.page-center .view-button-wrap .view-button .text {
  color: #ea4d30;
  font-size: 20px;
  line-height: 1;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.01em;
}
.page-center .view-button-wrap .view-button .icon {
  position: absolute;
  bottom: -5px;
  width: 17px;
}
.page-center .view-button-wrap .view-button.change {
  border: 1px solid #8faa8e;
  width: 174px;
  height: 76px;
}
.page-center .view-button-wrap .view-button.change .text {
  color: #698967;
  font-size: 19px;
}
.page-center {
  /*purchase-frame
  =================================*/
}
.page-center .purchase-frame {
  position: relative;
  padding: 40px 20px 42px;
  border: 1px dashed #fff;
  border-radius: 20px;
}
.page-center .purchase-frame .purchase-inner .purchase-title {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  display: inline-block;
  padding: 0 32px;
  background-color: #ea4d30;
  white-space: nowrap;
}
.page-center .purchase-frame .purchase-inner .purchase-text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  margin-bottom: 28px;
}
.page-center .purchase-frame .purchase-inner .purchase-button-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.page-center .purchase-frame .purchase-inner .purchase-button-wrap .purchase-button {
  width: 100%;
  max-width: 330px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 9999px;
  background: #fff;
}
.page-center .purchase-frame .purchase-inner .purchase-button-wrap .purchase-button .text {
  color: #ea4d30;
  font-size: 24px;
  line-height: 1;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.01em;
}
.page-center .purchase-frame .purchase-inner .purchase-button-wrap .purchase-button img {
  display: block;
  width: 24px;
  height: 24px;
}

/*================================
	.section-top
=================================*/
.section-top {
  padding-top: 40px;
  padding-bottom: 80px;
}
.section-top .title {
  font-size: 25px;
  line-height: 1.8;
  text-align: center;
  padding-bottom: 42px;
}
.section-top .top-visual {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 42px;
}
.section-top .text {
  text-align: center;
  font-size: 17px;
  line-height: 2.5;
}

/*================================
	.section-menu
=================================*/
.section-menu {
  padding: 95px 0;
  background-color: #fff7e3;
  position: relative;
}
.section-menu .deco-menu-01,
.section-menu .deco-menu-02,
.section-menu .deco-menu-03,
.section-menu .deco-menu-04,
.section-menu .deco-menu-05,
.section-menu .deco-menu-06,
.section-menu .deco-menu-07 {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-menu .deco-menu-01 {
  left: 0;
  top: 0;
  width: 173px;
  height: 178px;
  background-image: url(/images/top/deco-menu-01.svg);
}
.section-menu .deco-menu-02 {
  right: 0;
  top: 400px;
  width: 97px;
  height: 270px;
  background-image: url(/images/top/deco-menu-02.svg);
}
.section-menu .deco-menu-07 {
  left: 0;
  bottom: 0;
  width: 150px;
  height: 93px;
  background-image: url(/images/top/deco-menu-07.svg);
}
.section-menu .section-title {
  padding-bottom: 18px;
}
.section-menu .section-title .en {
  color: #e64528;
  padding-bottom: 10px;
}
.section-menu .section-title .jp {
  font-size: 20px;
  line-height: 1.8;
  color: #e64528;
}
.section-menu .catch {
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 2.2;
  color: #2e2e2e;
  font-weight: 500;
  padding-bottom: 30px;
}
.section-menu .menu-details {
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-details {
    padding-bottom: 25%;
  }
}
.section-menu .menu-details li {
  text-align: center;
  font-size: 17px;
}
.section-menu .menu-details .menu-spice {
  color: #ea4d30;
  border-radius: 99px;
  padding: 8px;
  border: solid 2px #ea4d30;
  background-color: #fff;
  margin-bottom: 12px;
}
.section-menu .menu-details .menu-note {
  padding: 10px;
  color: #fff;
  background-color: #ea4d30;
  border-radius: 22px;
}
.section-menu .menu-details .menu-note .note {
  display: block;
  font-size: 12px;
  padding-top: 4px;
}
.section-menu {
  /*.menu-list
  ========================*/
}
.section-menu .menu-list {
  padding-bottom: 60px;
}
.section-menu .menu-list .menu-item {
  display: flex;
  margin-bottom: 120px;
  position: relative;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item {
    margin-bottom: 40%;
  }
}
.section-menu .menu-list .menu-item.num-02 {
  position: relative;
  z-index: 999;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.num-02 {
    margin-bottom: 35%;
  }
}
.section-menu .menu-list .menu-item.num-03 {
  position: relative;
}
.section-menu .menu-list .menu-item.num-03 .menu-photo {
  position: relative;
  z-index: 2;
}
.section-menu .menu-list .menu-item.num-03 .menu-info {
  position: relative;
  z-index: 1;
}
.section-menu .menu-list .menu-item.num-03 .deco-menu-03 {
  left: -24px;
  top: -164px;
  width: 363px;
  height: 178px;
  background-image: url(/images/top/deco-menu-03.svg);
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.num-03 .deco-menu-03 {
    left: -44px;
    top: -184px;
    width: 463px;
    height: 208px;
  }
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.num-03 {
    margin-bottom: 50%;
  }
}
.section-menu .menu-list .menu-item.num-04 {
  margin-bottom: 120px;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.num-04 {
    margin-bottom: 40%;
  }
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.num-05 {
    margin-bottom: 35%;
  }
}
.section-menu .menu-list .menu-item.num-06 {
  position: relative;
}
.section-menu .menu-list .menu-item.num-06 .deco-menu-04 {
  right: -24px;
  bottom: -150px;
  width: 107px;
  height: 207px;
  background-image: url(/images/top/deco-menu-04.svg);
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.num-06 {
    margin-bottom: 35%;
  }
}
.section-menu .menu-list .menu-item.num-08 {
  margin-bottom: 140px;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.num-08 {
    margin-bottom: 40%;
  }
}
.section-menu .menu-list .menu-item.num-09 {
  margin-bottom: 90px;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.num-09 {
    margin-bottom: 40%;
  }
}
.section-menu .menu-list .menu-item.num-10 {
  position: relative;
  z-index: 1;
}
.section-menu .menu-list .menu-item.num-11 {
  position: relative;
}
.section-menu .menu-list .menu-item.num-11 .deco-menu-05 {
  left: -24px;
  top: -145px;
  width: 124px;
  height: 188px;
  background-image: url(/images/top/deco-menu-05.svg);
}
.section-menu .menu-list .menu-item.num-13 {
  margin-bottom: 100px;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.num-13 {
    margin-bottom: 40%;
  }
}
.section-menu .menu-list .menu-item.num-14 {
  position: relative;
  z-index: 1;
}
.section-menu .menu-list .menu-item.num-15 {
  position: relative;
}
.section-menu .menu-list .menu-item.num-15 .deco-menu-06 {
  right: -24px;
  top: -94px;
  width: 390px;
  height: 192px;
  z-index: 0;
  background-image: url(/images/top/deco-menu-06.svg);
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.num-15 {
    margin-bottom: 40%;
  }
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.num-16 {
    margin-bottom: 20% !important;
  }
}
.section-menu .menu-list .menu-item .menu-photo {
  width: 340px;
  position: relative;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item .menu-photo {
    width: 60%;
  }
}
.section-menu .menu-list .menu-item .menu-photo .photo {
  position: absolute;
  top: -50%;
  z-index: 2;
  left: -60px;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item .menu-photo .photo {
    left: -20%;
    top: -60%;
  }
}
.section-menu .menu-list .menu-item .menu-photo .photo.item-size-05 {
  top: -30%;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item .menu-photo .photo.item-size-05 {
    top: -60%;
  }
}
.section-menu .menu-list .menu-item .menu-photo .photo.item-size-09 {
  top: -30%;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item .menu-photo .photo.item-size-09 {
    top: -60%;
  }
}
.section-menu .menu-list .menu-item .menu-photo .photo.item-size-13 {
  top: -30%;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item .menu-photo .photo.item-size-13 {
    top: -60%;
  }
}
.section-menu .menu-list .menu-item .menu-photo .photo.item-size-15 {
  top: -30%;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item .menu-photo .photo.item-size-15 {
    top: -60%;
  }
}
.section-menu .menu-list .menu-item .menu-photo .photo.item-size-01, .section-menu .menu-list .menu-item .menu-photo .photo.item-size-03, .section-menu .menu-list .menu-item .menu-photo .photo.item-size-05, .section-menu .menu-list .menu-item .menu-photo .photo.item-size-07, .section-menu .menu-list .menu-item .menu-photo .photo.item-size-09, .section-menu .menu-list .menu-item .menu-photo .photo.item-size-11, .section-menu .menu-list .menu-item .menu-photo .photo.item-size-13 {
  width: 290px;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item .menu-photo .photo.item-size-01, .section-menu .menu-list .menu-item .menu-photo .photo.item-size-03, .section-menu .menu-list .menu-item .menu-photo .photo.item-size-05, .section-menu .menu-list .menu-item .menu-photo .photo.item-size-07, .section-menu .menu-list .menu-item .menu-photo .photo.item-size-09, .section-menu .menu-list .menu-item .menu-photo .photo.item-size-11, .section-menu .menu-list .menu-item .menu-photo .photo.item-size-13 {
    width: 130%;
  }
}
.section-menu .menu-list .menu-item .menu-photo .photo.item-size-15 {
  left: -60px;
  width: 290px;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item .menu-photo .photo.item-size-15 {
    width: 130%;
  }
}
.section-menu .menu-list .menu-item .menu-info {
  width: calc(100% - 100px);
  padding-left: 10px;
  box-sizing: border-box;
  z-index: 1;
  transform: translateX(10px);
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item .menu-info {
    width: 40%;
  }
}
.section-menu .menu-list .menu-item .menu-info .title {
  padding-bottom: 14px;
}
.section-menu .menu-list .menu-item .menu-info .title .en {
  font-size: 13px;
  display: inline-block;
  color: #ea4d30;
  padding-bottom: 8px;
  margin-bottom: 9px;
  letter-spacing: 0.03em;
  position: relative;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item .menu-info .title .en {
    font-size: 16px;
    padding-bottom: 12px;
  }
}
.section-menu .menu-list .menu-item .menu-info .title .en::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: calc(100% + 100px);
  height: 3px;
  background-image: radial-gradient(circle, #e64528 1px, transparent 1px);
  background-size: 4px 2px;
  background-repeat: repeat-x;
}
.section-menu .menu-list .menu-item .menu-info .title .jp {
  font-size: 14px;
  display: block;
  color: #ea4d30;
  letter-spacing: -0.03em;
  line-height: 1.5;
  overflow-wrap: anywhere;
  line-break: strict;
  word-break: break-all;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item .menu-info .title .jp {
    font-size: 18px;
  }
}
.section-menu .menu-list .menu-item .menu-info .text {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.8;
  padding-bottom: 0;
  letter-spacing: 0;
  color: #2e2e2e;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item .menu-info .text {
    font-size: 14px;
    letter-spacing: 0.03em;
  }
}
.section-menu .menu-list .menu-item.change .menu-photo {
  order: 2;
}
.section-menu .menu-list .menu-item.change .menu-photo .photo {
  left: auto;
  right: -80px;
  top: -50%;
  z-index: 2;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.change .menu-photo .photo {
    right: -30%;
    top: -60%;
  }
}
.section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-02 {
  top: -35%;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-02 {
    top: -60%;
  }
}
.section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-04 {
  top: -35%;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-04 {
    top: -65%;
  }
}
.section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-06 {
  top: -35%;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-06 {
    top: -60%;
  }
}
.section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-08 {
  top: -35%;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-08 {
    top: -60%;
  }
}
.section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-10 {
  top: -35%;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-10 {
    top: -60%;
  }
}
.section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-12 {
  top: -40%;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-12 {
    top: -60%;
  }
}
.section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-14 {
  top: -35%;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-14 {
    top: -60%;
  }
}
.section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-16 {
  top: -35%;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-16 {
    top: -60%;
  }
}
.section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-02, .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-04, .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-06, .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-08, .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-10, .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-12, .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-14 {
  width: 290px;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-02, .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-04, .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-06, .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-08, .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-10, .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-12, .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-14 {
    width: 130%;
  }
}
.section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-16 {
  right: 0px;
  width: 180px;
}
@media screen and (min-width: 500px) {
  .section-menu .menu-list .menu-item.change .menu-photo .photo.item-size-16 {
    width: 100%;
    right: -25px;
  }
}
.section-menu .menu-list .menu-item.change .menu-info {
  order: 1;
  padding-right: 10px;
  padding-left: 0;
  transform: translateX(-10px);
}
.section-menu .menu-list .menu-item.change .menu-info .title {
  padding-bottom: 14px;
  text-align: right;
}
.section-menu .menu-list .menu-item.change .menu-info .title .en::after {
  left: 0;
}
.section-menu .menu-list .menu-item.change .menu-info .text {
  text-align: right;
}
.section-menu .menu-list .menu-item:nth-last-child(1) {
  margin-bottom: 0;
}
.section-menu .menu-list {
  /*.hidden-content
  =================================*/
}
.section-menu .menu-list .hidden-content {
  display: none;
}
.section-menu .menu-list .hidden-content.is-show {
  display: block;
}
.section-menu {
  /*.menu-button-wrap
  =================================*/
}
.section-menu .menu-button-wrap {
  text-align: center;
  margin-bottom: 40px;
}
.section-menu .menu-button-wrap .menu-button {
  padding: 9px;
  width: 285px;
  color: #2e2e2e;
  font-size: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 16px;
  background-color: #fff;
  color: #e64528;
  border: solid 1px #ea4d30;
  box-sizing: border-box;
  border-radius: 999px;
  gap: 8px;
}
.section-menu .menu-button-wrap .menu-button .icon {
  display: inline-block;
  width: 17px;
}

/*================================
.section-frozen
=================================*/
.section-frozen {
  padding: 95px 0;
  background-color: #ea4d30;
}
.section-frozen .section-title {
  padding-bottom: 60px;
}
.section-frozen .section-title .en {
  color: #fff;
  padding-bottom: 20px;
}
.section-frozen .section-title .jp {
  line-height: 1;
  color: #fff;
}
.section-frozen {
  /*.catch
  =========================*/
}
.section-frozen .catch {
  font-size: 17px;
  text-align: left;
  line-height: 2;
}
.section-frozen {
  /*.frozen-visual
  =========================*/
}
.section-frozen .frozen-visual {
  padding: 0 24px;
  padding-bottom: 24px;
  position: relative;
}
.section-frozen .frozen-visual .icon {
  position: absolute;
  left: -10px;
  top: -50px;
  width: 98px;
}
.section-frozen {
  /*frozen-swiper
  =========================*/
}
.section-frozen .frozen-swiper {
  width: 100%;
  overflow: hidden;
  margin-top: 64px;
  margin-bottom: 90px;
}
.section-frozen .frozen-swiper .swiper-wrapper {
  align-items: stretch;
}
.section-frozen .frozen-swiper .swiper-wrapper .swiper-slide {
  width: 220px;
  height: auto;
}
.section-frozen .frozen-swiper .swiper-wrapper .swiper-slide .product-item {
  padding: 0 13px;
  margin-bottom: 8px;
}
.section-frozen .frozen-swiper .swiper-wrapper .swiper-slide .product-info {
  text-align: center;
}
.section-frozen .frozen-swiper .swiper-wrapper .swiper-slide .product-info .price {
  font-size: 20px;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.section-frozen .frozen-swiper .swiper-wrapper .swiper-slide .product-info .name {
  font-size: 14px;
  padding: 8px 0;
  border-radius: 99px;
}
.section-frozen .frozen-swiper .swiper-wrapper .swiper-slide .product-info .name.color-01 {
  color: #ffbbb6;
  background-color: #4f5bc3;
}
.section-frozen .frozen-swiper .swiper-wrapper .swiper-slide .product-info .name.color-02 {
  color: #ffe1cb;
  background-color: #49ab3c;
}
.section-frozen .frozen-swiper .swiper-wrapper .swiper-slide .product-info .name.color-03 {
  color: #ffe16f;
  background-color: #0d9197;
}
.section-frozen .frozen-swiper .swiper-wrapper .swiper-slide .product-info .name.color-04 {
  color: #ffcd8a;
  background-color: #6c46a5;
}
.section-frozen .frozen-swiper .swiper-wrapper .swiper-slide .product-info .name.color-05 {
  color: #ffeec3;
  background-color: #d7204a;
}
.section-frozen .frozen-swiper .swiper-wrapper .swiper-slide .product-info .name.color-06 {
  color: #d93622;
  background-color: #a1d092;
}
.section-frozen .frozen-swiper .swiper-wrapper .swiper-slide .product-info .name.color-07 {
  color: #bad5cf;
  background-color: #5f49c8;
}
.section-frozen .frozen-swiper .swiper-wrapper .swiper-slide .product-info .name.color-08 {
  color: #f1eca3;
  background-color: #f17c4c;
}
.section-frozen .frozen-swiper .swiper-wrapper .swiper-slide .product-info .name.color-09 {
  color: #ffffff;
  background-color: #222222;
}
.section-frozen .frozen-swiper .swiper-wrapper .swiper-slide .product-info .name.color-10 {
  color: #ffef7d;
  background-color: #349adf;
}
.section-frozen .frozen-swiper .swiper-pagination {
  position: static;
  margin-top: 40px;
}
.section-frozen .frozen-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: 0.3s;
}
.section-frozen .frozen-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

/*================================
	.section-how
=================================*/
.section-how {
  /*.section-title
  =========================*/
}
.section-how .section-title {
  padding-bottom: 18px;
  margin-top: -20px;
}
.section-how .section-title .img {
  display: inline-block;
  width: 100px;
  padding-bottom: 8px;
}
.section-how .section-title .en {
  padding-bottom: 10px;
}
.section-how .section-title .jp {
  line-height: 1.8;
}
.section-how {
  /*.catch
  =========================*/
}
.section-how .catch {
  font-size: 15px;
  line-height: 2.2;
  font-weight: 500;
}
.section-how {
  /*howto
  =================================*/
}
.section-how .howto {
  margin-top: 60px;
}
.section-how .howto .howto-tab {
  display: flex;
  gap: 14px;
  padding: 0 16px;
}
.section-how .howto .howto-tab .howto-tab-button {
  position: relative;
  flex: 1;
  height: 64px;
  border: 2px solid transparent;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  background: #de4326;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
.section-how .howto .howto-tab .howto-tab-button .recommend {
  position: absolute;
  left: 50%;
  top: -26px;
  transform: translateX(-50%);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #59c3a0;
  color: #ffe500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.section-how .howto .howto-tab .howto-tab-button .recommend::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -8px;
  width: 0;
  height: 0;
  border-top: 12px solid #59c3a0;
  border-right: 10px solid transparent;
}
.section-how .howto .howto-tab .howto-tab-button.is-active {
  background: transparent;
  border-color: #fff;
  position: relative;
}
.section-how .howto .howto-tab .howto-tab-button.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  z-index: 1;
  height: 3px;
  width: 100%;
  background-color: #f36045;
}
.section-how .howto {
  /*.howto-content
  =================================*/
}
.section-how .howto .howto-content {
  display: none;
  padding: 60px 0 70px;
}
.section-how .howto .howto-content.is-active {
  display: block;
  border-top: solid 2px #fff;
}
.section-how .howto .howto-content .howto-list {
  display: flex;
  flex-direction: column;
  gap: 58px;
  margin-bottom: 56px;
}
.section-how .howto .howto-content .howto-list .howto-item .howto-photo {
  text-align: center;
  position: relative;
  width: 74vw;
  margin: 0 auto 16px;
}
.section-how .howto .howto-content .howto-list .howto-item .howto-photo .photo {
  display: inline-block;
  width: 54.6vw;
  aspect-ratio: 1/1;
  border-radius: 999px;
  overflow: hidden;
  background-color: #fff;
}
.section-how .howto .howto-content .howto-list .howto-item .howto-photo .howto-num {
  position: absolute;
  top: 32px;
  left: 0;
  display: inline-block;
  font-size: 7vw;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.01em;
}
.section-how .howto .howto-content .howto-list .howto-item .howto-text {
  font-size: 15px;
  line-height: 2;
  text-align: center;
  font-weight: 500;
}
.section-how .howto .howto-content .howto-list .howto-item .howto-text .noto {
  display: block;
}
.section-how .howto .howto-content .comment {
  padding: 0 24px;
}
.section-how .howto .howto-content .comment .text {
  padding: 16px;
  border: solid 2px #fff;
  line-height: 1.8;
  text-align: center;
  border-radius: 20px;
}
.section-how .howto .howto-content {
  display: none;
}
.section-how .howto .howto-content.is-active {
  display: block;
}
.section-how {
  /*.purchase-frame-wrap
  =================================*/
}
.section-how .purchase-frame-wrap {
  padding: 80px 24px;
  background-color: #ea4d30;
}
.section-how .purchase-frame-wrap .purchase-frame .purchase-inner .purchase-title {
  background-color: #ea4d30;
}

/*=================================
	.section-shop
=================================*/
.section-shop {
  padding-top: 72px;
  background-color: #fff;
}
.section-shop .section-title {
  margin-bottom: 32px;
}
.section-shop .section-title .en {
  color: #e64528;
}
.section-shop .shop-visual {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 26px;
}
.section-shop .shop-address {
  padding-bottom: 20px;
}
.section-shop .shop-address .shop-address-title {
  font-size: 23px;
  padding-bottom: 20px;
  color: #e64528;
  text-align: center;
}
.section-shop .shop-address .shop-address {
  box-sizing: border-box;
}
.section-shop .shop-address .shop-address li:nth-child(1) {
  border-top: dotted 1px #e64528;
}
.section-shop .shop-address .shop-address li {
  font-size: 15px;
  text-align: center;
  color: #2e2e2e;
  line-height: 1;
  padding: 20px 0;
  border-bottom: dotted 1px #e64528;
}
.section-shop {
  /*.sns-buttons
  =================================*/
}
.section-shop .sns-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 70px;
}
.section-shop .sns-buttons .sns-button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
}
.section-shop .sns-buttons {
  /*.LINE・Instagram
  =================================*/
}
.section-shop .sns-buttons .line,
.section-shop .sns-buttons .instagram {
  width: 196px;
  height: 55px;
  background: #f4512c;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  gap: 10px;
  line-height: 1;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.01em;
}
.section-shop .sns-buttons .line img,
.section-shop .sns-buttons .instagram img {
  width: 22px;
  height: 22px;
  display: block;
}
.section-shop .sns-buttons {
  /*.Uber Eats
  =================================*/
}
.section-shop .sns-buttons .uber {
  width: 350px;
  height: 70px;
  background: #2d2d2d;
  flex-direction: column;
  color: #fff;
}
.section-shop .sns-buttons .uber img {
  height: 28px;
  width: auto;
  margin-bottom: 2px;
}
.section-shop .sns-buttons .uber p {
  line-height: 1;
}
.section-shop .sns-buttons .uber p:nth-child(1) .en {
  font-size: 24px;
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.01em;
  margin-right: 4px;
  margin-bottom: 4px;
}
.section-shop .sns-buttons .uber p:nth-child(1) .en .color {
  color: #1ab067;
}
.section-shop .sns-buttons .uber p:nth-child(1) .jp {
  display: inline-block;
  font-size: 18px;
}
.section-shop .sns-buttons .uber p:nth-child(2) {
  font-size: 14px;
}
.section-shop {
  /*.google-map
  =================================*/
}
.section-shop .google-map .map iframe {
  width: 100%;
  height: 560px;
}

/*================================
	.section-insta
=================================*/
.section-insta {
  background-color: #f9bfba;
  padding-top: 80px;
  position: relative;
  /*.insta-title
  =================================*/
}
.section-insta .insta-title {
  line-height: 1;
  text-align: center;
  padding-bottom: 50px;
  position: relative;
  z-index: 2;
}
.section-insta .insta-title .icon {
  display: inline-block;
  width: 33px;
  margin-right: 12px;
}
.section-insta .insta-title .en {
  font-size: 40px;
  color: #698967;
}
.section-insta {
  /*.insta-list
  =================================*/
}
.section-insta .insta-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.section-insta .insta-list .item {
  aspect-ratio: 224/297;
  overflow: hidden;
  background: #f5f5f5;
}
.section-insta .insta-list .item a {
  display: block;
  width: 100%;
  height: 100%;
}
.section-insta .insta-list .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-insta .deco-insta-01,
.section-insta .deco-insta-02,
.section-insta .deco-insta-03 {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-insta .deco-insta-01 {
  top: 0;
  right: 0;
  width: 137px;
  height: 203px;
  background-image: url(/images/top/deco-insta-01.svg);
}
.section-insta .deco-insta-02 {
  top: 330px;
  left: 0;
  width: 70px;
  height: 214px;
  background-image: url(/images/top/deco-insta-02.svg);
}
.section-insta .deco-insta-03 {
  top: 680px;
  right: 0;
  width: 136px;
  height: 183px;
  background-image: url(/images/top/deco-insta-03.svg);
}
.section-insta {
  /*.footer-arch
  =================================*/
}
.section-insta .footer-arch {
  margin-top: 62px;
}

/*================================
	page-right
=================================*/
.page-right {
  display: none;
}

/*================================
	pageTop
=================================*/
#pageTop {
  opacity: 0;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 888;
  transition: 0.3s;
}
#pageTop.active {
  opacity: 1;
}
#pageTop a {
  display: block;
  width: 50px;
}
#pageTop a:hover {
  opacity: 0.7;
}

/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/* Animation
==================================*/
.c-anim-up {
  transform: translate(0, 50px);
  opacity: 0;
  transition: 0.5s ease;
}

.move {
  transform: translate(0, 0);
  opacity: 1;
}

.delay1 {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}

.delay2 {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}

.delay3 {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}

.delay4 {
  -moz-transition-delay: 1200ms;
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
}

.delay5 {
  -moz-transition-delay: 1500ms;
  -webkit-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
}

.delay6 {
  -moz-transition-delay: 1800ms;
  -webkit-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
}

.delay7 {
  -moz-transition-delay: 2100ms;
  -webkit-transition-delay: 2100ms;
  -o-transition-delay: 2100ms;
  -ms-transition-delay: 2100ms;
}

/*==================================
  Component
==================================*/
html {
  overflow: auto;
}
html.no_move {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}
img[src$=".png"], img[src$=".jpg"] {
  backface-visibility: hidden;
}

.container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.row .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  box-sizing: border-box;
}
.row .col.col_4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

/*==================================
	リスト系
==================================*/
.news_ul {
  margin: 0 0 19px;
}
.news_ul .news_li {
  border-bottom: 1px solid #e8e8e8;
  padding: 22px 14px;
}
.news_ul .news_li > a {
  display: flex;
  align-items: center;
}
.news_ul .news_li > a .date {
  font-size: 16px;
  color: #919191;
  margin-right: 24px;
}
.news_ul .news_li > a .img_wrap {
  margin-right: 17px;
}
@media (min-width: 768px) {
  .news_ul .news_li > a .title {
    background: linear-gradient(#000, #000) 0 100%/0 1px no-repeat;
    transition: background 0.4s ease;
  }
  .news_ul .news_li > a:hover .title {
    background-size: 100% 1px;
  }
}
@media (max-width: 767px) {
  .news_ul .news_li {
    padding: 14px 0;
  }
  .news_ul .news_li > a {
    display: block;
    position: relative;
    padding-left: 80px;
  }
  .news_ul .news_li > a .img_wrap {
    margin-right: 0;
    position: absolute;
    top: 0;
    left: -5px;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
  }
  .news_ul .news_li > a .img_wrap img {
    max-width: 57px;
  }
  .news_ul .news_li > a .date,
  .news_ul .news_li > a .title {
    display: block;
  }
  .news_ul .news_li > a .date {
    font-size: 14px;
    margin: 0 0 7px;
  }
  .news_ul .news_li > a .title {
    font-size: 16px;
    line-height: 1.3;
  }
}

/*==================================
	ページナビ
==================================*/
.page_navigation .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 45px 0 50px;
}
@media (max-width: 767px) {
  .page_navigation .wp-pagenavi {
    margin: 30px 0 40px;
  }
}
.page_navigation .wp-pagenavi > .page,
.page_navigation .wp-pagenavi .current {
  font-size: 16px;
  font-weight: 500;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 0 5px;
}
.page_navigation .wp-pagenavi > .page:not(.current),
.page_navigation .wp-pagenavi .current:not(.current) {
  background-color: #f3f3f3;
}
@media (min-width: 768px) {
  .page_navigation .wp-pagenavi > .page:not(.current):hover,
  .page_navigation .wp-pagenavi .current:not(.current):hover {
    color: #fff;
    background-color: #000;
  }
}
.page_navigation .wp-pagenavi > .page.current,
.page_navigation .wp-pagenavi .current.current {
  background-color: #000;
  color: #fff;
}
.page_navigation .wp-pagenavi .nextpostslink,
.page_navigation .wp-pagenavi .previouspostslink {
  position: relative;
  font-weight: 500;
  box-sizing: border-box;
}
.page_navigation .wp-pagenavi .nextpostslink::before,
.page_navigation .wp-pagenavi .previouspostslink::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 9px;
  height: 14px;
  background-image: url(../images/common/pager_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
}
.page_navigation .wp-pagenavi .nextpostslink.previouspostslink,
.page_navigation .wp-pagenavi .previouspostslink.previouspostslink {
  padding-left: 33px;
  margin-right: 30px;
}
.page_navigation .wp-pagenavi .nextpostslink.previouspostslink::before,
.page_navigation .wp-pagenavi .previouspostslink.previouspostslink::before {
  left: 0;
  transform: scale(-1, 1);
}
@media (min-width: 768px) {
  .page_navigation .wp-pagenavi .nextpostslink.previouspostslink:hover::before,
  .page_navigation .wp-pagenavi .previouspostslink.previouspostslink:hover::before {
    left: -5px;
  }
}
.page_navigation .wp-pagenavi .nextpostslink.nextpostslink,
.page_navigation .wp-pagenavi .previouspostslink.nextpostslink {
  padding-right: 33px;
  margin-left: 30px;
}
.page_navigation .wp-pagenavi .nextpostslink.nextpostslink::before,
.page_navigation .wp-pagenavi .previouspostslink.nextpostslink::before {
  right: 0;
}
@media (min-width: 768px) {
  .page_navigation .wp-pagenavi .nextpostslink.nextpostslink:hover::before,
  .page_navigation .wp-pagenavi .previouspostslink.nextpostslink:hover::before {
    right: -5px;
  }
}
.page_navigation .wp-pagenavi .list_back {
  margin-left: 58px;
  margin-right: 58px;
}
.page_navigation .wp-pagenavi .list_back > a {
  font-weight: 500;
}
.page_navigation .wp-pagenavi .list_back > a > .list_icon {
  display: inline-block;
  padding-left: 24px;
  position: relative;
}
.page_navigation .wp-pagenavi .list_back > a > .list_icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  background-image: url(../img/news/list_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.page_navigation > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 45px 0 50px;
}
.page_navigation > ul .link_page,
.page_navigation > ul .current_page {
  font-size: 16px;
  font-weight: 500;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 0 5px;
}
.page_navigation > ul .link_page:not(.current_page),
.page_navigation > ul .current_page:not(.current_page) {
  background-color: #f3f3f3;
}
@media (min-width: 768px) {
  .page_navigation > ul .link_page:not(.current_page):hover,
  .page_navigation > ul .current_page:not(.current_page):hover {
    color: #fff;
    background-color: #000;
  }
}
.page_navigation > ul .link_page.current_page,
.page_navigation > ul .current_page.current_page {
  background-color: #000;
  color: #fff;
}

/*==================================
  Contact_reset
==================================*/
main#Contact {
  /*------ Reset CSS ------*/
}
main#Contact input {
  -webkit-appearance: none;
}
main#Contact input[type=text] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}
main#Contact input[type=radio] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
}
main#Contact input[type=radio]:checked + label {
  background: #ff0000;
}
main#Contact input[type=checkbox] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
}
main#Contact input[type=checkbox]:checked + label {
  background: #ff0000;
}
main#Contact input::placeholder {
  color: #b7b7b7;
}
main#Contact input:-ms-input-placeholder {
  color: #b7b7b7;
}
main#Contact input::-webkit-input-placeholder {
  color: #b7b7b7;
}
main#Contact button,
main#Contact input[type=button],
main#Contact input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}
main#Contact textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  border-radius: 0;
}
main#Contact select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0;
}
main#Contact {
  /*------ Reset END ------*/
}

/*==========================================
  Layout
==========================================*/
/*==================================
  Top
==================================*/