@charset "utf-8";
/* ↓↓↓ common ↓↓↓ */

body {
  position: relative;
  font-family: fot-tsukubrdgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}

body.-noscroll {
  overflow-y: hidden;
}

:root {
  --oyugiwa-red: #C81528;
  --oyugiwa-black: #222222;
  --oyugiwa-bg: #F5F4F4;
}

.-pc {
  display: block;
}

.-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .-pc {
    display: none;
  }
  
  .-sp {
    display: block;
  }
  
}

.-wb {
  display: inline-block;
}

.title-group {
  text-align: center;
}

.title-group .image {
  width: 80px;
  margin: 0 auto 16px;
}

@media screen and (max-width: 768px) {
  .title-group .image {
    width: 70px;
  }
}

.title-group .title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--oyugiwa-red);
}

@media screen and (max-width: 768px) {
  .title-group .title {
    font-size: calc((40 - 24) * ((100vw - 375px) / (768 - 375)) + 24px);
  }
}

.-preview {
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  content: 'プレビューです';
}
/* ↑↑↑ common ↑↑↑ */

/* ↓↓↓ header ↓↓↓ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  header {
    height: 70px;
  }
}

@keyframes fadedown {
0% {
  transform: translateY(-100%);
}
100% {
  transform: translateY(0);
}
}

header .inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}

header .inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1;
}

header .logo {
  position: relative;
  width: 104px;
  margin: 20px 0 0 30px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  header .logo {
    width: 81px;
    margin: 20px 0 0 20px;
  }
}

header .circle {
  position: absolute;
  transform: translateX(-50%);
  top: -18px;
  left: 50%;
  width: 170px;
  height: 170px;
}

@media screen and (max-width: 768px) {
  header .circle {
    top: 0;
    left: 50%;
    width: 100px;
    height: 100px;
  }
}

header .circle-bg {
  position: relative;
  width: 100%;
  height: 100%;
}

header .circle-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.1));
  -ms-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.1));
  z-index: -1;
  transform: translateZ(0);
}

@media screen and (max-width: 768px) {
  header .circle-bg::before {
    width: 100px;
    height: 100px;
  }
}

header .circle-logo {
  position: absolute;
  transform: translateX(-50%);
  top: 30px;
  left: 50%;
  width: 104px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  header .circle-logo {
    top: 20px;
    width: 65px;
  }
}

header .menu-btn {
  cursor: pointer;
  position: relative;
  width: 38px;
  margin: 14px 21px 0 0;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  header .menu-btn {
    width: 34px;
    margin: 12px 18px 0 0;
  }
}

header .menu-bar {
  transition: transform 0.3s ease;
}

@media screen and (min-width: 769px) {
  header .menu-btn:hover .menu-bar {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
  }
}

header .menu-text {
  margin-top: 3px;
}

@media screen and (max-width: 768px) {
  header .menu-text {
    margin-top: 2px;
  }
}

header .menu-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: #81392B;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  visibility: hidden;
  opacity: 0.0001;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 20;
}

header .menu-box.-active {
  visibility: visible;
  overflow-y: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  opacity: 1;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/*Google Chrome、Safariへの対応*/
 header .menu-box.-active::-webkit-scrollbar{
  display: none;
}

header .menu-box .active-head {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  background-color: #81392B;
  z-index: 5;
}

header .menu-box .active-head .circle-bg {
  background-color: #81392B;
  border-radius: 50%;
}

header .menu-box .active-head .circle-bg::before {
  display: none;
}

header .menu-box .close-btn {
  cursor: pointer;
  width: 80px;
  height: 80px;
  
}

header .menu-box .close-btn .menu-close {
  width: 26px;
  margin: 18px auto 0;
  transition: transform 0.4s ease;
}

@media screen and (min-width: 769px) {
  header .menu-box .close-btn:hover .menu-close {
    transform: scale(0.8);
    transition: transform 0.4s ease;
  }
}

header .menu-box .close-btn .menu-text {
  width: 40px;
  margin: 8px auto 0;
}

header .menu-box .menu-nav {
  padding-top: 80px;
  color: #fff;
}

