/* ----------------------------------------------
共通
----------------------------------------------- */

:root{
  --textColor:#666;
  --primaryColor:#004B80;
  --accentColor:#FF9AB3;
  --secondAccentColor:#FFD5DF;

  --lineColor:#9EB1BF;
  --bgColor:#FFFDF9;

  --primaryFont:"Zen Maru Gothic", serif;
}

body{
 font-family:"Noto Sans JP", sans-serif;
 color: var(--textColor);
 font-size: 16px;
 font-weight: 500;
 /* letter-spacing: 0.05em; */
 background-color: var(--bgColor);
 
 overflow-x: hidden;
}

@media screen and (max-width: 767px) {
  body{
    font-size: 14px;
   }
   
}

/* ----------------------------------------------
スムーススクロール
----------------------------------------------- */
html{
  scroll-behavior: smooth;
  scroll-padding-top: 120px
}

@media screen and (max-width: 767px) {

  html{
    scroll-padding-top: 90px
  }

}

/* ----------------------------------------------
PC・SPの切り替え
----------------------------------------------- */

@media screen and (min-width: 768px) {
  .-pc{
    display: block ;
  }

  .-sp{
    display: none;
  }
}

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

  .-sp{
    display: block;
  }
}

/* ----------------------------------------------
レイアウト
----------------------------------------------- */

.l-container{
  width: 100%;
  max-width: 1340px;
  margin-inline: auto;
  padding-inline: 20px;
}

.l-container02{
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 20px;
}


.l-header {
  position: fixed;
  top: 0;
  width: 100%;

  z-index: 100;
}

/* ----------------------------------------------
余白調整
----------------------------------------------- */

.c-contentSpacer{
  margin-top: 240px;
}

@media screen and (max-width: 767px) {
  .c-contentSpacer{
    margin-top: 160px;
  }
  
}

/* ----------------------------------------------
共通
----------------------------------------------- */

/* - 見出し
----------------------------------------------- */

.c-heading{
 display:inline-block;
 margin-bottom: 120px;
 text-align: center;
}

.c-heading.-center{
  display: flex;
  flex-direction: column;
}

.c-heading__en{
  font-family: var(--primaryFont);
  font-size:clamp(3.75rem, 0.467rem + 7.12vw, 6.25rem);
  font-weight: 500;
  color: var(--secondAccentColor);
  letter-spacing: 0;
  line-height: 0.8;
}

.c-heading__jp{
  font-family: var(--primaryFont);
  font-size:clamp(0.938rem, 0.199rem + 1.6vw, 1.5rem);
  color: var(--primaryColor);
  letter-spacing: 0;
  font-weight: 600;
  margin-top: -8px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-heading{
    margin-bottom: 60px;
   }
   
  .c-heading__en{
    font-size:clamp(3.125rem, 2.678rem + 2.24vw, 3.75rem);
  }

  .c-heading__jp{
    font-size:clamp(0.938rem, 0.803rem + 0.67vw, 1.125rem);
  }
}

/* - ボタンと矢印 c-btn c-arrow
----------------------------------------------- */
.c-arrow{
  position: relative;
	display: inline-block;
  border-radius: 50%;
  background-color: var(--accentColor);
  width: 40px;
  height: 40px;
  margin-left: 8px;
  border: #fff 1.5px solid;
  flex-shrink: 0; /* これで小さくならない */
}

.c-arrow::before,
.c-arrow::after{
  content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}

.c-arrow::before{
	left: 50%;
  transform: translateX(-50%);
	width: 16px;
	height: 1.5px;
	background: #fff;
}
.c-arrow::after{
	right: 12px;
	width: 8px;
	height: 8px;
	border-top: 1.5px solid #fff;
	border-right: 1.5px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
  .c-btn:hover .c-arrow{
    background-color: #fff;
    border: var(--accentColor) 1.5px solid;
    transition: ease 0.4s;
  } 

  .c-btn:hover .c-arrow::before{
    background: var(--accentColor);
    transition: ease 0.4s;
  }
  .c-btn:hover .c-arrow::after{
    border-top: 1.5px solid var(--accentColor);
    border-right: 1.5px solid var(--accentColor);
    transition: ease 0.4s;

  }
}

