@charset "UTF-8";

/*==============================
# settings
==============================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  /* color */
  --white: #fff;
  --black: #000;
  --black2: #393838;
  --accent-color: ;
  /* font */
  --base-fontFamily: 'Noto Sans JP', sans-serif;
  --second-fontFamily: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  /* font-weight */
  --regular: 400;
  --bold: 700;
  /* padding */
  --padding-sp: 16px;
  --padding-pc: 20px;
  /* inner */
  --inner: 1000px;
}

body {
  margin: 0;
}

.my-contents {
  font-family: var(--base-fontFamily);
}

img {
  max-width: 100%;
  display: block;
  width: 100%;
}

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

@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.inner {
  width: 100%;
  max-width: var(--inner);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--padding-sp);
}

/*==============================
# common
==============================*/
.my-contents {
  position: relative;
  z-index: 0;
}

.item__btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-family: var(--second-fontFamily);
  font-size: 20px;
  font-weight: var(--bold);
  line-height: 1;
  color: var(--white);
  background-color: #FBC1AC;
  padding: 9px 44px;
}
@media print, screen and (max-width:640px) {
  .item__btn {
    font-size: 16px;
  }
}

.item__btn--white {
  color: #FBC1AC;
  background-color: var(--white);
}

.sec-title {
  text-align: center;
  color: var(--black2);
  font-size: 36px;
  font-family: var(--second-fontFamily);
  font-weight: var(--regular);
  line-height: 1;
  padding-bottom: 18px;
  position: relative;
}
@media print, screen and (max-width:640px) {
  .sec-title {
    font-size: 30px;
  }
}

.sec-title::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--black2);
}

.sec-title--white {
  color: var(--white);
}

.sec-title--white::before {
  background-color: var(--white);
}

/*==============================
# mv
==============================*/
.mv {
  position: relative;
  height: calc(100vh - 55px);
  z-index: 0;
}
@media print, screen and (min-width:768px) {
  .mv {
    height: calc(100vh - 80px);
  }
}