header .menu-box .menu-nav .wrap {
  max-width: 960px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 21.0459vh 20px 20px;
}

@media screen and (max-width: 768px) {
  header .menu-box .menu-nav .wrap {
    flex-direction: column;
    max-width: 520px;
    width: 80.534%;
    padding: 48px 0 0;
  }
}

header .menu-box .menu-nav .menu-block .link-name {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 769px) {
  header .menu-box .menu-nav .menu-block.-sougo .link.link-name {
    transition: opacity 0.3s ease;
  }
  header .menu-box .menu-nav .menu-block.-sougo .link:hover .link-name {
   opacity: 0.6;
   transition: opacity 0.3s ease;
  }
}

@media screen and (max-width: 1280px) {
  header .menu-box .menu-nav .menu-block .link-name {
    font-size: calc((28 - 24) * ((100vw - 769px) / (1280 - 769)) + 24px);
  }
}

@media screen and (max-width: 768px) {
  header .menu-box .menu-nav .menu-block.-sougo .link-name {
    font-size: 2.4rem;
  }
  header .menu-box .menu-nav .menu-block .accordion {
    border-bottom: 1px solid #A76F64;
  }
  header .menu-box .menu-nav .menu-block .accordion .link-name {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 2rem;
    padding: 16px 0;
  }
}

header .menu-box .menu-nav .menu-block .accordion .-accordion-btn .btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
}

.accordion .-accordion-btn .btn::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .accordion .-accordion-btn .btn::before {
    width: 16px;
  }
}

.accordion .-accordion-btn.-deactive .btn::before {
  animation: q-btn2 0.5s ease forwards;
}

.accordion .-accordion-btn.-active .btn::before {
  animation: q-btn 0.5s ease forwards;
}

@keyframes q-btn {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes q-btn2 {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(360deg);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0);

  }
}

.accordion .-accordion-btn .btn::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  border-radius: 1px;
  background-color: #fff;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .accordion .-accordion-btn .btn::after {
    height: 16px;
  }
}

.accordion .-accordion-btn.-deactive .btn::after {
  animation: q-btn4 0.5s ease forwards;
}

.accordion .-accordion-btn.-active .btn::after {
  animation: q-btn3 0.5s ease forwards;
}

@keyframes q-btn3 {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }

  100% {
    transform: translate(-50%, -50%) rotate(270deg);
  }
}

@keyframes q-btn4 {
  0% {
    transform: translate(-50%, -50%) rotate(270deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(0);
  }
}

header .menu-box .menu-nav .title {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 35px 0 5px;
}

header .menu-box .menu-nav .menu-block .link-list {
  margin-top: clamp(10px, 3vh, 24px);
}

@media screen and (max-width: 768px) {
  header .menu-box .menu-nav .menu-block .link-list {
    margin-top: 0;
    margin: 0 0 32px 15px;
  }
}

header .menu-box .menu-nav .menu-block .link-list .item {
  position: relative;
  padding-left: 1em;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1280px) {
  header .menu-box .menu-nav .menu-block .link-list .item {
    font-size: calc((20 - 18) * ((100vw - 769px) / (1280 - 769)) + 18px);
  }
}

header .menu-box .menu-nav .menu-block .link-list .item:nth-of-type(n + 2) {
  margin-top: clamp(10px, 2.5vh, 20px);
}

@media screen and (max-width: 768px) {
  header .menu-box .menu-nav .menu-block .link-list .item:nth-of-type(n + 2) {
    margin-top: 20px;
  }
}

header .menu-box .menu-nav .menu-block .link-list .item::before {
  content: '-';
  position: absolute;
  top: 0;
  left: 0;
}

header .menu-box .menu-nav .menu-block .link-list .item.-coming {
  padding-left: 0;
}

header .menu-box .menu-nav .menu-block .link-list .item.-coming::before {
  content: none;
}

header .menu-box .menu-nav .menu-block .link-list .item.-coming img {
  width: 110px;
}

@media screen and (max-width: 768px) {
  header .menu-box .menu-nav .menu-block .link-list .item.-coming img {
    width: 88px;
  }
}

@media screen and (min-width: 769px) {
  header .menu-box .menu-nav .menu-block .link-list .item .link {
    transition: opacity 0.3s ease;
   }
  header .menu-box .menu-nav .menu-block .link-list .item .link:hover {
   opacity: 0.6;
   transition: opacity 0.3s ease;
  }
}

header .menu-box .menu-footer {
  width: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
}

@media screen and (max-width: 768px) {
  header .menu-box .menu-footer {
    position: initial;
    min-height: initial;
    margin-top: 42px;
  }
}

header .menu-box .menu-footer .wrap {
  max-width: 1132px;
  width: 100%;
  margin: 0 auto;
}

header .menu-box .menu-footer .copyright {
  text-align: right;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 0 20px 0 0;
}

@media screen and (max-width: 768px) {
  header .menu-box .menu-footer .copyright {
    text-align: center;
    line-height: 2.3;
    padding: 0 0 20px;
  }
}
/* ↑↑↑ header ↑↑↑ */

/* ↓↓↓ fv ↓↓↓ */
.fv {
  width: 100%;
  min-height: 550px;
  height: 100vh;
  height: 100svh;
  padding-top: 80px;
  overflow: hidden;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .fv {
    padding-top: 70px;
    min-height: initial;
    max-height: 950px;
    height: calc(138.67vw + 70px);
  }
}

@media screen and (max-width: 480px) {
  .fv {
    max-height: 590px;
    height: 100svh;
  }
}

.fv .inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.fv .loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fv #myCanvas {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.fv .inner .wave {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -1px;
  z-index: 1;
}