/* - ボタンと矢印 c-btn02 c-arrow02
----------------------------------------------- */
.c-btn02 a{
  display: flex;
  gap: 40px;
  align-items: center;
  color: #FFF;

  padding: 16px 20px;
  border-radius: 0 10px 0 10px;
}

.c-btn02.-blue a{
  background-color: var(--primaryColor);
  border: 1px solid var(--primaryColor);
}

.c-btn02.-pink a{
  background-color: var(--accentColor);
  border: 1px solid var(--accentColor);
}

.c-btn02 p{
  display: inline-block;
  font-size: 1.25rem;
  font-family: var(--primaryFont);
}

.c-arrow02{
  position: relative;
	display: inline-block;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-left: 8px;
  flex-shrink: 0; /* これで小さくならない */
  background-color: #fff;
}

.c-arrow02::before,
.c-arrow02::after{
  content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}

.c-arrow02::before{
	left: 50%;
  transform: translateX(-50%);
	width: 16px;
	height: 1.5px;
  background: var(--primaryColor);
}
.c-arrow02::after{
	right: 12px;
	width: 8px;
	height: 8px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
  border-top: 1.5px solid var(--primaryColor);
	border-right: 1.5px solid var(--primaryColor);
}

@media screen and (min-width: 768px) {
  .c-btn02.-blue:hover a{
    background-color: #fff;
    transition: ease 0.4s;
  }

  .c-btn02.-pink:hover a{
    background-color: #fff;
    transition: ease 0.4s;
  }

  .c-btn02:hover .c-arrow02::before{
    background: #fff;
  }
  .c-btn02:hover .c-arrow02::after{
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
  }

  .c-btn02.-blue:hover a{
    color: var(--primaryColor);
    transition: ease 0.4s;
  }

  .c-btn02.-pink:hover a{
    color: var(--accentColor);
    transition: ease 0.4s;
  }

  .c-btn02.-blue:hover .c-arrow02{
    background-color: var(--primaryColor);
    transition: ease 0.4s;
  } 

  .c-btn02.-pink:hover .c-arrow02{
    background-color:var(--accentColor);
    transition: ease 0.4s;
  } 
}

@media screen and (max-width: 767px) {

  .c-btn02 a{
    display: flex;
    justify-content: space-between;
    gap: 20px;}

  .c-btn02 p{
    font-size: 1.125rem;
  }
}


/* ----------------------------------------------
header
----------------------------------------------- */

.p-header{
  padding: 40px 2.8vw 20px 2.8vw;
  font-family: var(--primaryFont);
}

.p-header__logo {
  width: clamp(10.625rem, -0.486rem + 23.15vw, 16.875rem);
}

.p-header__logo a{
  display: block;
}

.p-header__logo img{
  width: 100%;
  height: auto;
}

.c-drawer{
  display: none;
}

.p-globalNav__listItem{
  position: relative;
  cursor: pointer;
}

.p-globalNav__listItem .p-globalNav__link,
.p-globalNav__submenuItem > a{
  display: block;
  color: var(--textColor);
  font-size: clamp(0.938rem, 0.603rem + 0.7vw, 1.125rem);
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap
}


.p-globalNav__list .p-globalNav__listItem .p-globalNav__link{
  position: relative;
}

.p-globalNav__list .p-globalNav__listItem.-hasChild .p-globalNav__link:before,
.p-globalNav__list .p-globalNav__listItem.-hasChild .p-globalNav__link:after {
  content: '';
  position: absolute;

  transition: ease 0.4s;
  opacity: 1;

  border-radius: 10px;

}


.p-header.js-active .p-header__logo{
  width: 150px;
  transition: ease 0.4s;
}