.mv__img {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.mv__img::before {
  /* content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #EFEDED;
  opacity: 0.2;
  z-index: 1; */
}

/* .mv__img::before {
  content: "";
  display: block;
  padding-top: 160%;
}
@media print, screen and (min-width:769px) {
  .mv__img::before {
    padding-top: 62.5%;
  }
} */

.mv__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mv__logo {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 57%;
}
@media print, screen and (min-width:769px) {
  .mv__logo {
    width: 22.4%;
    top: 8.3%;
    left: 4.4%;
    transform: translate(0);
  }
}

.mv__logo img {
  width: 100%;
  height: auto;
}

.mv__lines {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}

.mv__line {
  height: 20px;
  width: 100%;
}

.mv__line--yellow {
  background-color: #FFFFB1;
}

.mv__line--pink {
  background-color: #FBC1AC;
}

.mv__line--blue{
  background-color: #586E8B;
}

.scrolldown {
  position: absolute;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
  height: 50px;
}

.scrolldown span {
  font-size: 16px;
  font-weight: bold;
  color: var(--white);
  letter-spacing: 0.05em;
}

.scrolldown::after {
	content: "";
	position: absolute;
	top: 0;
  left: 50%;
	width: 1px;
	height: 30px;
	background: var(--white);
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

@keyframes pathmove {
	0%{
		height:0;
		top: 20px;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}

/*==============================
# concept
==============================*/
.concept {
  background-color: #fff;
}

.concept__inner {
  padding-top: 81px;
  padding-bottom: 34.5px;
}
@media print, screen and (max-width:640px) {
  .concept__inner {
    padding-top: 60px;
  }
}

.concept__text {
  font-size: 25px;
  font-weight: 300;
  line-height: 2;
  text-align: center;
}
@media print, screen and (max-width:640px) {
  .concept__text {
    font-size: 15px;
  }
}

.concept__menu {
  margin-top: 96px;
  display: flex;
  justify-content: center;
}
@media print, screen and (max-width:640px) {
  .concept__menu {
    margin-top: 60px;
  }
}

.concept__link {
  display: block;
  font-family: var(--second-fontFamily);
  font-size: 24px;
  font-weight: var(--regular);
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--black2);
  text-decoration: none;
  position: relative;
  padding-bottom: 15.2px;
}
@media print, screen and (max-width:640px) {
  .concept__link {
    font-size: 16px;
  }
}

.concept__link::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 10.26px;
  width: 41.04px;
  background-image: url(../img/arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.concept__link:first-child {
  margin-right: 19.4%;
}

/*==============================
# pickup
==============================*/
.pickup {
  background-color: #FFFFB1;
  border-bottom-right-radius: 300px;
  position: relative;
  z-index: 0;
}

.pickup__inner {
  padding-top: 146px;
  padding-bottom: 107px;
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width:768px) {
  .pickup__inner {
    max-width: 715px;
    padding-top: 149px;
    padding-bottom: 191px;
  }
}

.pickup__items {

}

.pickup__list {

}

.pickup__list:nth-child(1) {
  width: 47.9%;
  margin-left: 5.6%;
}
@media print, screen and (min-width:768px) {
  .pickup__list:nth-child(1) {
    width: 50.26%;
    margin-left: 0;
  }
}

.pickup__list:nth-child(2) {
  width: 72%;
  margin-top: 78px;
  margin-left: auto;
  margin-right: 0;
}
@media print, screen and (min-width:768px) {
  .pickup__list:nth-child(2) {
    width: 75.52%;
  }
}

.pickup__list:nth-child(3) {
  width: 61.9%;
  margin-top: 29px;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width:768px) {
  .pickup__list:nth-child(3) {
    width: 64.9%;
  }
}

.pickup__list:nth-child(4) {
  width: 55.7%;
  margin-top: 80px;
  margin-left: 7.7%;
}
@media print, screen and (min-width:768px) {
  .pickup__list:nth-child(4) {
    width: 58.46%;
    margin-left: 0;
  }
}

.pickup__list:nth-child(5) {
  width: 72%;
  margin-top: 116px;
  margin-left: 9.46%;
}
@media print, screen and (min-width:768px) {
  .pickup__list:nth-child(5) {
    width: 75.5%;
    margin-top: 120px;
    margin-left: 9.46%;
  }
}

.pickup__list:nth-child(6) {
  width: 47.9%;
  margin-top: 18px;
  margin-left: auto;
  margin-right: 12.5%;
}
@media print, screen and (min-width:768px) {
  .pickup__list:nth-child(6) {
    width: 50.26%;
    margin-right: 52px;
  }
}

.pickup__list:nth-child(7) {
  width: 47.9%;
  margin-top: 65px;
  margin-left: 14.4%;
}
@media print, screen and (min-width:768px) {
  .pickup__list:nth-child(7) {
    width: 50.26%;
    margin-top: 99px;
    margin-left: 0;
  }
}

/* pickup-item */
.pickup-item {
  /* width: fit-content; */
}

.pickup-item__img {
  position: relative;
}

.pickup-item__img::before {
  display: block;
  content: "";
}

.pickup__list:nth-child(1) .pickup-item__img {
  max-width: 359.38px;
  box-shadow: 52px -52px 0 #DBDB79;
}
@media print, screen and (max-width:640px) {
  .pickup__list:nth-child(1) .pickup-item__img {
    box-shadow: 35px -35px 0 #DBDB79;
  }
}

.pickup__list:nth-child(1) .pickup-item__img::before {
  padding-top: 150.26%;
}

.pickup__list:nth-child(2) .pickup-item__img {
  max-width: 540px;
  box-shadow: -52px -52px 0 #DBDB79;
}
@media print, screen and (max-width:640px) {
  .pickup__list:nth-child(2) .pickup-item__img {
    box-shadow: -35px -35px 0 #DBDB79;
  }
}

.pickup__list:nth-child(2) .pickup-item__img::before {
  padding-top: 66.6%;
}

.pickup__list:nth-child(3) .pickup-item__img {
  max-width: 464px;
}

.pickup__list:nth-child(3) .pickup-item__img::before {
  padding-top: 178%;
}

.pickup__list:nth-child(4) .pickup-item__img {
  max-width: 418px;
  box-shadow: 52px -52px 0 #DBDB79;
}
@media print, screen and (max-width:640px) {
  .pickup__list:nth-child(4) .pickup-item__img {
    box-shadow: 35px -35px 0 #DBDB79;
  }
}

.pickup__list:nth-child(4) .pickup-item__img::before {
  padding-top: 129.2%;
}

.pickup__list:nth-child(5) .pickup-item__img {
  max-width: 540px;
  box-shadow: -71px -60px 0 #DBDB79;
}
@media print, screen and (max-width:640px) {
  .pickup__list:nth-child(5) .pickup-item__img {
    box-shadow: -35px -35px 0 #DBDB79;
  }
}

.pickup__list:nth-child(5) .pickup-item__img::before {
  padding-top: 66.6%;
}

.pickup__list:nth-child(6) .pickup-item__img {
  max-width: 359.38px;
  box-shadow: 52px -53px 0 #DBDB79;
}
@media print, screen and (max-width:640px) {
  .pickup__list:nth-child(6) .pickup-item__img {
    box-shadow: 35px -35px 0 #DBDB79;
  }
}

.pickup__list:nth-child(6) .pickup-item__img::before {
  padding-top: 150.26%;
}

.pickup__list:nth-child(7) .pickup-item__img {
  max-width: 359.38px;
  box-shadow: 52px -53px 0 #DBDB79;
}
@media print, screen and (max-width:640px) {
  .pickup__list:nth-child(7) .pickup-item__img {
    box-shadow: 35px -35px 0 #DBDB79;
  }
}

.pickup__list:nth-child(7) .pickup-item__img::before {
  padding-top: 150.26%;
}

.pickup-item__img img,
.pickup-item__img video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pickup-item__texts {
  margin-top: 25px;
}
@media print, screen and (max-width:640px) {
  .pickup-item__texts {
    margin-top: 16px;
  }
}

.pickup-item__kinds:nth-child(n+2) {
  margin-top: 12px;
}

.pickup-item__name {
  font-size: 22px;
  font-weight: var(--regular);
  line-height: 1;
}
@media print, screen and (max-width:640px) {
  .pickup-item__name {
    font-size: 16px;
  }
}

.pickup-item__price {
  margin-top: 10px;
  font-size: 20px;
  font-weight: var(--regular);
  line-height: 1;
}
@media print, screen and (max-width:640px) {
  .pickup-item__price {
    font-size: 14px;
  }
}

.pickup-item__btn {
  margin-top: 12px;
}

/*==============================
# allitem
==============================*/
.allitem {
  background-color: #FBC1AC;
  margin-top: -301px;
  position: relative;
  z-index: -1;
  border-bottom-left-radius: 300px;
}
@media print, screen and (min-width:768px) {
  .allitem {
    margin-top: -305px;
  }
}

.allitem__inner {
  padding-top: 301px;
  padding-bottom: 50px;
}
@media print, screen and (min-width:768px) {
  .allitem__inner {
    padding-top: 305px;
    padding-bottom: 43px;
  }
}

.allitem__title {
  padding-top: 126px;
}
@media print, screen and (min-width:768px) {
  .allitem__title {
    padding-top: 154px;
  }
}

.allitem__items {
  width: 72.23%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 97.5px;
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width:768px) {
  .allitem__items {
    margin-top: 151px;
  }
}

.allitem__list {

}

.allitem__list:nth-child(2n+1) {
  margin-right: 22px;
}
@media print, screen and (min-width:768px) {
  .allitem__list:nth-child(2n+1) {
    margin-right: 51px;
  }
}

.allitem__list:nth-child(n+3) {
  margin-top: 30px;
}

.allitem__list:last-child {
  margin-left: auto;
  margin-right: 0;
}

.allitem-item {
  /* width: fit-content; */
  width: calc(50% - 22px / 2);
}
@media print, screen and (min-width:768px) {
  .allitem-item {
    width: calc(50% - 51px / 2);
  }
}

.allitem-item__img {
  position: relative;
  width: 100%;
  /* max-width: 260px; */
}

.allitem-item__img::before {
  display: block;
  content: "";
  padding-top: 145.77%;
}

.allitem-item__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.allitem-item__texts {
  margin-top: 18px;
  word-wrap: break-word;
}
@media print, screen and (max-width:640px) {
  .allitem-item__texts {
    margin-top: 16px;
  }
}

.allitem-item__name {
  font-size: 22px;
  line-height: 1.5;
  /* white-space: nowrap; */
}
@media print, screen and (max-width:640px) {
  .allitem-item__name {
    font-size: 16px;
  }
}

.allitem-item__color {
  font-size: 21px;
  line-height: 1.5;
  color: #5F5E5E;
  margin-top: 10px;
}
@media print, screen and (max-width:640px) {
  .allitem-item__color {
    font-size: 15px;
  }
}

.allitem-item__price {
  font-size: 20px;
  line-height: 1;
  margin-top: 13px;
}
@media print, screen and (max-width:640px) {
  .allitem-item__price {
    font-size: 14px;
  }
}

.allitem-item__btn {
  margin-top: 12px;
}

.allitem__note {
  font-family: 'Roboto', sans-serif;
  font-size: 19px;
  font-weight: var(--regular);
  line-height: 1.2;
  margin-top: 62px;
  display: flex;
  align-items: center;
  align-items: flex-start;
}
@media print, screen and (max-width:640px) {
  .allitem__note {
    font-size: 14px;
    align-items: flex-start;
  }
}

.allitem__note span {
  font-size: 14px;
  padding-top: 2px;
}
@media print, screen and (max-width:640px) {
  .allitem__note span {
    font-size: 12px;
  }
}

/*==============================
# campaign
==============================*/
.campaign {
  background-color: #586E8B;
  margin-top: -274px;
  position: relative;
  z-index: -2;
}
@media print, screen and (min-width:768px) {
  .campaign {
    margin-top: -275px;
  }
}

.campaign__inner {
  padding-top: 274px;
  padding-bottom: 73px;
}
@media print, screen and (min-width:768px) {
  .campaign__inner {
    padding-top: 275px;
    padding-bottom: 125px;
  }
}

.campaign__title {
  padding-top: 113px;
}
@media print, screen and (min-width:768px) {
  .campaign__title {
    padding-top: 201px;
  }
}

.campaign__images {
  margin-top: 91.6px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media print, screen and (min-width:768px) {
  .campaign__images {
    margin-top: 152.1px;
  }
}

.campaign__img {
  width: 40%;
  max-width: 300px;
  position: relative;
}

.campaign__img::before {
  content: "";
  display: block;
  padding-top: 98.34%;
}

.campaign__img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  opacity: 0.4;
}

.campaign__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign__img:nth-child(1) {
  transform: rotate(-10deg);
  z-index: 1;
  margin-right: 10px;
}

.campaign__img:nth-child(1)::after {
  top: -20px;
  left: 20px;
  z-index: -2;
}

.campaign__img:nth-child(2) {
  transform: rotate(10deg);
  margin-top: 30px;
}

.campaign__img:nth-child(2)::after {
  top: 20px;
  left: 20px;
  z-index: -2;
}

.campaign__text {
  font-size: 25px;
  font-weight: var(--regular);
  line-height: 2;
  text-align: center;
  color: var(--white);
  padding: 0 6.23%;
  margin-top: 71.1px;
}
@media print, screen and (max-width:640px) {
  .campaign__text {
    font-size: 16px;
  }
}
@media print, screen and (min-width:768px) {
  .campaign__text {
    max-width: 656px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}

.campaign__link {
  margin-top: 64px;
  text-align: center;
}

.campaign__btn {
  display: inline-block;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 23px;
  font-weight: var(--bold);
  line-height: 1;
  padding: 30px 0;
  width: 100%;
  max-width: 429px;
  color: #586E8B;
  background-color: #FFFFB1;
  border-radius: 40px;
  text-decoration: none;
  padding-right: 34.4px;
  position: relative;
}
@media print, screen and (max-width:640px) {
  .campaign__btn {
    width: 90%;
  }
}
@media print, screen and (max-width:640px) {
  .campaign__btn {
    font-size: 18px;
  }
}

.campaign__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16.45%;
  transform: translateY(-50%);
  width: 10px;
  height: 18.95px;
  background-image: url(../img/arrow-right.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*==============================
# photo
==============================*/
.photo {
  background-color: #F5F4F4;
}

.photo__inner {
  padding-top: 106px;
  padding-bottom: 168px;
}
@media print, screen and (max-width:640px) {
  .photo__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.photo__images {
  margin-top: 97.5px;
  padding: 0 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (max-width:640px) {
  .photo__images {
    margin-top: 60px;
  }
}

.photo__items {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--white);
}

.photo__list {

}

.photo__img {
  width: 33.33%;
  position: relative;
}

.photo__img::before {
  display: block;
  content: "";
  padding-top: 100%;
}

.photo__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*==============================
# profile
==============================*/
.profile {

}

.profile__inner {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 99px;
  padding-left: 6.66%;
  padding-right: 6.66%;
}
@media print, screen and (min-width:768px) {
  .profile__inner {
    max-width: var(--inner);
    padding-top: 88px;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 5px solid #586E8B;
  }
}

.profile__content {
  margin-top: 85.5px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 108px;
  padding-left: 10px;
  padding-right: 10px;
  border-bottom: 5px solid #586E8B;
}
@media print, screen and (min-width:768px) {
  .profile__content {
    border: none;
  }
}

.profile__img {
  flex: 0 0 38.88%;
  margin-top: 12px;
  margin-right: 8.2%;
  max-width: 245px;
}
@media print, screen and (min-width:768px) {

}

.profile__texts {
  flex: 0 1 100%;
  max-width: 450px;
}
@media print, screen and (min-width:768px) {

}

.profile__title {
  font-size: 24px;
  font-weight: var(--bold);
  color: var(--black2);
}
@media print, screen and (max-width:640px) {
  .profile__title {
    font-size: 18px;
  }
}

.profile__text {
  margin-top: 34.5px;
  font-size: 22px;
  line-height: 2;
  color: var(--black2);
}
@media print, screen and (max-width:640px) {
  .profile__text {
    font-size: 16px;
  }
}

.profile__sns {
  margin-top: 28.5px;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width:768px) {
  .profile__sns {
    margin-top: 65.5px;
  }
}

.profile-sns__img {
  width: 34px;
  margin-right: 15px;
}
@media print, screen and (max-width:640px) {
  .profile-sns__img {
    width: 28px;
    margin-right: 5%;
  }
}

.profile-sns__link {
  display: inline-block;
  font-family: var(--second-fontFamily);
  font-size: 22px;
  font-weight: var(--regular);
  text-decoration: none;
  color: #586E8B;
  padding-bottom: 2px;
  position: relative;
}
@media print, screen and (max-width:640px) {
  .profile-sns__link {
    font-size: 16px;
  }
}

.profile-sns__link::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #586E8B;
}

/*==============================
# content-footer
==============================*/
.content-footer {
  margin-top: 31px;
}

.content-footer__img {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/*==============================
# JS
==============================*/
/* スクロールで表示 */
.scroll-block {
  transform: translateY(100px);
  transition: all 0.6s ease-in;
  opacity: 0;
}

.scroll-block.blockIn {
  transform: translateY(0);
  opacity: 1;
}

/* スプラッシュ */
.splash {
  /* position: fixed; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999999;
}

.splash__contents {
  position: relative;
  height: inherit;
  width: inherit;
}

.splash__logo {
  position: absolute;
  top: 34px;
  left: 43px;
  width: 22.8%;
  z-index: 9998;
}
@media print, screen and (min-width:768px) {
  .splash__logo {
    width: 13.88%;
    top: 36px;
    left: 48px;
  }
}

.splash__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* height: 100vh;
  width: auto; */
}

.splash__img:before {
  /* content: "";
  display: block;
  padding-top: 160%; */
}
@media print, screen and (min-width:769px) {
  .splash__img:before {
    /* padding-top: 62.5%; */
  }
}

.splash__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.splash__img-a {
  z-index: 8;
}

.splash__img-b {
  z-index: 7;
}

.splash__img-c {
  z-index: 6;
}

/*==============================
# mask
==============================*/
.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px; 
  z-index: 10;
  /* background-color: rgba(239, 237, 237, 0.2); */
  /* clip-path: inset(0 round 300px 0 0 0); */
  background-image: radial-gradient(at right bottom ,transparent 71%, rgba(239, 237, 237, 0.2) 71%);
}
@media print, screen and (max-width:640px) {
  .mask {
    width: 200px;
    height: 200px;
  }
}

/* .mask::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
} */

/*==============================
# 調整
==============================*/
header *,
header *::before,
header *::after {
  box-sizing: content-box;
}

.footer-lb-banner a img {
  width: auto;
  display: inline;
}