@keyframes fadeup {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

.fv .swiper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* フェードモード時 共通調整 */
.fv .swiper-fade .swiper-slide {
    transition-property: opacity !important;
}

.swiper-wrapper {
  display: flex;
  height: 100%;
}

.fv .swiper .swiper-slide {
  position: relative;
  width: 100%;
  flex-shrink: 0;
}

.fv .swiper .swiper-slide img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
}

.fv .swiper .slide01.swiper-slide-next img {
  transform: scale(1.1) translateX(0);
}
.fv .swiper .slide01.swiper-slide-active img {
  transform: scale(1.1) translateX(-2%);
  transition: transform 7s ease;
}
.fv .swiper .slide01.swiper-slide-prev img {
  transform: scale(1.1) translateX(-2%);
}

.fv .swiper .slide02.swiper-slide-next img {
  transform: scale(1.1) translateX(0);
}
.fv .swiper .slide02.swiper-slide-active img {
  transform: scale(1.1) translateX(2%);
  transition: transform 7s ease;
}
.fv .swiper .slide02.swiper-slide-prev img {
  transform: scale(1.1) translateX(2%);
}

.fv .swiper .slide03.swiper-slide-next img {
  transform: scale(1.06);
}
.fv .swiper .slide03.swiper-slide-active img {
  transform: scale(1);
  transition: transform 7s ease;
}
.fv .swiper .slide03.swiper-slide-prev img {
  transform: scale(1);
}

.fv .swiper .slide04.swiper-slide-next img {
  transform: scale(1);
}
.fv .swiper .slide04.swiper-slide-active img {
  transform: scale(1.06);
  transition: transform 7s ease;
}
.fv .swiper .slide04.swiper-slide-prev img {
  transform: scale(1.06);
}

.fv .swiper .slide05.swiper-slide-next img {
  transform: scale(1.06);
}
.fv .swiper .slide05.swiper-slide-active img {
  transform: scale(1);
  transition: transform 7s ease;
}
.fv .swiper .slide05.swiper-slide-prev img {
  transform: scale(1);
}


.fv .copy-group {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 5vw;
  overflow: hidden;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .fv .copy-group {
    transform: translateY(0);
    top: initial;
    bottom: 24.04%;
    left: 20px;
  }
}

.fv .copy-group .copy {
  position: relative;
  width: max-content;
  margin-bottom: max(6px, 0.4702vw);
  padding:  max(9px, 0.7053vw) max(12px, 0.94045vw);
}

