* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  line-height: 1.6;
}

.fadeIn {
  opacity: 0;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

.flex {
  flex: auto;
}


/* ========== header =========== */

.header_inner{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:80px;
  background-color:#fff;
  z-index:1000;

  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px;
}

.header_inner img{
    height: 50px;
    padding-top: 5px;
}

.hamburger-overlay {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #333;
  transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }

.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color .3s;
}

.nav-overlay__link:hover {
  color: #4a90e2;
}

.mv {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.mv-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.mv-img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  display: block;
  filter: brightness(50%);
}


.mv-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.mv-title {
  font-size: 36px;
  margin-bottom: 10px;
}

.mv-sub {
  font-size: 16px;
}


/* ========== ABOUT ========== */

.about {
  margin-top: 80px;
  margin-bottom: 60px;
  padding: 24px;
  text-align: center;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-title {
  font-size: 28px;
  margin-bottom: 30px;
}

.about-wave {
  width: 65%;
  max-width: none;
  display: block;
  margin: 0 auto 40px;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.about-btn-wrap {
  text-align: right;
  margin-top: 40px;
}

.about-btn {
  display: inline-block;
  padding: 2px 0;
  margin-top: 24px;
  text-decoration: none;
  font-weight: bold;
  color: #333;
  border-bottom: 1px solid #333;
  font-size: 24px;
  position: relative;
  transition: 0.3s;
}

.about-btn::after {
  content: "→";
  margin-left: 8px;
  transition: 0.3s;
}

.about-btn:hover {
  opacity: 0.6;
}

.about-btn:hover::after {
  margin-left: 14px;
}



/* ========== サービス ========== */

.line01 {
  background: #aae0f9;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  height: 200px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
}

.line02 {
  background: #aae0f9;
  border-bottom-left-radius: 1000px 200px;
  border-bottom-right-radius: 1000px 200px;
  height: 200px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
}

#service {
  background-color: #aae0f9;
}

.service-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-main-title {
  text-align: center;
  font-size: 44px;
  margin-bottom: 100px;
  position: relative;
  top: -60px;
  left: 40%;
  display: inline-block;
  border-bottom: 1px solid #333;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-img {
  flex: 1;
}

.service-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.service-content {
  flex: 1;
  padding-left: 24px;
}


.service-title {
  font-size: 20px;
  margin-bottom: 20px;
  display: inline-block;
  border-bottom: 1.5px solid #000000;
  padding-bottom: 4px;
  font-weight: bold;
}

.service-content p {
  color: rgba(0, 0, 0, 0.9);
}


/* =========== 商品一覧ボックス ========== */

.product-box {
  max-width: 700px;
  margin: 0 auto;
  margin-top: 80px;
  padding: 50px 30px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.9);
}


.product-title {
  display: inline-block;
  position: relative;
  font-size: 22px;
  margin-bottom: 30px;
  color: #333;
  z-index: 1;
  padding: 0 10px;
}

.product-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 12px;
  background: #95b9f2;
  z-index: -1;
  border-radius: 6px;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
  max-width: 500px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.product-list li {
  text-align: center;
  font-size: 14px;
  color: #555;
}

.product-box::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -20px;
  width: 320px;
  height: 220px;
  background: url("../images/logo2.svg") no-repeat center / contain;
  opacity: 0.07;
  transform: rotate(-20deg);
  pointer-events: none;
}

.product-list li::before {
  content: "・";
}

.product-btn-wrap {
  text-align: right;
  margin-top: 30px;
}

.info {
  background: #ffffff;
  margin-top: 32px;
  padding: 90px 20px;
}

.info-inner {
  max-width: 1020px;
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-bottom: 70px;
}

.info-card {
  text-decoration: none;
  color: #333;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 32px;
}

.info-card:hover {
  transform: scale(1.2);
  transition: 0.5s;
}

.info-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.info-text {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

.company-info {
  max-width: 1020px;
  margin: 0 auto;
  padding: 24px;
}

.company-info h2 {
  margin-bottom: 32px;
  background-image: url("../images/blue-circle.svg");
  background-size: cover;
  background-position: center;
  padding: 24px;
}

.company-info dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  margin-bottom: 5rem;
}

.company-info dt {
  width: 20%;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
  color: #00bfff;
  padding: 1.2em 1em 1em 0;
}