@media screen and (min-width: 768px) {

  .p-header__wrap{
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .p-header__drawerWrap{
    margin-left: auto;
  }

  .p-globalNav{
    padding: 16px
  }

  .p-globalNav__list{
    display: flex;
    justify-content: flex-end;
  }

  .p-globalNav__list .p-globalNav__listItem .p-globalNav__link{
    padding-left: 1.4vw;
    padding-right: 1.4vw;

    display: flex;
    align-items: center;
  }

  .p-globalNav__list .p-globalNav__listItem.-hasChild .p-globalNav__link{
    padding-right: calc(1.4vw + 14px);
  }

  .p-globalNav__list .p-globalNav__listItem.-hasChild .p-globalNav__link:before{
    width: 2px;
   height: 14px;
   top: 7px;
   right: calc(1.4vw + 2.5px) ;
   background-color: var(--accentColor);
 }
 
 .p-globalNav__list .p-globalNav__listItem.-hasChild .p-globalNav__link:after {
   width: 14px;
   height: 2px;
   top: 13px;
   right: calc(1.4vw - 4px);
   background-color: var(--accentColor);
 }

  .p-globalNav__list .p-globalNav__listItem.-hasChild:hover .p-globalNav__link:before{
    transform: rotate(90deg);
    opacity: 0;
  }

  .p-globalNav__submenu{
    visibility: hidden;
    opacity: 0;
    transition: ease 0.4s;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    margin-top: 10px;
    padding: 20px 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.05);

    display: flex;
    flex-direction: column;
    gap: 16px;
  }


  .p-globalNav__submenu .p-globalNav__submenuItem > a{
    width: 100%;
    display: flex;
    align-items: center;
 
  }

  .p-globalNav__list .p-globalNav__listItem .p-globalNav__link:hover,
  .p-globalNav__submenu .p-globalNav__submenuItem > a:hover{
    color: #333;
    transition: ease 0.4s;
  }

  .p-globalNav__listItem:hover .p-globalNav__submenu{
    visibility: visible;
    opacity: 1;
  }

  .p-header.js-active .p-globalNav{
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.05);
    transition: ease 0.4s;
  }

  .p-header.js-active .p-globalNav__submenu {
    margin-top: 24px;
  }}