@media screen and (max-width: 768px) {
  .fv .copy-group .copy {
    display: inline-block;
    margin-bottom: 1.0667vw;
    padding:  max(7px, 1.8667vw) max(8px, 2.1334vw);
  }
}

.fv .copy-group .copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
}

.fv .copy-group .copy.-active::before {
  animation: copyanime 0.7s 1s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes copyanime {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.fv .copy-group .copy:last-child {
  margin-bottom: 0;
}

.fv .copy-group .copy .txt {
  display: block;
  overflow: hidden;
}

.fv .copy-group .copy img {
  width: auto;
  height:  max(38px, 2.969vw);
  transform: translateY(100%);
}

.fv .copy-group .copy.-active img {
  animation: fadeup 0.6s 2s ease forwards;
}

@media screen and (max-width: 768px) {
  .fv .copy-group .copy img {
    height:  6.134vw;
  }
}
/* ↑↑↑ fv ↑↑↑ */

main {
  overflow: hidden;
  background-size: cover;
}

/* ↓↓↓ store ↓↓↓ */
.store {
  position: relative;
  width: 100%;
  padding: 100px 20px 0;
  background-color: var(--oyugiwa-bg);
}

@media screen and (max-width: 768px) {
  .store {
    padding: 40px 20px 0;
  }
}

.store::after {
  content: '';
  position: absolute;
  transform: translateY(100%);
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 7.813vw;
  background: url(../img/top/wave-bg.svg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .store::after {
    height: 13.334vw;
    background: url(../img/top/wave-bg_sp.svg) no-repeat;
    background-size: cover;
  }
}

.store .inner {
  max-width: 1068px;
  margin: 0 auto;
}

.store .store-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .store .store-list {
    max-width: 520px;
    width: 90.15%;
    flex-direction: column;
    margin: 15px auto 0;
  }
}

.store .store-list .store-name {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--oyugiwa-black);
  margin-bottom: 7px;
}

@media screen and (max-width: 768px) {
  .store .store-list .store-name {
    font-size: calc((24 - 20) * ((100vw - 375px) / (768 - 375)) + 20px);
  }
}

.store .store-list .item {
  position: relative;
  width: calc((100% - 24px) / 2);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .store .store-list .item {
    width: 100%;
    padding: 40px 0 0;
    border-top: 1px solid #DEDEDE;
  }
  .store .store-list .item:first-child {
    border-top: initial;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 769px) {
  .store .store-list .item a .image img {
    transition: transform 0.3s ease;
  }
  .store .store-list .item a:hover .image img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
  }
}

.store .store-list .item .sns {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  padding-bottom: 7px;
  z-index: 1;
}

.store .store-list .item .sns a {
  min-width: 32px;
  height: 32px;
  margin-right: 24px;
}

.store .store-list .item .sns a:last-child {
  margin-right: 0;
}

.store .store-list .item .sns .line {
  min-width: 103px;
}

.store .store-list .item a {
  position: relative;
  display: block;
}

.store .store-list .item a .more {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0;
  bottom: 0;
  border-radius: 15px 0 15px 0;
  width: 113px;
  height: 30px;
  background-color: var(--oyugiwa-black);
  z-index: 1;
}

.store .store-list .item a .more .txt {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #fff;
}

.store .store-list .item a .more img {
  width: 6px;
  height: 11px;
  margin-left: 10px;
}

.store .store-list .item .image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .store .store-list .item .sns a img {
    transition: transform 0.3s ease;
  }
  .store .store-list .item .sns a:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
  }
}
/* ↑↑↑ store ↑↑↑ */