.company-info dd {
  width: 80%;
  padding: 1.2em 2em;
  border-bottom: 1px solid #ccc;
}

.contact-box {
  background: #fff;
  border: 1px solid #2a2a2a;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-lead {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-tel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.contact-tel-icon {
  width: 32px;
  height: 32px;
  border: 1.3px solid #000000;
  background: #00bfff;
  display: grid;
  place-items: center;
  box-sizing: border-box;
}

.contact-tel-number {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #111;
  text-decoration: none;
}

.contact-time {
  font-size: 14px;
  color: #333;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #4a4a4a;
  color: #fff;
  text-decoration: none;
  padding: 16px 26px;
  min-width: 240px;
  justify-content: center;
  transition: 0.25s;
}

.contact-btn:hover {
  opacity: 0.85;
  transform: scale(1.1);
  transition: 0.3s;
}

.contact-btn-arrow {
  font-size: 16px;
  margin-left: 10px;
  transition: 0.25s;
}

.contact-btn:hover .contact-btn-arrow {
  transform: translateX(6px);
}

@media (max-width: 900px) {
  .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }

  .contact-box {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-right {
    width: 100%;
  }

  .contact-btn {
    width: 100%;
  }

  .contact-tel-number {
    font-size: 26px;
  }
}

.info-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.info-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-tel-icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}

.contact-btn-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}

.contact-btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =========== FOOTER ========== */

.footer {
  padding: 0;
  color: #111;
  background: none;
}

.footer-inner {
  max-width: none;
  width: 100%;
  padding: 0;
}

/* ========== FOOTER NAV =========== */

/*.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}*/

.footer-nav {
  border-top: 1px solid rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  padding: 18px 0;
}


/*.footer-nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  margin: 0;
  padding: 0;
}

.footer-nav-list li {
  position: relative;
  line-height: 1;
  padding: 0;
}

.footer-nav-list a,
.footer-nav-list a:visited {
  color: #111;
  text-decoration: none;
}*/


.footer-nav-list li+li::before {
  content: "";
  position: absolute;
  left: calc(-56px / 2);
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 1.2em;
  background: rgba(0, 0, 0, 0.45);
}

.footer-nav-list li {
  position: relative;
  line-height: 1;
}


/*.footer-main {
  padding: 40px 20px;
  background:
    radial-gradient(circle at 20% 1%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 45%),
    linear-gradient(90deg, #1aa7d8 0%, #7ec6e8 100%);
    max-width: 1100px;
    margin: 0 auto;
}



.footer-brand {
  display: block;
  margin-bottom: 20px;
}

.footer-logo {
  width: 320px;
}

.footer-company {
  font-weight: 700;
  font-size: 16px;
}


.footer-info {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

.footer-info p {
  margin: 0;
}

.footer-copy {
  background:
    linear-gradient(90deg, #1aa7d8 0%, #7ec6e8 100%);
  margin: 0;
  padding: 12px 0 0;
  text-align: center;
}*/

.footer-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  list-style: none;
  padding: 0;
}

.footer-nav {
  padding: 18px 20px;
}

