/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ===========================
   HEADER
=========================== */
.header {
  background: #ffffff;
  width: 100%;
  padding: 24px 0 0 0;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  padding: 0 24px 0 24px;
  border-bottom-right-radius: 40px;
  background: #ffffff;
  width: 280px;
}

.jara-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jara-mark {
  flex-shrink: 0;
}

.jara-mark svg {
  height: 48px;
  width: auto;
}

.jara-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.jara-text-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #1A1A1A;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.jara-text-en {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 13px;
  color: #0066B3;
  white-space: nowrap;
}

/* ===========================
   TITLE SECTION
=========================== */
.title-container {
  background: #ffffff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px 40px;
}

.title-logo {
	width: 450px;
}

/*.title-logo h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: clamp(50px, 9vw, 130px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-align: center;
}*/

    /*.title-logo h1 .orange {
      color: #F06A1E;
    }

    .title-logo h1 .blue {
      color: #0066B3;
    }*/

/* ===========================
   MAIN CONTAINER
=========================== */
.main-container {
  background: #f9f4ef;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 35px 0;
  gap: 0;
}

/* ===========================
   SWIPER SECTIONS
=========================== */
.slider-outer {
  overflow: hidden;
  width: 100%;
}

.slider-container {
  /*display: flex;*/
  white-space: nowrap;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: max-content;
  will-change: transform; /* 動作を滑らかにするおまじない */
}

.slider-item {
  flex-shrink: 0;
  padding: 0 10px;
}

.slider-item img {
  /*height: 200px;*/
	height: 180px;
  width: auto;
  border-radius: 20px;
}

@media (max-width: 990px) {
	.slider-item img {
  height: 140px;
}
}

/* 向きの定義（秒数はJSで入れるのでここには書かない） */
.scroll-left {
  animation: loop-left linear infinite;
}

.scroll-right {
  animation: loop-right linear infinite;
}

@keyframes loop-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes loop-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ===========================
   MENU SECTION
=========================== */
.menu-section {
  width: 100%;
  max-width: 1346px;
  padding: 20px 20px;
  margin: 0 auto;
}

/* --- PC Menu: Circles --- */
.menu-pc {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.menu-item-pc {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-item-pc:hover {
  transform: scale(1.05);
}

.menu-item-pc.orange {
  /*background: radial-gradient(circle at 42% 38%, #F9A040 0%, #E8611E 50%, #C84800 100%);*/
  background-image: url("img/orange_btn.svg");
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 3px 3px 22px 0px rgba(194, 100, 17, 0.3);
}

.menu-item-pc.blue {
  /*background: radial-gradient(circle at 42% 38%, #4AAAE0 0%, #1B72C0 50%, #0A4378 100%);*/
   background-image: url("img/blue_btn.svg");
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 3px 3px 38px 0px rgba(10, 67, 120, 0.18);
}

.menu-item-pc .menu-title {
  font-family: 'IBM Plex Sans JP', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}

.menu-item-pc .circle-chevron {
  width: 30px;
  height: 30px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
}

/* --- SP Menu: Buttons --- */
.menu-sp {
  display: none;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.menu-btn-sp {
  width: 100%;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: opacity 0.2s ease;
}

.menu-btn-sp:hover {
  opacity: 0.9;
}

.menu-btn-sp.orange {
  /*background: linear-gradient(to right, #E8611E, #F9A040);*/
	background-image: url("img/btn_orange_sp.svg");
	background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
}

.menu-btn-sp.blue {
  /*background: linear-gradient(to right, #0A4378, #3B9BD8);*/
	background-image: url("img/btn_blue_sp.svg");
	background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
}

.menu-btn-sp .btn-title {
  font-family: 'IBM Plex Sans JP', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
}

.menu-btn-sp .circle-chevron-sp {
  width: 20px;
  height: 20px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 11px;
  flex-shrink: 0;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #f5f5f5;
  width: 100%;
}

.footer-sub {
  background: #f6711e;
  width: 100%;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
}

/* ===========================
   RESPONSIVE BREAKPOINTS
=========================== */

/* Tablet (768px〜1099px) */
@media (max-width: 1268px) {
  .menu-item-pc {
    width: 160px;
    height: 160px;
  }

  .menu-item-pc .menu-title {
    font-size: 18px;
  }

  .menu-item-pc .circle-chevron {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  .menu-pc {
    gap: 16px;
  }
	
	 /*.slide-inner {
    height: 138px;
  }*/
}

/* Mobile (〜767px) */
@media (max-width: 990px) {
  .header {
    padding: 0;
  }
	
	.title-logo {
		width: 400px;
	}

  .header-logo {
	width: 230px;
    padding: 14px 20px;
    border-bottom-right-radius: 0;
  }

  .jara-mark svg {
    height: 26px;
  }

  .jara-text-ja {
    font-size: 9px;
  }

  .jara-text-en {
    font-size: 11px;
  }

  .title-container {
    padding: 20px 20px 24px;
  }

  .main-container {
    padding: 20px 0;
    gap: 20px;
  }

  .swiper-section.swiper-left {
    padding-bottom: 0;
  }

  .swiper-section.swiper-right {
    padding-top: 0;
  }

  .slide-inner {
    height: 138px;
  }
	
	
	/* モバイルの slide-inner / swiper-slide 高さもJSで動的設定 */
	
	/* モバイルでもスライド高さを固定 */
  /*.swiper-container-left .swiper-slide,
  .swiper-container-right .swiper-slide {
    height: 138px;
  }*/


  /* Hide PC menu, show SP menu */
  .menu-pc {
    display: none;
  }

  .menu-sp {
    display: flex;
  }

  .footer-copy {
    font-size: 10px;
  }
}
