@charset "UTF-8";
/*
Theme Name: Ainan Maranic
Version:1.0.1
Author:
*/
/*--------------共通---------------*/
html {
  font-size: 100%;
}
body {
  font-family: 'FOT-筑紫A丸ゴシック Std D', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'Hiragino Sans', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  color: #000;
  letter-spacing: 0.1em;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  transition: all .6s ease 0s;
}
body, html {
  margin: 0;
  padding: 0;
}
body * {
  box-sizing: border-box;
}
a {
  color: #05204b;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
  display: flex;
}
li {
  list-style: none;
}
.wrap {
  overflow: hidden;
}
.inner {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 100%;
    padding: 0 10px;
  }
}

.opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: green;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.opening-text {
  font-size: 2.5rem;
  font-weight: bold;
  display: flex;
  gap: 0.2em;
  color: #fff;
}
.opening-text span {
  opacity: 0;
  transform: translateY(50px) rotate(0deg);
  display: inline-block;
}
.transition-slide {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 10000;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .opening-text {
    font-size: 1.8rem;
  }
}


.top-page_btn {
  display: inline-block;
  font-weight: bold;
  text-align:center;
  border-radius: 30px;
  position: relative;
  width: 100%;
  max-width: 280px;
  padding: 17px 5px 17px 0;
  font-size: 1rem;
  color: #fff;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.1);
  transition: all .3s ease;
}
.top-page_btn:hover {
  box-shadow: 5px 5px 5px rgba(0,0,0,0.2); /* ホバー時のbox-shadowを少し小さくして、押された感じを出す */
  transform: translate(4px, 4px);
}
/*----------------ヘッダー---------------*/
.header {
  width: 100%;
  padding: 25px 0;
  background-color: #fff;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  transition: top 0.3s ease-in-out;
}
.totop_logo a {
  transition: opacity 0.3s ease;
}
.totop_logo a:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.main_logo_wrap {
  position: absolute;
  top: 0;     /* 上からの距離 */
  left: 0;    /* 左からの距離 */
  background-color: #fff;
  padding: 30px 30px 30px 20px;
  z-index: 10;   /* スライド画像より前面に出す */
}
.pc_logo {
  position: absolute;
  width: 600px; 
  bottom: 10%;     /* 上からの距離 */
  left: 5%;    /* 左からの距離 */
  z-index: 10;   /* スライド画像より前面に出す */
}
.main_logo {
  display: block;
  width: 150px;
}
.sub_title {
  position: absolute;
  bottom: 40%;     /* 上からの距離 */
  left: 6%;    /* 左からの距離 */
  z-index: 10;   /* スライド画像より前面に出す */
}
.pc_nav ul {
  display: flex;
  justify-content: flex-end;
}
.pc_nav ul li {
  padding: 0 15px;
  font-weight: bold;
}
.pc_nav ul li:not(:last-child) a:hover {
  color: #52ab22;
  transition: .3s;
}
.nav_entry a {
  padding: 17px 35px;
  color: #fff;
  background-color: #005931;
  border-radius: 25px;
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav_entry:hover a {
  opacity: .8;
}
@media screen and (max-width: 1400px) {
  .pc_nav ul li {
    padding: 0 10px;
  }  
  .pc_nav ul li a {
    font-size:14px;
  }  
}
@media screen and (max-width: 1150px) {
  .header {
    margin-top: -100px;
  }
  .main_content {
    width: 100%;
  }
  .header_logo {
    display: none;
  }
  .main_logo_wrap {
    padding: 20px 20px 20px 10px;
  }
  .main_logo {
    width: 3.5em;
  }
  
}
@media screen and (max-width: 768px) {
  .main_logo_wrap {
    padding: 18px 18px 18px 8px;
  }
  .main_logo {
    width: 2.5em;
  }
  .pc_logo {
    position: absolute;
    width: 100%; 
    top: 50%;     /* 上からの距離 */
    left: 50%;    /* 左からの距離 */
    transform: translate(-50%, -50%);
    z-index: 10;   /* スライド画像より前面に出す */
  }

}
/*----------------------ハンバーガーメニュー-------------------*/
.globalMenuSp {
  display: none;
  opacity: 0;
  /* padding-top: 50px; */
}
@media screen and (max-width: 1150px) {
  .globalMenuSp {
    display:block;
    opacity: 0;
  }  
  .pc_nav {
    display: none;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center; /* 上下中央寄せ */
    align-items: center; /* 左右中央寄せ */
    position: fixed;
    z-index: 99;
    right: 3%;
    top: 1.6%;
    width: 3.8rem;
    height: 3.8rem;
    cursor: pointer;
    text-align: center;
    border: 1px solid #52ab22;
    border-radius: 50px;
    background-color: #fff;
  }
  .hamburger span {
    display: block;
    position: relative;
    width: 30px;
    height: 3px;
    background: #52ab22;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:not(:last-child) {
    margin-bottom: 6px; /* 線同士の間隔調整 */
}
  /* ハンバーガーメニューがアクティブ時のスタイル */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0; /* 真ん中の線を消す */
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(45deg);
}
  nav.globalMenuSp {
    position: fixed;
    z-index: 98;
    top: 0;
    right: 0;
    color: #05204b;
    background: #fff;
    text-align: center;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    transition: all 0.6s;
  }
  nav.globalMenuSp ul {
    background: #fff;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    margin-top: 0;
  }
  nav.globalMenuSp ul {
    display: block;
  }
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px dotted #52ab22;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  nav.globalMenuSp ul li:hover {
    background: rgb(203, 236, 209);
  }
  nav.globalMenuSp ul li a {
    display: block;
    color: #4a4a4a;
    padding: 1.6em 0;
    text-decoration: none;
  }
  nav.globalMenuSp.active {
    transform: translateY(0%);
    opacity: 1;
  }
}

