@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  vertical-align: bottom;
  list-style: none;
}

a,
a:link {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

body {
  height: auto;
  font-size: 16px;
  font-family: 'Zen Maru Gothic', sans-serif;
  border-top: 10px solid #562A99;
}

.inner {
  width: 1280px;
  margin: auto;
}

/*
header
*/
header {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
}

header .logo {
  margin-left: 50px;
}

header .logo img {
  width: 100%;
  margin-top: 8px;
}

header .navi {
  margin: 25px 40px 0 0;
}

header .navi .menu {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}

#header .navi .menu>li {
  margin-left: 30px;
}

header .navi .menu a {
  display: block;
  padding: 8px 40px;
  text-align: center;
  color: #562A99;
}

header .navi .menu a:hover {
  color: #32a337;
}

.hd_img {
  height: 450px;
}

.hd_img h2 {
  opacity: 0;
}

/*
information
*/

.info {
  margin: 0 100px 50px;
  
}

.info h2 {
  text-align: center;
  margin: 50px auto 25px;
  font-size: 32px;
  font-family: "Century Gothic", monospace;
  text-transform: uppercase;
  color: #562A99;
  line-height: 1.2em;
}

.info h2 span {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.5em;
}

.info ul {
  margin: auto;
  text-decoration: none;
  text-align: left;
}

/*
about
*/
#about h2 {
  text-align: center;
  margin: 50px auto;
  font-size: 32px;
  font-family: "Century Gothic", monospace;
  text-transform: uppercase;
  background-color: #562A99;
  color: #fff;
  line-height: 1.1em;
  padding: 12px;
}

#about h2 span {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.5em;
  text-transform: capitalize;
}

#about .kishis-jp {
  margin: 100px auto 120px;
  padding: 15px 10px 15px 20px;
  background-color: #e9e9e9;
  width: 1080px;
  line-height: 2.2em;
}

/*
about section
*/

section.about-detail {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 80px;
}


.text-box h3 {
  font-family: "Century Gothic", monospace;
  text-transform: uppercase;
  font-size: 32px;
  border-bottom: 5px solid #32a337;
  color: #32a337;
  padding: 15px 15px 15px 25px;
  margin-bottom: 25px;
}

.text-box h3 span {
  margin-left: 20px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.6em;
}

.text-box h4 {
  font-size: 20px;
  margin-bottom: 25px;
  margin-left: 25px;
}

.text-box p {
  margin: 25px;
  line-height: 2.5em;
  font-feature-settings: 'palt' on;
}

.about-detail:nth-child(even) {
  flex-direction: row-reverse;
}

h3.purple {
  border-bottom: 5px solid #562A99;
  color: #562A99;
}

/*
lineup section
*/

section.lineup-detail {
  margin-top: 80px;
  margin-bottom: 50px;
}

section.lineup-detail h3 {
  font-size: 32px;
  color: #fff;
  background-color: #562A99;
  border-bottom: 5px solid #976ce6;
  padding: 15px 0 15px 30px;
  width: 50%;
}

.lineup-img {
  padding: 60px;
  background-color: #FCEEE3;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 50px;
}

.lineup-text {
  padding: 30px 30px 30px 60px;
  background-color: #FCEEE3;
  display: flex;
  border-bottom: 5px solid #F9E6D5;
  border-top: 5px solid #F9E6D5;
}

.lineup-text div {
  margin-left: 100px;
  flex-direction: column;
}

.lineup-text h4 {
  font-size: 22px;
  margin-bottom: 20px;
}

.lineup-text ul {
  margin-bottom: 20px;
}

.lineup-text ul li {
  margin-left: 20px;
  position: relative;
  line-height: 2em;
  font-size: 18px;
  text-indent: 1em;
}

.lineup-text ul li:before {
  position: absolute;
  top: 8px;
  left: -20px;
  content: "";
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  background: url(../img/check.gif) no-repeat;
  background-size: contain;
}

.lineup-text ul li span {
  font-weight: 600;
}

.lineup-text p {
  font-size: 18px;
  margin-bottom: 10px;
}

.lineup-text p span.yello {
  color: #FAAF3B;
}

/*
shopping-link
*/
.shopping-link {
  display: flex;
  justify-content: center;
  column-gap: 180px;
  margin-bottom: 180px;
}

.link-button a {
  width: 320px;
  padding: 15px 0 20px 0;
  color: #fff;
  border-radius: 15px;
  font-weight: bold;
  background: transparent;
  text-align: center;
  background-color: #562A99;
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  transition: .3s;
}

.link-button a::before {
  content: "";
  width: 120%;
  height: 200%;
  position: absolute;
  top: -50%;
  right: 0;
  z-index: -1;
  background: #32a337;
  border-radius: 0 100% 100% 0;
  transform: translateX(-100%);
  transition: transform ease .3s;
}

.link-button a:hover::before {
  transform: translateX(10%);
}

.link-button h3 {
  font-size: 30px;
}


.blandlist_sempertex_link {
  text-align: center;
  margin-bottom: 30px;
  font-size: 18px;
}

.blandlist_sempertex_link a {
  transition: .3s;
  color: black;
}


.blandlist_sempertex_link a:hover {
  transition: transform ease 1s;
  opacity: 0.6;
}


/*
footer
*/

.footer {
  text-align: center;
  margin: 0 auto;
  justify-content: center;
  display: flex;
}

#logo {
  display: flex;
  justify-content: center;
  padding: 130px 35px 80px 35px;
}

#logo2 {
  display: flex;
  justify-content: center;
  padding: 50px 35px 40px 35px;

}

#copyright {
  text-align: center;
  margin: 0 auto;
  justify-content: center;
  display: flex;
  padding-bottom: 105px;
}

p {
  margin: 0;
}

.kishis {
  font-size: 18px;
  text-align: center;
  margin-bottom: 1em;
}

/*
pagetop
*/

@keyframes progress {
  0% {
    bottom: -150px;
  }

  30% {
    bottom: -150px;
  }

  40% {
    bottom: 0px;
  }

  50% {
    bottom: 20px;
  }

  100% {
    bottom: 20px;
  }
}

#pagetop {
  position: fixed;
  right: 10px;
  bottom: 20px;
  cursor: pointer;
  animation: progress linear;
  animation-timeline: scroll();
  transition: bottom 1s ease;
  z-index: 10;
}

#pagetop a:hover {
  transition: transform ease 1s;
  opacity: 0.8;
}