.footer-nav-list {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-main {
  width: 100%;
  margin: 0;
  padding: 40px calc((100% - 1100px) / 2 + 20px) 24px;
  background:
    radial-gradient(circle at 20% 1%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 45%),
    linear-gradient(90deg, #1aa7d8 0%, #7ec6e8 100%);
}

.footer-copy {
  width: 100%;
  margin: 0;
  padding: 12px 20px;
  text-align: center;
  background: linear-gradient(90deg, #1aa7d8 0%, #7ec6e8 100%);
}

@media (max-width: 1100px) {
  .footer-main {
    padding: 40px 20px 24px;
  }
}

/* ========== company ========== */

.greeting {
  max-width: 1020px;
  display: block;
  margin: 0 auto;
  padding: 24px;
}

.greetingname {
  display: block;
  text-align: right;
  font-weight: bold;
  font-size: large;
}

.greeting h1 {
  margin-top: 80px;
  margin-bottom: 32px;
  background-image: url("../images/blue-circle.svg");
  background-size: cover;
  background-position: center;
  padding: 24px;
}

.greeting p {
  margin-bottom: 32px;
  position: relative;
}

.info {
  max-width: 1020px;
  display: block;
  margin: 0 auto;
}

.info h2 {
  margin-bottom: 32px;
  background-image: url("../images/blue-circle.svg");
  background-size: cover;
  background-position: center;
  padding: 24px;
}

.info dl {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  margin-bottom: 5rem;
}

.info dt {
  width: 20%;
  margin: 0;
  border-bottom: 1px solid #ccc;
  font-size: 1rem;
  font-weight: bold;
  color: #00bfff;
  line-height: 1.4rem;
  padding: 1.2em 1em 1em 0;
  vertical-align: middle;
  align-items: center;
}

.info dd {
  width: 80%;
  margin: 0;
  padding: 2em 2em 2em 90px;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
  line-height: 2.7rem;
  line-height: 1.8;
}

.timeline_flex{
  display: flex;
}

.timeline {
  list-style: none;
}

.timelinediv h2 {
  margin-bottom: 24px;
}

.timeline>li {
  margin-bottom: 60px;
}

@media (min-width : 640px) {
  .timeline>li {
    overflow: hidden;
    margin: 0;
    position: relative;
  }

  .timeline-date {
    width: 110px;
    float: left;
    margin-top: 20px;
  }

  .timeline-content {
    width: 75%;
    float: left;
    border-left: 3px #7ec6e8 solid;
    padding-left: 30px;
    padding-bottom: 32px;
  }

  .timeline-content:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #1aa7d8;
    position: absolute;
    left: 106px;
    top: 24px;
    border-radius: 100%;
  }
}

/*.timeline_mv{
  position: relative;
  left: 620px;
  top: -470px;
}

iframe {
  display: block;
  margin: 0 auto;
  margin-top: -460px;
  margin-bottom: 32px;
}*/

iframe {
  display: block;
  width: 100%;
  max-width: 1020px;
  height: 450px;
  margin: 40px auto 32px;
}

/* ========== store ========== */

.store_title {
  margin-top: 30px;
  margin-top: 85px;
  margin-bottom: 32px;
  background-image: url("../images/blue-circle.svg");
  background-size: cover;
  background-position: center;
  padding: 24px;
}

.wrap_amazon {
  display: flex;
  margin: 36px auto;
  align-items: center;
  max-width: 1020px;
  padding: 0.5em 1em;
  color: #00bfff;
  font-weight: bold;
  background: white;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}

.wrap_amazon:hover{
  transform: scale(1.05);
  transition: 0.5s;
}

.wrap_amazon p{
  font-size: 40px;
  position: relative;
  left: 90px;
}


.wrap_rakuten {
  display: flex;
  margin: 0 auto;
  align-items: center;
  max-width: 1020px;
  padding: 0.5em 1em;
  color: #00bfff;
  font-weight: bold;
  background: white;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}

.wrap_rakuten p{
  font-size: 40px;
  position: relative;
  left: 90px;
}

.wrap_rakuten img{
  position: relative;
  left: 120px;
}

.wrap_rakuten:hover{
  transform: scale(1.05);
  transition: 0.5s;
}

.wrap_yahoo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1020px;
  margin: 32px auto;
  padding: 40px 80px;
  overflow: hidden;
  height: auto;
  color: #00bfff;
  background: white;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}

.wrap_yahoo:hover{
  transform: scale(1.05);
  transition: 0.5s;
}

.wrap_yahoo p{
  font-size: 24px;
  position: relative;
  left: 90px;
  font-weight: bold;
}

/* =========== policy ========== */
.policy_inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 24px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.policy_inner h1{
    background-image: url("../images/blue-circle.svg");
  background-size: cover;
  background-position: center;
  padding: 24px;
  margin-top: 80px;
  margin-bottom: 32px;
}

.policy_inner h2 {
  margin-top: 40px;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: #000000 solid 2px;
}

.policy_inner ol {
  margin-top: 16px;
  padding-left: 20px;
}

.policy_inner li {
  margin-bottom: 8px;
}

.policy_inner .policy_name {
  text-align: right;
}

.wrap_amazon,
.wrap_rakuten,
.wrap_yahoo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1020px;
  margin: 32px auto;
  padding: 40px 80px;
  overflow: hidden;
}

.wrap_amazon p,
.wrap_rakuten p,
.wrap_yahoo p {
  position: static;
  font-size: 40px;
  flex-shrink: 0;
}

.wrap_amazon img,
.wrap_rakuten img,
.wrap_yahoo img {
  position: static;
  width: 480px;
  max-width: 60%;
  height: auto;
  display: block;
}