/*------------ファーストビュー-------------*/
.main_v {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}
.main_v img {
  display: block;
  width: 100vw;
  height: 100vh;
  min-height: unset;
  object-fit: cover;
}
.fade li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(50px); /* 初期位置は右寄り */
  animation: slideFade 15s infinite ease;
  transform-origin: center center;
}
.fade li:nth-child(1) {
  animation-delay: 0s;
}
.fade li:nth-child(2) {
  animation-delay: 5s; /* 20秒 ÷ 3 */
}
.fade li:nth-child(3) {
  animation-delay: 10s;
}
@keyframes slideFade {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  10% {
    opacity: 1;
    transform: translateX(0);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  40% {
    opacity: 0;
    transform: translateX(-50px); /* 左にシュッと流れて消える */
  }
  100% {
    opacity: 0;
    transform: translateX(-50px);
  }
}
/*------------NEWS-------------*/
.main_info {
  width: 60%;
  margin: 0 auto;
  padding: 100px 0;
}
.news_wrap {
  position: relative;
  margin: 0 auto;
  text-align: left;
}
.main_info h2 {
  font-family: azo-sans-web, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 5rem;
}
.news_sub_title {
  font-weight: bold;
}
.news_btn, .course_btn {
  margin-top: 40px;
  background: #46b023;
}
.main_info_content {
  width: 85%;
  margin:0 auto;
}
.main_news ul {
  display: block;
  padding: 0 30px;
}
.main_news_list {
  position: relative;  /* ← これを追加 */
  padding: 10px 0;
  margin: 10px 0;
}
.main_news_list::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;  /* top: 0; ではなく bottom: 0; に変更 */
  left: 0;
  width: 100%;
  height: 1px;
  background: #ddd;
}
.all_list_wrap {
  text-align: center;
}
.main_news_list .date {
  color: #52ab22;
  font-size: 14px;
}
.title {
  padding: 0 10px;
}
@media screen and (max-width: 1150px) {
  .main_news ul {
    padding: 0 10px;
  } 
}
@media screen and (max-width: 768px) {
  .main_info {
    width: 100%;
    margin: 0;
    padding: 40px 0;
  }  
  .main_info_flex {
    display: block;
  }
  .main_info_content {
  }
  .main_info h2 {
    font-size: 3.6rem;
  }
  .main_info_content {
    width: 100%;
  }
.news_wrap {
    margin-left: 10px;
  }
}

