@charset "UTF-8";
@keyframes is-open-pc {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    opacity: 1;
  }
}
/* Base Style
===============================*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1535px) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 1326px) {
  html {
    font-size: 44%;
  }
}
@media screen and (max-width: 800px) {
  html {
    font-size: 62.5%;
  }
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img {
  height: auto;
}

a:hover {
  cursor: pointer;
}

/* Visible Style
===============================*/
@media screen and (max-width: 1110px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 1110px) {
  .tb {
    display: none;
  }
}

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

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

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

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

#footer-link-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  #footer-link-sp {
    display: flex;
  }
}

@media screen and (max-width: 600px) {
  #footer-link-pc {
    display: none;
  }
}

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

@media screen and (max-width: 1110px) {
  .nav-pc {
    display: none;
  }
}

/* Header Section 
===============================*/
.header-body {
  position: fixed;
  width: 100%;
  border-radius: 0 0 100px 100px;
  background-color: #ffffff;
  box-shadow: 0px 2px 1px rgba(96, 53, 44, 0.05);
  z-index: 1000;
  transition: 0.15s;
}
@media screen and (max-width: 800px) {
  .header-body {
    border-radius: 0 0 40px 40px;
  }
}
.header-body div.header-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 66%;
  margin: 0 auto;
  padding-top: 22px;
  padding-bottom: 22px;
  z-index: 2000;
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide {
    padding-top: 16px;
    padding-bottom: 16px;
    width: 82%;
  }
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide .header-logo {
    width: 134px;
  }
  .header-body div.header-wide .header-logo img {
    width: 100%;
  }
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .header-logo {
    width: 114px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide .header-logo {
    width: 90px;
  }
}
.header-body div.header-wide .nav-list-main {
  display: flex;
  justify-content: space-between;
  width: 62%;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-list-main {
    width: 49%;
  }
}
.header-body div.header-wide .nav-list-main li {
  font-size: 1.7rem;
  font-weight: 900;
  color: #3b201b;
}
@media screen and (max-width: 800px) {
  .header-body div.header-wide .nav-list-main li {
    font-size: 1rem;
  }
}
.header-body div.header-wide .nav-button div {
  width: 25px;
  height: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div {
    width: 19px;
  }
}
.header-body div.header-wide .nav-button div:hover {
  cursor: pointer;
}
.header-body div.header-wide .nav-button div:first-child {
  background-color: #008132;
  margin-bottom: 7.5px;
  transition: 0.3s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:first-child {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(2) {
  background-color: #c8000f;
  margin-bottom: 7.5px;
  transition: 0.2s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:nth-child(2) {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(3) {
  background-color: #ffc400;
  transition: 0.2s;
}
.header-body div.header-wide .nav-active:first-child {
  transform: rotate(45deg) translate(10px, 10px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:first-child {
    transform: rotate(45deg) translate(7px, 7px);
  }
}
.header-body div.header-wide .nav-active:nth-child(2) {
  opacity: 0;
}
.header-body div.header-wide .nav-active:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}

.header-body-open {
  border-radius: 0;
  transition: 0.15s;
  z-index: 1000;
}

.nav-open {
  position: absolute;
  position: fixed;
  top: -100px;
  width: 100%;
  height: 73px;
  background-color: #ffc400;
  z-index: 200;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open {
    height: 66px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open {
    overflow-y: scroll;
  }
}
.nav-open .header-curve {
  width: 100vw;
}
@media screen and (max-width: 1110px) {
  .nav-open .header-curve {
    display: none;
  }
}
.nav-open .header-curve img {
  width: 100%;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp {
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
    padding: 0 10% 0 10%;
  }
}
.nav-open .nav-container-sp .common-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  padding: 47px 22px 0 22px;
  margin: 0 auto 0 auto;
}
@media screen and (max-width: 1535px) {
  .nav-open .nav-container-sp .common-menu {
    max-width: 1000px;
    padding-top: 36px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu {
    display: block;
    width: auto;
    padding: 0;
    margin: 0;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    margin-bottom: 24px;
    font-size: 24px;
    color: #3b201b;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 21px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 19px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
  margin-bottom: 20px;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 15px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect .header-menu-img {
  width: auto;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .header-menu-img {
    display: block;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list {
  display: flex;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li {
  padding-right: 11px;
  padding-left: 11px;
  border-right: 1px solid #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
  padding-left: 0;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect #menu-effect-last {
  margin-bottom: 28px;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns {
  display: flex;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns li {
  padding-left: 10px;
}
@media screen and (max-width: 1110px) {
  .nav-open #header_sns_sp {
    display: inline;
    animation: is-open-pc 0.47s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
    opacity: 0;
  }
  .nav-open #header_sns_sp li {
    margin-bottom: 22px;
  }
  .nav-open #header_sns_sp img {
    width: 32px;
  }
}
.nav-open .pc-effect-active {
  animation: is-open-pc 0.47s ease-in-out;
  animation-fill-mode: forwards;
  opacity: 0;
}
.nav-open .pc-effect-active:nth-child(2) {
  animation-delay: 0.2s;
}
.nav-open .pc-effect-active:nth-child(3) {
  animation-delay: 0.3s;
}
.nav-open .pc-effect-active:nth-child(4) {
  animation-delay: 0.4s;
}
.nav-open .pc-effect-active:nth-child(5) {
  animation-delay: 0.5s;
}
.nav-open .pc-effect-active:nth-child(6) {
  animation-delay: 0.6s;
}
.nav-open .pc-effect-active:nth-child(n+7) {
  animation-delay: 0.7s;
}
@media screen and (max-width: 1110px) {
  .nav-open .pc-effect-active:nth-child(6) {
    animation-delay: 0s;
  }
  .nav-open .pc-effect-active:nth-child(7) {
    animation-delay: 0.1s;
  }
  .nav-open .pc-effect-active:nth-child(8) {
    animation-delay: 0.2s;
  }
  .nav-open .pc-effect-active:nth-child(9) {
    animation-delay: 0.3s;
  }
  .nav-open .pc-effect-active:nth-child(10) {
    animation-delay: 0.4s;
  }
  .nav-open .pc-effect-active:nth-child(11) {
    animation-delay: 0.5s;
  }
  .nav-open .pc-effect-active:nth-child(12) {
    animation-delay: 0.6s;
  }
  .nav-open .pc-effect-active:nth-child(13) {
    animation-delay: 0.7s;
  }
  .nav-open .pc-effect-active:nth-child(n+14) {
    animation-delay: 0.8s;
  }
}

.nav-open-active {
  top: 100px;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open-active {
    top: 70px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open-active {
    top: 0px;
    width: 100vw;
    height: 100vh;
  }
}

/* Footer Section 
================================*/
footer {
  z-index: 500;
}

.app-link {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: #c8000f;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .app-link {
    padding-top: 24px;
    padding-bottom: 20px;
  }
}
.app-link img {
  max-width: 956px;
}
@media screen and (max-width: 1535px) {
  .app-link img {
    max-width: 878px;
  }
}
@media screen and (max-width: 1110px) {
  .app-link img {
    max-width: 70%;
  }
}
@media screen and (max-width: 800px) {
  .app-link img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .app-link img {
    max-width: 88%;
  }
}

.footer-nav {
  padding-top: 70px;
  padding-bottom: 72px;
  background-color: #60352c;
  background-image: url(/lp/2025_10_minisoft_cp/images/footer_illust.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 800px) {
  .footer-nav {
    background-image: url(/lp/2025_10_minisoft_cp/images/footer_illust_sp.png);
    padding-top: 35px;
    padding-bottom: 110px;
    padding-left: 8.1%;
    padding-right: 8.1%;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav {
    padding-bottom: 90px;
  }
}
.footer-nav ul.footer-link {
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 25px auto;
  color: #fff;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1110px) {
  .footer-nav ul.footer-link {
    max-width: 700px;
  }
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link {
    font-size: 1.1rem;
  }
}
.footer-nav ul.footer-link li {
  width: 25%;
  margin-bottom: 21px;
}
.footer-nav ul.footer-link li:nth-child(4n+1) {
  width: 24%;
  padding-left: 1%;
}
.footer-nav ul.footer-link li:nth-child(4n+2) {
  width: 24%;
}
.footer-nav ul.footer-link li:nth-child(4n+3) {
  width: 27%;
}
.footer-nav ul.footer-link li:nth-child(4n+4) {
  width: 23.7%;
}
.footer-nav ul.footer-link li:nth-child(-n+4) {
  margin-bottom: 22px;
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 16px;
    line-height: 1.7;
  }
  .footer-nav ul.footer-link li:nth-child(4n+1) {
    width: 50%;
    padding-right: 10%;
    padding-left: 0;
  }
  .footer-nav ul.footer-link li:nth-child(4n+2) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+3) {
    width: 50%;
    padding-right: 10%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+4) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 15px;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav #footer-link-sp {
    display: flex;
  }
}
.footer-nav .footer-sns {
  display: flex;
  justify-content: space-between;
  width: 206px;
  margin: 0 auto 15px auto;
}
@media screen and (max-width: 600px) {
  .footer-nav .footer-sns {
    display: flex;
    justify-content: space-between;
    width: 167px;
    margin-bottom: 20px;
  }
}
.footer-nav .copy {
  font-size: 1.1rem;
  color: #a38680;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .footer-nav .copy {
    font-size: 1rem;
  }
}

/* OP STYLE
===============================*/
/* COLUMN STYLE
===============================*/
.column {
  position: relative;
  overflow: visible;
}

/* Media Query
===============================*/
/* Margin Calc Set
===============================*/
/* 定番 TRANSITION-Y
================================*/
.opacity-active {
  opacity: 1;
  transition: 0.75s ease-in-out;
}

.trans-y-small {
  opacity: 0;
  transform: translateY(3%);
}

.trans-y-small-active {
  opacity: 1;
  transform: translateY(0%);
  transition: 0.75s ease-in-out;
}

.trans-y {
  opacity: 0;
  transform: translateY(5%);
}

.trans-y-active {
  opacity: 1;
  transform: translateY(0%);
  transition: 0.75s ease-in-out;
}

.trans-y-large {
  opacity: 0;
  transform: translateY(8%);
}

.trans-y-large-active {
  opacity: 1;
  transform: translateY(0%);
  transition: 0.75s ease-in-out;
}

/* 定番 KEYFRAMES
================================*/
/*
@keyframes slide-in-01{
  0%{
      transform: translateX(-125%);  
      opacity: 1;      
  }
  100%{
      transform: translateX(0%);      
      opacity: 1;  
  }
}
@keyframes slide-in-02{
  0%{
      transform: translateX(125%);
      opacity: 1; 
  }
  100%{
      transform: translateX(0%);   
      opacity: 1;     
  }
}
.slide-in-wrap{    
  overflow: hidden;
  opacity: 0;
}
.slide-in-wrap-active{    
  animation: slide-in-01 0.75s ease-out forwards;
}
.slide-in-active{
  animation: slide-in-02 0.75s ease-out forwards;    
}
.pop-active{
  animation: appear-vegi 0.5s ease-in-out forwards;
}
*/
@keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.flash {
  opacity: 0;
  animation: flash 1.5s ease-in-out infinite;
}

@keyframes up-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15%);
  }
  100% {
    transform: translateY(0);
  }
}
.up-down {
  animation: up-down 3s ease-in-out alternate infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
.rotate {
  animation: rotate 2.5s ease-in-out alternate infinite;
}

@keyframes puru-rotate {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  60% {
    transform: rotate(0deg);
  }
}
@keyframes pon {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
  }
  85% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes left-right {
  0% {
    transform: translateX(5%);
  }
  50% {
    transform: translateX(-5%);
  }
  100% {
    transform: translateX(5%);
  }
}
.left-right {
  animation: left-right 4s ease-in-out infinite;
}

.main-visual {
  opacity: 0;
}

.main-visual-active {
  animation: pon 0.3s ease-in-out forwards;
}

/* Media Query
===============================*/
/* Margin Calc Set
===============================*/
/* LP Common Style
===============================*/
img {
  width: 100%;
  height: auto;
}

.abs {
  position: absolute;
}

.abs-def {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.rel {
  position: relative;
}

.sticky {
  position: sticky;
}

.mt-1 {
  margin-top: -1px;
}

.zeroA {
  margin: 0 auto;
}

.opacity {
  opacity: 0;
}

/* Delay Set
===============================*/
.delay-01 {
  transition-delay: 0.1s;
  animation-delay: 0.1s;
}

.delay-015 {
  transition-delay: 0.1s;
  animation-delay: 0.1s;
}

.delay-02 {
  transition-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay-025 {
  transition-delay: 0.25s;
  animation-delay: 0.25s;
}

.delay-03 {
  transition-delay: 0.3s;
  animation-delay: 0.3s;
}

.delay-035 {
  transition-delay: 0.35s;
  animation-delay: 0.35s;
}

.delay-04 {
  transition-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay-045 {
  transition-delay: 0.45s;
  animation-delay: 0.45s;
}

.delay-05 {
  transition-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-055 {
  transition-delay: 0.55s;
  animation-delay: 0.55s;
}

.delay-06 {
  transition-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay-08 {
  transition-delay: 0.8s;
  animation-delay: 0.8s;
}

.pt {
  padding-top: 200px;
}

/* 背景 設定
===============================*/
.wrap {
  width: 100%;
  background-image: url(/lp/2025_10_minisoft_cp/images/main_bg.png);
  background-color: #fff;
  background-size: 1920px;
  background-position: top center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1535px) {
  .wrap {
    background-size: 1535px;
  }
}
@media screen and (max-width: 1110px) {
  .wrap {
    background-size: 100%;
    background-image: url(/lp/2025_10_minisoft_cp/images/main_bg_sp.png);
  }
}

/* メインビジュアル関連
===============================*/
.sec-mv .main-h1 {
  width: 920px;
}
@media screen and (max-width: 1535px) {
  .sec-mv .main-h1 {
    width: 690px;
  }
}
@media screen and (max-width: 1110px) {
  .sec-mv .main-h1 {
    width: 100%;
  }
}
.sec-mv .main-visual {
  width: 340px;
  margin-top: -145px;
}
@media screen and (max-width: 1535px) {
  .sec-mv .main-visual {
    width: 255px;
    margin-top: -109px;
  }
}
@media screen and (max-width: 1110px) {
  .sec-mv .main-visual {
    width: 42.9%;
    margin-top: -23vw;
  }
}
.sec-mv .main-name {
  width: 920px;
}
@media screen and (max-width: 1535px) {
  .sec-mv .main-name {
    width: 690px;
  }
}
@media screen and (max-width: 1110px) {
  .sec-mv .main-name {
    width: 100%;
  }
}

/* 詳細関連
===============================*/
.sec-about {
  width: 730px;
  padding-bottom: 120px;
}
@media screen and (max-width: 1535px) {
  .sec-about {
    width: 548px;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1110px) {
  .sec-about {
    width: 85%;
    padding-bottom: 40vw;
  }
}
.sec-about .about-card-height {
  height: 365px;
}
@media screen and (max-width: 1535px) {
  .sec-about .about-card-height {
    height: 274px;
  }
}
@media screen and (max-width: 1110px) {
  .sec-about .about-card-height {
    height: 45vw;
  }
}
.sec-about .about-card-height .about-ph {
  top: -8%;
}
.sec-about .about-card {
  width: 730px;
  background-color: #FFF;
  border-radius: 70px;
}
@media screen and (max-width: 1535px) {
  .sec-about .about-card {
    width: 548px;
  }
}
@media screen and (max-width: 1110px) {
  .sec-about .about-card {
    width: 100%;
    border-radius: 10vw;
    padding-bottom: 1vw;
  }
}
.sec-about .about-caption {
  font-size: 1.5rem;
  line-height: 1.8;
  font-feature-settings: "palt";
  margin-top: 30px;
  margin-bottom: 108px;
  color: #3b201b;
}
@media screen and (max-width: 1535px) {
  .sec-about .about-caption {
    margin-top: 22px;
    margin-bottom: 81px;
  }
}
@media screen and (max-width: 1110px) {
  .sec-about .about-caption {
    font-size: 3.2vw;
    margin-top: 5.5vw;
    margin-bottom: 14vw;
  }
}
.sec-about .about-anker {
  display: block;
  filter: drop-shadow(10px 10px 20px rgba(183, 227, 237, 0.9));
}
@media screen and (max-width: 1535px) {
  .sec-about .about-anker {
    filter: drop-shadow(6px 6px 15px rgba(183, 227, 237, 0.7));
  }
}
.sec-about .about-h4 {
  font-size: 1.7rem;
  font-feature-settings: "palt";
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #3b201b;
}
@media screen and (max-width: 1535px) {
  .sec-about .about-h4 {
    margin-top: 22px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 1110px) {
  .sec-about .about-h4 {
    width: 80%;
    font-size: 4vw;
  }
}
.sec-about .about-shop-p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  font-feature-settings: "palt";
  margin-top: 10px;
  color: #3b201b;
}
@media screen and (max-width: 1535px) {
  .sec-about .about-shop-p {
    margin-top: 7px;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 1110px) {
  .sec-about .about-shop-p {
    font-size: 3.2vw;
    margin-bottom: 0;
  }
}

/* 北海道を味わうソフトクリーム
===============================*/
.sec-secret {
  width: 1000px;
  margin-top: 100px;
  padding-bottom: 180px;
}
@media screen and (max-width: 1535px) {
  .sec-secret {
    width: 750px;
    margin-top: 75px;
    padding-bottom: 135px;
  }
}
@media screen and (max-width: 1110px) {
  .sec-secret {
    width: 100%;
    margin-top: 10vw;
    padding-bottom: 34vw;
    overflow-x: clip;
  }
}
.sec-secret .secret-do {
  width: 29.8%;
}
@media screen and (max-width: 1110px) {
  .sec-secret .secret-do {
    width: 60.5%;
  }
}
.sec-secret .secret-do-01 {
  top: 21%;
  left: 36%;
}
@media screen and (max-width: 1110px) {
  .sec-secret .secret-do-01 {
    top: 12%;
    left: -3%;
  }
}
.sec-secret .secret-do-02 {
  top: 52%;
  left: 11%;
}
@media screen and (max-width: 1110px) {
  .sec-secret .secret-do-02 {
    top: 28%;
    left: 47%;
  }
}
.sec-secret .secret-do-03 {
  top: 53%;
  left: 58%;
}
@media screen and (max-width: 1110px) {
  .sec-secret .secret-do-03 {
    top: 60%;
    left: -3%;
  }
}
.sec-secret .secret-cloud-01 {
  width: 20%;
  top: 52%;
  left: -10%;
}
@media screen and (max-width: 1110px) {
  .sec-secret .secret-cloud-01 {
    width: 22%;
    top: 53%;
    left: -5%;
  }
}
.sec-secret .secret-cloud-02 {
  width: 18.8%;
  top: 30%;
  left: 82%;
}
@media screen and (max-width: 1110px) {
  .sec-secret .secret-cloud-02 {
    width: 24%;
    top: 18%;
    left: 72%;
  }
}
.sec-secret .secret-cloud-03 {
  width: 16%;
  top: 88%;
  left: 82%;
}
@media screen and (max-width: 1110px) {
  .sec-secret .secret-cloud-03 {
    width: 25%;
    top: 76%;
    left: 70%;
  }
}
.sec-secret .secret-cloud-04 {
  width: 11.9%;
  top: 100%;
  left: 12%;
}
.sec-secret .secret-cloud-05 {
  width: 8.8%;
  top: 110.3%;
  left: 62%;
}

@media screen and (max-width: 1110px) {
  .secret-anker {
    display: block;
    margin-top: 12vw;
  }
}/*# sourceMappingURL=style.css.map */