/* ↓↓↓ concept ↓↓↓ */
.concept {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.concept .inner {
  position: relative;
  max-width: 1280px;
  padding: 15.625vw 20px 10.7031vw;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .concept .inner {
    padding: 26.6667vw 20px 32vw;
  }
}

.concept .container {
  position: relative;
  max-width: 1068px;
  margin: 65px auto 0;
}

@media screen and (max-width: 768px) {
  .concept .container {
    max-width: 520px;
    width: 90.15%;
    margin: 60px auto 0;
  }
}

.concept .copy-group {
  display: flex;
  flex-direction: column;
}

.concept .copy-group .block {
  width: max-content;
  background-color: #fff;
  padding: 12px 20px;
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .concept .copy-group .block {
    padding: 6px 12px;
    margin-bottom: 1.198%;
  }
}

.concept .copy-group .block:last-child {
  margin-bottom: 0;
}

.concept .copy-group .block .txt {
  display: block;
  height: 48px;
}

@media screen and (max-width: 768px) {
  .concept .copy-group .block .txt {
    height: min(5.87vw, 35px);
  }
}

.concept .copy-group .block .txt img {
  width: auto;
  height: 100%;
}

.concept .content {
  position: relative;
  display: flex;
  width: 100%;
  margin-top: 64px;
}

@media screen and (max-width: 768px) {
  .concept .content {
    display: block;
    margin-top: 10.494%;
  }
  .concept .content.-order02 {
    margin-top: 20.986%;
  }
  .concept .content.-order03 {
    margin-top: 20.986%;
  }
}

.concept .content.-right{
  justify-content: flex-end;
}

.concept .content .image {
  width: max-content;
}

@media screen and (max-width: 768px) {
  .concept .content .image {
    width: 100%;
  }
  .concept .content.content.-order02 .image,
  .concept .content.content.-order03 .image {
    margin-top: 30px;
  }
}

.concept .content .text-group {
  position: absolute;
}

.concept .content.-order01 .text-group {
  top: 13.852%;
  right: 0;
}

.concept .content.-order02 .text-group {
  top: 80px;
  left: 0;
}

.concept .content.-order03 .text-group {
  top: 172px;
  right: 0;
}

@media screen and (max-width: 1280px) {
  .concept .content.-order02 .text-group {
    top: calc((80 - 30) * ((100vw - 769px) / (1280 - 769)) + 30px);
  }
  .concept .content.-order03 .text-group {
    top: calc((172 - 35) * ((100vw - 769px) / (1280 - 769)) + 35px);
  }
}

@media screen and (max-width: 768px) {
  .concept .content.-order01 .text-group {
    top: 42.22%;
    right: initial;
  }
  .concept .content.-order02 .text-group,
  .concept .content.-order03 .text-group {
   position: initial;
  }
}

.concept .content .text-group .copy {
  width: max-content;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background-color: #fff;
  padding: 2px 20px 2px 5px;
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .concept .content .text-group .copy {
    font-size: calc((26 - 15) * ((100vw - 375px) / (768 - 375)) + 15px);
    padding: 2px 10px 2px 5px;
    margin-bottom: 6px;
  }
}

.concept .content.-order03 .text-group .copy {
  font-size: 2.8rem;
}

@media screen and (max-width: 1280px) {
  .concept .content.-order03 .text-group .copy {
    font-size: calc((28 - 24) * ((100vw - 769px) / (1280 - 769)) + 24px);
  }
}

@media screen and (max-width: 768px) {
  .concept .content.-order03 .text-group .copy {
    font-size: calc((32 - 20) * ((100vw - 375px) / (768 - 375)) + 20px);
    margin-bottom: 8px;
  }
}
/* ↑↑↑ concept ↑↑↑ */

/* ↓↓↓ footer ↓↓↓ */
footer {
  position: relative;
  background-color: #DEDEDE;
}

footer .inner {
  padding: 28px 20px 27px;
  text-align: center;
  font-size: 1.3rem;
}

footer .company {
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 769px) {
  footer .company:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
}

footer .inner .copyright {
  margin-top: 5px;
}

footer .gotop {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 44px;
  height: 44px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-filter: drop-shadow(0px 1px 6px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(0px 1px 6px rgba(0, 0, 0, 0.1));
  -ms-filter: drop-shadow(0px 1px 6px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px 1px 6px rgba(0, 0, 0, 0.1));
}

footer .gotop img {
  width: 15px;
}
/* ↑↑↑ footer ↑↑↑ */