/*------------県境を越える、心に残るロングライド-------------*/
.conceptHeading {
  font-family: azo-sans-web, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
}
.aboutCycleConnect p {
  margin-bottom: 20px;
}
.aboutCycleConnect {
  position: relative;
}
.map-image {
  width: 40%; /* 初期サイズを少し小さめに */
  transform-origin: center center;
}
.guest_bgImg1 {
  position: absolute;
  top: -25%;
  right: 0;
  width: 28%;
  z-index: 40;
}
.guest_bgImg2 {
  position: absolute;
  bottom: -40%;
  left: 0;
  width: 28%;
  z-index: 40;
}
@media screen and (max-width: 768px) {
  .map-image {
    padding-left: 6%;
    width: 83%; /* 初期サイズを少し小さめに */
    transform-origin: center center;
  }
  .guest_bgImg1 {
    top: -20%;
    right: 0;
    width: 48%;
    z-index: 40;
  }
  .guest_bgImg2 {
    position: absolute;
    bottom: -38%;
    left: 0;
    width: 58%;
    z-index: 40;
  }
}
/*--------------ゲストライダー-------------*/
.guest {
  padding: 15rem 0 3rem 0;
}
.mc {
  padding: 4rem 0 2rem 0;
}
.guest h2, .mc h2 {
  font-size: 5rem;
}
.guest_flex {
  display: flex;
  justify-content: center;
  gap: 2.5em;
}
.cut-corner-box1, .cut-corner-box2 {
  padding: 3em 2em;
  background: linear-gradient(to bottom right, #c0ca33, #6bbf57, #3a901d);
  clip-path: polygon(
    30px 0%,  /* 上左カット */
    calc(100% - 30px) 0%,  /* 上右カット */
    100% 30px,
    100% calc(100% - 30px),
    calc(100% - 30px) 100%,
    30px 100%,
    0% calc(100% - 30px),
    0% 30px
    );
  }
.cut-corner-box1 {
  width: 35%;
}
.cut-corner-box2 {
  width: 50%;
}
.guest_name {
  border: 1px solid #52ab22;
  border-radius: 20px;
  display: inline-block;
  padding: 5px 15px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1150px) {

  .cut-corner-box1 {
    width: 100%;
  }
  .cut-corner-box2 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .guest_flex {
    display: block;
  }
  .guest {
    padding: 11rem 0 3rem 0;
  }
  .mc {
    padding: 0 0 2rem 0;
  }
  .guest h2, .mc h2 {
    font-size: 3.6rem;
  }
  .cut-corner-box1 {
    width: 100%;
    margin-bottom: 20px;
  }
  .cut-corner-box2 {
    width: 100%;
  }
}
/*--------------コースの特徴-------------*/
.course_inner {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .course_inner {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .course_inner {
    width: 100%;
    padding: 0 10px;
  }
}
.course {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
.course h2 {
  font-family: azo-sans-web, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 5rem;
}
.course-images {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.course-img {
  position: absolute;
  top: 5%;
  right: -100%; /* 最初は画面外 */
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
/* 表示状態 */
.course-img.visible {
  opacity: 1;
  z-index: 1;
}
.course-title {
  display: inline-block;
  overflow: hidden;
}
.course-title span {
  display: inline-block;
}
.img1, .img2, .img3 {
  width: 380px;
}
@media screen and (max-width: 1300px) {
  .img1, .img2, .img3 {
    width: 350px;
  }
  .course-img {
    top: 10%;
  }
}
@media screen and (max-width: 1000px) {
  .course {
    flex-direction: column;
    height: auto; /* 固定解除 */
    align-items: flex-start;
  }
    .course-images {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
  .course-img {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 50vh; /* 高さを調整（例: 60%のビューポート高） */
    object-fit: cover; /* はみ出し部分をカットして埋める */
    object-position: center; /* 中央を基準にトリミング */
    opacity: 0;
    transform: rotate(0deg);
  }
  .course-img.visible {
    opacity: 1;
  }
  .course_text {
    margin: 0 auto;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .course h2 {
    font-size: 3.6rem;
    text-align: center;
  }
  .course_sub_title {
    text-align: center;
  }
  .course_btn {
    display: block;
    margin: 0 auto;
  }

}

/*--------------協賛-------------*/
.kyosan-title {
  display: inline;
  position: relative;
  font-size: 20px;
  padding: 0 30px; /* 左右に余白を入れる */
}

.kyosan-title::before,
.kyosan-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 150px;
  height: 1px;
  background: #000;
}

.kyosan-title::before {
  left: 0;
  transform: translateX(-100%);
}

.kyosan-title::after {
  right: 0;
  transform: translateX(100%);
}
@media screen and (max-width: 768px) {
  .company-separator {
    display: none;
  }
  .company-b {
    display: block;
  }
  .company-names {
    margin-top: 10px;
  }
}

/*--------------フッター-------------*/
.footer-curve {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background-image: url('img/footerbgimg.webp');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
.footer-curve svg {
  display: block;
  width: 100%;
  height: 100px;
}
.footer_wrapper {
  position: relative;
  height: auto; /* ← こうする */
  width: 100%; /* .footer1 の高さ（100px）と .footer の padding-top（280px）の合計 */
}
.footer {
  width: 100%;
  background-image: url('img/footerbgimg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0 25px 0;
}
.footer p {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  color: #fff;
}
.ex_info {
  font-size: 14px;
}
.ex_info span {
  text-align: center;
  display: inline-block;
  width: 80px;
  background-color: #fff;
  color: #ef8f36;
  border-radius: 20px;
  line-height: 1.4;
  margin-right: 5px;
}
.footer_flex {
  width: 65%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sitemap {
  display: flex;
}
.sitemap ul {
  display: block;
}
.sitemap li::before {
  content: "●";
  font-size: 0.5em;
  color:#5daa2a;
  display: inline-block;
  width: .5em;
  margin-left: -.5em;
  margin-right: 1.5em;
}
.sitemap_first {
  padding-right: 70px;
}
.sitemap ul li {
  padding: 5px 0;
}
.sitemap ul li a {
  font-size: 14px;
  color: #fff;
}
.execution {
  font-size: 18px;
  font-weight: bold;
}
.sitemap ul li a:hover {
  opacity: 0.8;
}

.copyright {
  text-align: center;
  font-size: 10px;
  padding-top: 50px;
  margin-bottom: 15px;
}
.mail_to {
  text-decoration: underline;
  font-size: 14px;
  color: #fff;
}
.mail_to:hover {
  opacity: .8;
}
.kochitabi_logo {
  width: 350px;
  margin-top: 20px;
}
@media screen and (max-width: 1150px) {
  .footer_flex {
    width: 90%;
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 50px;
  }
  .footer-curve svg {
    height: 60px;
  }
  .sitemap {
    display: block;
    margin-top: 10px;
  }
  .sitemap_first {
    padding-right: 30px;
  }
  .sitemap ul li {
    padding: 3px 0 3px 0;
  }  
  .ex_info span {
    width: 50px;
  }
  .contact span {
    display: block;
  }
}
@media screen and (max-width: 580px) {
  .footer_flex {
    display: block;
    width: 100%;
    padding: 0 20px;
  }
  .sitemap {
    display: flex;
    margin-top: 10px;
  }
}
/*--------------固定ページ共通-------------*/
.fixed_page_wrap {
  padding: 7.6rem 0 6.4rem 0;
  text-align: center;
}
.fixed_page_title {
  position: relative;
  display: inline-block;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  margin-top: -90px;
  font-size: 2.6rem;
  padding: 0 1.5em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}
.fixed_page_title::before,
.fixed_page_title::after {
  content: "";
  display: block;
  width: 10px;          /* 鉤括弧の横幅 */
  height: 100%;
  border: 2px solid #9be830; /* 鉤括弧の線 */
  position: absolute;
  top: 0;
}
.fixed_page_title::before {
  left: 0;
  border-right: none; /* 左側は右線を消す＝「[」 */
}
.fixed_page_title::after {
  right: 0;
  border-left: none;  /* 右側は左線を消す＝「]」 */
}
@media screen and (max-width: 1150px) { 
  .fixed_page_title {
    padding: 0 .8em;
    margin-top: 80px;

  }
}
@media screen and (max-width: 768px) {
  .fixed_page_wrap {
    padding: 6rem 0 3.6rem 0;
  }
}
@media screen and (max-width: 580px) { 
  .fixed_page_title {
    font-size: 32px;
    margin-top: 80px;
  }
}
/*--------------大会要項-------------*/
.outline_content {
  width: 70%;
  margin: 0 auto;
}
.outline_content h4, .schedule h4 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
}
.outline_content table {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  text-align: left;
  border-collapse: collapse;
}
.outline_content table tr {
  border-bottom: 1px solid #ddd;
}
.outline_content table th, .outline_content table td {
  padding: 20px 10px;
}
.outline_content table td {
  padding-left: 35px;
}
.nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .outline_content {
    width: 100%;
    padding: 0 10px;
  }
  .outline_content h4 {
	font-size: 24px;
    margin-bottom: 20px;
  }
  .schedule h4 {
	font-size: 24px;
  }
  .outline_content table {
    border-top: none;
    border-bottom: none;  
    font-size: 14px;
    display: block;
  }
  .outline_content table th, .outline_content table td {
    display: block;
    padding: 10px 10px;
  }
  .outline_content table th {
    background-color: #eef8f0;
  }
  .outline_content table tr {
    border-bottom: none; 
  }
  .schedule table {
    font-size: 13px;
  }
  .outline_content {
    margin-bottom: 100px;
  }  
  .schedule {
    margin-bottom: 100px;
  }
}


/*--------------お知らせ-------------*/
.info {
  width: 60%;
  margin: 0 auto 50px auto;
}
.info_btn {
  margin-top: 50px;
}
.clearfix {
  text-align: center;
  margin-bottom: 50px;
}
.clearfix a {
  font-size: 16px;
  padding: 20px 30px;
  border-radius: 50px;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.1);
  transition: all .3s ease;
  background-color: green;
  color: #fff;
}
.clearfix a:hover {
  box-shadow: 5px 5px 5px rgba(0,0,0,0.2); /* ホバー時のbox-shadowを少し小さくして、押された感じを出す */
  transform: translate(4px, 4px);
}
@media screen and (max-width: 768px) {
  .info {
    width: 100%;
    padding: 0 10px;
    margin: 0 auto 50px auto;
  }
}
/*--------------アクセス-------------*/
.kiyaku a {
  padding: 15px 80px;
  border: 1px solid #edf033;
  border-radius: 50px;
  transition: .3s;
}
.access_flex {
  margin-bottom: 100px;
}
.access h4, .stay h4 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 30px;
  text-align: center;
  margin-bottom: 50px;  
}
.stay h4 {
  margin-top: 0;
}
.access h4 {
  margin-top: 80px;
}
.stay h5, .access h5 {
  font-size: 16px;
  border: 2px solid #9be830;
  padding: 10px 0;
  text-align: center;
  margin: 20px 0;
}
.access_place {
  font-size: 20px;
  font-weight: bold;
  padding-top: 10px;
}
.address_info {
  font-style: normal;
  padding-bottom: 20px;
}
.hotel {
  margin: 100px auto 120px auto;
}
.hotel a {
  padding: 20px 80px;
  border: 1px solid #edf033;
  border-radius: 50px;
  background-color: #edf033;
  transition: .3s;
}
.hotel a:hover, .kiyaku a:hover {
  opacity: .8;
  transition: .3s;
}
.rounded-table tr:first-child td:first-child {
  border-top-left-radius: 15px;
}
.rounded-table tr:first-child td:last-child {
  border-top-right-radius: 15px;
}
.inn td {
  padding: 23px 0;
}
.dot {
 border-bottom: 1px dotted #c7c7c7;
}
.rounded-table button {
  border: 1px solid orange;
  border-radius: 20px;
  padding: 5px 8px;
}
.rounded-table button:hover {
  opacity: .8;
  transition: .3s;
  color: #fff;
  background-color: orange;
}
.rounded-table a {
  text-decoration: underline;
  transition: .3s;
}
.rounded-table a:hover {
  color:#78c111;
  transition: .3s;
}
@media screen and (max-width: 768px) {
  .inn td:nth-child(2) {
    display: none;
  }
  .stay h4 {
    margin-top: 0;
    font-size: 24px;
  }
  .access h4 {
	font-size: 24px;
    margin-top: 50px;
    margin-bottom: 50px;  
  }
}

/*--------------テスト-------------*/
.visual {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.circle-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

.circle-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.circle-arrow svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  transform: rotate(-90deg);
}

.base {
  fill: none;
  stroke: #ccc;
  stroke-width: 4;
}

.stroke {
  fill: none;
  stroke: #52ab22;
  stroke-width: 4;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 0.5s ease;
}

.circle-btn:hover .stroke {
  stroke-dashoffset: 0;
}

.arrow {
  position: relative;
  font-size: 14px;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

.btn-text {
  font-size: 16px;
  user-select: none;
}
.circle-btn .btn-text {
  transition: .3s;
}
.circle-btn:hover .btn-text {
  color: #52ab22;
  transition: .3s;
}
/*--------------トップページへボタン-------------*/
.to-top {
  position: fixed;
  right: 20px;
  bottom: 50px;
  width: 5.6em; /* 必要に応じて調整 */
  height: 60px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  .to-top {
    bottom: 30px;
    width: 3.6em; /* 必要に応じて調整 */
    height: 60px;
  }
}
/*--------------エイドステーション-------------*/
.aid_inner {
  width: 80%;
  margin: 0 auto;
}
.aid_title_img {
  width: 350px; 
}
.aid_content {
  display: flex;
  flex-direction: column;   /* 縦並び */
  align-items: center;
}
.aid_img_list {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.aid_img_list img {
  flex: 1;
  height: auto;            /* 高さを自動調整 */
  object-fit: cover;       /* トリミングしてフィット */
}
.aid_img_list1 img {
  width: 33%;          /* 横に3枚収まるように最大幅を制御 */
}
.aid_img_list2 img {
  width: 50%;          /* 横に3枚収まるように最大幅を制御 */
}
.aid_text {
  text-align: left;         /* 左揃え */
  width: fit-content;       /* コンテンツ幅に合わせる */
  width: 65%;       /* 幅が広がりすぎないように制御 */
  margin-top: 15px;
}
.aid_item {
  margin-right: 5px;
}
.aid_list_item {
  margin-right: 20px;
}
.aid_place {
  display: inline;
  border-bottom: 3px dotted #E27E69;
  font-weight: bold;
  margin: .8rem 0;
  font-size: 1.2rem;
  padding: 3px 10px;
}
.aid_onepoint {
  display: flex;         /* アイコンとテキストを横並びに */
  align-items: center; /* テキストの上に揃える */
}
.icon {
  width: 55px;   /* 小さめに調整 */
  height: auto;
  margin-right: 5px;
}

@media screen and (max-width: 1350px) {
  .aid_inner {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .aid_img_list {
    flex-direction: column;
    align-items: center;
  }
  .aid_img_list img {
    flex: none;
	width: 100%;     /* 親幅いっぱいに */
    height: auto;            /* 高さを自動調整 */
    object-fit: contain;       /* トリミングしてフィット */
  }
  /* .aid_img_list img {
    max-width: 100%;
    height: auto;
  } */
  .aid_img_list1 img,
  .aid_img_list2 img {
    width: 100%;   /* ← これを追加して上書き！ */
	width: auto;
	height: auto;
  }
  .aid_text {
    text-align: left;
    width: fit-content;
    width: 100%;
  }
  .aid_list_item {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .aid_img_list img {
    width: 340px;
    height: 230px;
  }
}
@media screen and (min-width: 1600px) {
  .aid_img_list img {
    width: 400px;
    height: 270px;
  }
}
@media screen and (min-width: 1900px) {
  .aid_img_list img {
    width: 450px;
    height: 300px;
  }
}