@charset "utf-8";
/* common.css */
/**********************************************
	font
***********************************************/
/*@font-face {
  src: url("../font/ShipporiGothicB2-OTF-Bold.woff2") format("woff2");
  font-family: "Shippori Gothic B2";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}*/
/**********************************************
	common settings
***********************************************/
html, body {
  width: 100%;
  height: 100%;
}
html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}
@media screen and (min-width: 960px) {
  html {
    scroll-padding-top: 140px;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 1.5px;
  color: #524340;
}
@media screen and (min-width: 520px) {
  body {
    font-size: 15px;
  }
}
@media screen and (min-width: 960px) {
  body {
    font-size: 16px;
  }
}
p {
  text-align: justify;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: none;
}
img {
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
input:focus, select:focus, textarea:focus {
  outline: none;
}
/**********************************************
	display: block / none
***********************************************/
.tab {
  display: none !important;
}
.pc {
  display: none !important;
}
.sp {
  display: block !important;
}
@media screen and (min-width: 520px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
}
@media screen and (min-width: 960px) {
  .sp {
    display: none !important;
  }
  .tab {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
}
/**********************************************
	$bg
***********************************************/
.bg {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(150deg, #FFDBD8, #FFF4FB, #FFE2D0, #FFF9EF, #FFDF9A);
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
}
.pc_bg_left, .pc_bg_right {
  display: none;
}
@media screen and (min-width: 480px) {
  .bg {
    background-position:
      top center, center;
    background-repeat:
      no-repeat, no-repeat;
    background-size:
      100% 100%;
  }
}
@media screen and (min-width: 1025px) {
  .pc_bg_left {
    display: block;
    width: calc(488.66 / 1920 * 100%);
    position: fixed;
    top: calc(53 / 1080 * 100vh);
    left: calc(143 / 1920 * 100%);
    z-index: 100;
  }
  .pc_bg_right {
    display: block;
    width: calc(577.24 / 1920 * 100%);
    position: fixed;
    top: calc(245 / 1080 * 100vh);
    right: calc(53 / 1920 * 100%);
    z-index: 100;
  }
}
/**********************************************
	$container
***********************************************/
.container {
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
  background-image:
    linear-gradient(150deg, #FFDBD8, #FFF4FB, #FFE2D0, #FFF9EF, #FFDF9A);
}
@media screen and (min-width: 960px) {
  .container {}
}
/**********************************************
	$header
***********************************************/
header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 76px;
  background-color: #FFF4FB;
  z-index: 9999;
}
header .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(342 / 375 * 100%);
  height: 100%;
  margin: 0 auto;
}
.header_logo {
  width: calc(44.05 / 343 * 100%);
  max-width: 90px;
  margin-right: 65px;
}
@media screen and (min-width: 480px) {
  .header_logo {
    margin-right: 145px;
  }
}
@media screen and (min-width: 960px) {
  .header_logo {
    margin-right: 175px;
  }
}
.header_logo img {}
.header_btn {
  width: calc(124 / 375 * 100%);
  aspect-ratio: 124/36;
  margin-right: 19px;
  max-width: 230px;
}
/**********************************************
	$hamburger list
***********************************************/
.hamburger {
  width: 50px;
  margin-bottom: 6px;
}
.hamburger:hover {
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 5px;
  background-color: #FF9372;
  transition: 0.6s;
}
.hamburger span:last-of-type {
  margin-bottom: 0;
}
.hamburger.active > span {}
.hamburger.active > span:nth-of-type(1) {
  transform: translateY(5px);
  opacity: 0;
}
.hamburger.active > span:nth-of-type(2) {}
.hamburger.active > span:nth-of-type(3) {
  transform: translateY(-5px);
  opacity: 0;
}
.hamburger_btn {}
.hamburger_ctt {
  position: relative;
}
.hamburger_menu {
  width: 0;
  height: 0;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
.hamburger_menu.open {
  width: 100%;
  height: 100%;
  padding-top: calc(70px + 30px);
  background-color: #FFF4FB;
  opacity: 1;
  z-index: 8001;
  transform: translateZ(0);
}
.hamburger_menu.open::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  background-position: top left;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 600px) {
  .hamburger_menu.open {
    padding-top: calc(170px + 20px);
  }
}
.hamburger_menu_list {
  width: calc(323 / 375 * 100%);
  margin: 0 auto 30px;
}
.hamburger_menu_list li {
  width: 100%;
  padding: 15px 0;
  border-bottom: 0.5px solid #FF9372;
}
.hamburger_menu_list li:first-of-type {
  border-top: 0.5px solid #FF9372;
}
.hamburger_menu_list li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: #FF9372;
  text-align: center;
}
.menu {
  color: #FF9372;
  font-family: "Amiri", serif;
  font-style: normal;
  font-weight: 200;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}
main {
  padding-top: 100px;
}
/**********************************************
    $footer
***********************************************/
footer {
  background-color: rgba(232, 62, 109, 0.15);
  position: relative;
}
.footer_inner {
  width: calc(198 / 375 * 100%);
  margin: 0 auto;
  padding-top: 55px;
  padding-bottom: 20px;
}
@media screen and (min-width: 960px) {
  .footer_inner {
    padding-top: 65px;
  }
}
.footer_gnav {
  margin-bottom: 40px;
}
.footer_gnav ul {}
.footer_gnav li {
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 960px) {
  .footer_gnav li {
    font-size: 18px;
  }
}
.footer_gnav li a {
  color: #524340;
}
.footer_gnav li:last-of-type {
  margin-bottom: 0;
}
.footer_contents {}
.footer_logo {
  width: calc(61 / 198 * 100%);
  aspect-ratio: 61/34;
  margin: 0 auto 40px;
  max-width: 71px;
}
.footer_txt {}
.sp_sns_icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: calc(16 / 107 * 100%);
  width: calc(107 / 198 * 100%);
  aspect-ratio: 107/26;
  margin: 0 auto 30px;
  max-width: 117px;
}
.sp_sns_icon a {
  display: block;
  width: calc(25 / 107 * 100%);
  aspect-ratio: 1/1;
}
.sp_copyright {}
.sp_copyright p {
  margin-bottom: 5px;
  font-size: 10px;
  text-align: center;
  color: #524340;
}
@media screen and (min-width: 960px) {
  .sp_copyright p {
    font-size: 12px;
  }
}
@media screen and (min-width: 960px) {
  footer {}
}
/**********************************************
    $head button
***********************************************/
.header_btn {}
.head_btn {
  color: #fff;
  background-color: #FF9372;
  border: solid 2px #FF4F2B;
  border-radius: 100vh;
  aspect-ratio: 124/36;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 10px;
  max-width: 480px;
  transition: 0.6s;
}
.head_btn:hover {
  background-color: #FF4F2B;
}
.header_btn img {
  display: block;
  width: 16px;
  height: 18px;
}
/**********************************************
    $link button
***********************************************/
.lnk_btn {
  width: calc(272 / 375 * 100%);
  color: #fff;
  background-color: #FF9372;
  border: solid 2px #FF4F2B;
  border-radius: 100vh;
  aspect-ratio: 272/56;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  transition: 0.6s;
}
.lnk_btn:hover {
  background-color: #FF4F2B;
}
.btn_text {
  font-size: 16px;
  line-height: 1.2;
}
.lnk_btn img {
  display: block;
  width: 22px;
  height: 21px;
  position: absolute;
  right: 30px;
  z-index: 1;
}
@media screen and (min-width: 1366px) {
  .lnk_btn {}
}
/**********************************************
    $page top button
***********************************************/
.pagetop {
	display: block;
	  width: calc(64 / 375 * 100%);
	  max-width: 84px;
	  position: relative;
  top: 0;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.pagetop_arrow {
  width: calc(17.45 / 64 * 100%);
  aspect-ratio: 17.45/9.26;
  position: absolute;
place-self:center;
inset:0;
	z-index: 1;
}
.pagetop_arrow img{
	display: block;
}
.pagetop_txt {
  aspect-ratio: 1/1;
  animation: pagetop 20s linear infinite;
}
@keyframes pagetop {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg)
  }
}
/**********************************************
    $section title
***********************************************/
.sec_ttl {
  background-image: url("../img/section_title.png");
  background-repeat: no-repeat;
  background-size: calc(223 / 375 * 100%);
  background-position: top center;
  height: 100%;
  color: #F99A9A;
  padding: 21px 44px;
  margin-bottom: 40px;
}
@media screen and (min-width: 400px) {
  .sec_ttl {
    padding: 31px 44px;
  }
}
@media screen and (min-width: 480px) {
  .sec_ttl {
    padding: 41px 44px;
  }
}
.sec_ttl p {
  font-family: "Amiri", serif;
  font-weight: 100;
  font-style: normal;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 1.2px;
  text-align: center;
}
.sec_ttl p::after {
  content: "";
  display: block;
  width: calc(74 / 223 * 100%);
  border-bottom: solid 0.5px #F99A9A;
  margin: 0 auto 5px;
  padding-top: 5px;
}
.sec_ttl h2 {
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0;
  text-align: center;
}
/**********************************************
	$font
***********************************************/
@font-face {
  font-family: 'HigureGothic', sans-serif;
  src: url('fonts/HigureGothic.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
/**********************************************
	$animation
***********************************************/
.anime_noscroll.is_show {
  clip-path: inset(0);
}
.anime {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.7s ease, transform 1.7s ease;
}
.anime.is_show {
  opacity: 1;
  transform: translateY(0);
}
.fadeanime {
  opacity: 0;
}
.fadeanime.is_show {
  opacity: 1;
  animation: fade 1.8s ease-out;
  transition-delay: 0.5s;
}
.animation, .animation_noscroll {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.5s cubic-bezier(0.09, 0.13, 0.55, 1.1);
  transition-delay: 0.5s;
}
.animation.is_show, .animation_noscroll.is_show {
  clip-path: inset(0);
}
.slide1_noscroll.is_show {
  clip-path: inset(0);
}
.slide1 {
  opacity: 0;
  transform: translatex(-90px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.slide1.is_show {
  opacity: 1;
  transform: translateY(0);
}
.slide2_noscroll.is_show {
  clip-path: inset(0);
}
.slide2 {
  opacity: 0;
  transform: translatex(90px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.slide2.is_show {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}