@media screen and (max-width: 767px) {

  body.open{
    width: 100%;
    overflow: hidden;
  }

  .p-header{
    height: 80px;
    display: block;
    padding: 0;
  }

  .p-header__wrap{
    height: 80px;
  }

  .p-header__logo{
    width: clamp(9.375rem, 4.475rem + 24.5vw, 16.25rem);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .p-header__drawerWrap{
    position: fixed;
    width: 100%;
    max-width: 250px;
    top:0;
    right: -100%;
    background: var(--primaryColor);
    transition: ease 0.4s;
    overflow-y: scroll;
    padding: 120px 45px 20px 45px;
    color: #fff;
    border-radius: 0 0 0 40px;
  }

  .p-drawer__logo{
    width: 115px;
    margin-bottom: 40px;
  }

  .p-drawer__illust{
    width: 130px;
    margin-top: 24px;
    margin-left: auto;
    margin-right: -25px;
  }

  .p-globalNav{
    width: 100%;
  }

  .p-globalNav__list{
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .p-globalNav__list .p-globalNav__listItem .p-globalNav__link,
  .p-globalNav__list .p-globalNav__submenuItem > a {
    color: #fff;
  }

  .p-globalNav__list .p-globalNav__listItem .p-globalNav__link{
    font-size: 1rem;
    display: inline;
  }

  .p-globalNav__list .p-globalNav__listItem.-hasChild .p-globalNav__link{
    padding-right: 20px;
    position: relative;
  }

  .p-globalNav__list .p-globalNav__listItem.-hasChild .p-globalNav__link:before,
  .p-globalNav__list .p-globalNav__listItem.-hasChild .p-globalNav__link:after {
  background: #fff;
  }

  .p-globalNav__list .p-globalNav__listItem.-hasChild .p-globalNav__link:before{
    width: 1px;
    height: 14px;
    top: 4px;
    right: 7px;
  }

  .p-globalNav__list .p-globalNav__listItem.-hasChild .p-globalNav__link:after {
    width: 14px;
    height: 1px;
    top: 10px;
    right: 0;
  }

  .p-globalNav__submenu{
    margin-top: 8px;

    padding-left: 10px;

    display: none;
    opacity: 0;
  }

  .p-globalNav__submenu .p-globalNav__submenuItem{
    position: relative;
    padding-left: 1em;
  }

  .p-globalNav__submenu .p-globalNav__submenuItem + .p-globalNav__submenuItem{
    margin-top: 8px;
  }

  .p-globalNav__submenu .p-globalNav__submenuItem > a{
    font-size: 0.75rem;
    display: inline-block;
  }

  .p-globalNav__submenu .p-globalNav__submenuItem::before{
    content: "・";
  }

  /* アコーディオン */
  .p-globalNav__submenu.open{
    display: block;

    animation-name: fadeIn;
    animation-fill-mode:forwards;
    animation-duration:1s;
  }

  @keyframes fadeIn{
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  .p-globalNav__listItem.-hasChild .p-globalNav__link.open:before{
    transform: rotate(90deg);
    opacity: 0;
  }


  /* ハンバーガー */
  .c-drawer.open .navbar_toggle_icon:nth-child(1) {
    top: 32px;
    left: 20px;
  }

  .c-drawer.open .navbar_toggle_icon:nth-child(2) {
    top: 25px;
    left: 20px;
  }

  .p-header__drawerWrap.open{
    right: 0;
  }

  .c-drawer{
    position: absolute;
    width: 40px;
    height:  40px;
    display: block;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .navbar_toggle {
    position: relative;
    display: block;
    z-index: 999;
    width: 40px;
    height:  40px;

    border-radius: 50%;
    background-color: var(--accentColor);
  }

  .navbar_toggle::after{
    position: absolute;
    content: "MENU";

    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primaryColor);

    top: 44px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.4s;
  }

  .navbar_toggle_icon {
    position: relative;
    display: block;
    height: 1px;
    width: 15px;
    -webkit-transition: ease 0.5s;
    transition: ease 0.4s;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    background: #fff;
  }

  .navbar_toggle_icon:nth-child(1) {
    top: calc(50% + 8px);
    transition: 0.4s;
  }

  .navbar_toggle_icon:nth-child(2) {
    transition: 0.4s;
  }

  .navbar_toggle_icon:nth-child(3) {
    top: calc(50% - 8px);
    transition: 0.4s;
    opacity: 1;
  }

  /* 閉じる */
  .c-drawer.open .navbar_toggle {
    background-color:#FFF;
  }

  .c-drawer.open .navbar_toggle::after{
    content: "CLOSE";
    color: #fff;
  }

  .c-drawer.open .navbar_toggle_icon{
    background:var(--accentColor);
  }
  .c-drawer.open .navbar_toggle_icon:nth-child(1) {
    top: calc(50% + 1px);
    left: 50%;
    transform:  translate(-50%, -50%) rotate(45deg);
  }

  .c-drawer.open .navbar_toggle_icon:nth-child(2) {
    top: 50%;
    left: 50%;
    transform:translate(-50%, -50%) rotate(-45deg);
  }

  .c-drawer.open .navbar_toggle_icon:nth-child(3) {
    opacity: 0;
  }

  /* ハンバーガー開いた時のオーバーレイ */
  .u-overlay{
    opacity: 0;
    visibility: hidden;
    transition: ease 0.4s; 
    position: fixed;
    background: rgba(255,213,223,.8);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

  }

  .u-overlay.open{
    opacity: 1;
    visibility: visible;
    z-index: 99;
  }  
  
}

/* ----------------------------------------------
footer
----------------------------------------------- */

.p-footer{
  margin-top: 180px;
}

/* - cotact お問い合わせ
----------------------------------------------- */

.p-footerContact{
  background-color: var(--secondAccentColor);
  border-radius: 40px 40px 0 0;
}

.p-footerContactInner{
  display: flex;
  flex-direction: column;
  align-items: center;

  position: relative;
  padding: 80px 0 60px  0;
}

.p-footerContactHeading{
  margin-bottom: 40px!important;
}

.p-footerContactHeading .c-heading__en{
  color: #fff;
}

.p-footerContact__btn{
  padding-inline: 20px;
}

.p-footer__character{
  position: absolute;
  width: 160px;
  bottom: -20px;
  right: 0%;

  margin-right: 40px;

}


@media screen and (max-width: 767px) {

  .p-footerContactInner{
    padding: 40px 0 40px  0;
  }

  .p-footer__character{
    width: 100px;

    top: -100px;
    bottom: auto;

    margin-right: 20px;
  }

}

/* - Middle SNS/オンラインショップ
----------------------------------------------- */

.p-footerMiddle{
  background: linear-gradient(180deg, var(--secondAccentColor) 0%,  var(--secondAccentColor) 50%, var(--primaryColor) 50%, var(--primaryColor) 100%);
}

.p-footerMiddleInnerBox{
  display: flex;
  background-color: #FFF;
  border-radius: 40px;
  padding: 40px 0;
}

.p-footerMiddle__item{
  width: 50%;
  padding: 20px clamp(1.25rem, -0.179rem + 2.98vw, 2.5rem);
  text-align: center;

  position: relative;
}

.p-footerMiddle__item + .p-footerMiddle__item{
  border-left: 1px solid var(--lineColor);
}

.p-footerMiddleHeading{
  position: relative;
  display: inline-block;
  font-family: var(--primaryFont);
  color: var(--primaryColor);
  font-weight: 600;
  font-size: 1.5rem;

  padding: 0 1em;
  margin-bottom: 40px;
}

.p-footerMiddleHeading::before,
.p-footerMiddleHeading::after{
  position: absolute;
}

.p-footerMiddleHeading::before{
  content: "(";
  left: 0;
}

.p-footerMiddleHeading::after{
  content: ")";
  right: 0;
}

.p-footerSNS__list{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;

  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;

  padding-top:calc(1.5rem + 40px) ;
}

.p-footerSNS__item{
  width: 45px;
}

.p-footerShop__btnlist{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.p-footerShop__btn a{
  min-width: 250px;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {

  .p-footerSNS__item:hover{
    opacity: 0.5;
    transition: ease 0.4s;
  }
}

@media screen and (max-width: 767px) {
  .p-footerMiddleInnerBox{
    flex-direction: column;
    border-radius: 0px;
    padding: 0px 20px;
  }

  .p-footerMiddle__item{
    width: 100%;
    padding: 40px 20px;

  }

  .p-footerSNS__list{
    position: static;
    padding-top: 0;
  }

  .p-footerSNS__item{
    width: 35px;
  }
  
  .p-footerMiddle__item + .p-footerMiddle__item{
    border-left: none;
    border-top: 1px solid var(--lineColor);
  }

  .p-footerMiddleHeading{
    font-size: 1.25rem;
}
}

/* - bottom ナビゲーション
----------------------------------------------- */

.p-footerbottom{
  background-color: var(--primaryColor);
  color: #fff;

  padding-top: 80px;
  padding-bottom: 80px;
}

.p-footerbottom__flex{
  display: flex;
  justify-content: space-between;
}

.p-footer__logo{
  width: 180px;
}

.p-footerNav__list{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  font-family: var(--primaryFont);
  font-size: 0.875rem;

  margin-top: 40px;
}

.p-footerNav__item .-external{
  position: relative;
  padding-right: 1.25rem;
}

.p-footerNav__item .-external::after{
  content: "";
  position: absolute;

  content: "";
  display: inline-block;  
  background-image: url('../img/common/external.svg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 1rem;
  height: 1rem;
  right: 0;
}

.p-footer__illust{
  width: 180px;
}

.p-footerbottomLeftBox{
  display: flex;
  flex-direction: column;
  align-items: end;
}

.p-footer__copyright{
  font-family: var(--primaryFont);
  font-size: 0.875rem;
  margin-top: 20px;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {

  .p-footerNav__item:hover{
    opacity: 0.5;
    transition: ease 0.4s;
  }
}

@media screen and (max-width: 767px) {
  .p-footerbottom__flex{
    flex-direction: column;
    gap: 100px;
  }

  .p-footerNav__list{
    flex-direction: column;
  }
}


/* ----------------------------------------------
404
----------------------------------------------- */

.p-404{
  text-align: center;
}

.p-404__textBox{
  line-height: 1.8em;
}

@media screen and (max-width: 767px) {
.p-404__textBox{
  text-align: justify;
}}