@charset "utf-8";

/*-------------------
///// 変数定義
-------------------*/
:root {
  --color-white: #ffffff;
  --color-def: #000000;
  --color-base: #FBF9F4;
  --color-base2: #fff3d2;
  --color-main: #79c5d7;
  --color-headline: #FF9C1B;
  --color-sub1: #666666;
  --color-sub2: #E38346;
  --color-sub3: #FFB74D;
  /* --color-aharacter: #4A0F09; */
  --color-table: #9F490E;
  --color-shadow: #4b2c14;
  --color-gray: #666666;
  --font-def: 'Noto Sans JP', 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
  --font-cn: 'Noto Sans TC', sans-serif;
  --font-kr: 'Noto Sans', sans-serif;
}

/*-------------------
///// フォント読み込み
-------------------*/

/* 日本語用フォント */
@font-face {
  font-family: 'Noto Sans JP';
  src: url('https://ride-with-kyoto.jp/common/font/NotoSansJP-VariableFont_wght.woff2') format('woff2'),
    url('https://ride-with-kyoto.jp/common/font/NotoSansJP-VariableFont_wght.woff') format('woff'),
    url('https://ride-with-kyoto.jp/common/font/NotoSansJP-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* 中国語（繁体字）用フォント */
@font-face {
  font-family: 'Noto Sans TC';
  src: url('https://ride-with-kyoto.jp/common/font/NotoSansTC-VariableFont_wght.woff2') format('woff2'),
    url('https://ride-with-kyoto.jp/common/font/NotoSansTC-VariableFont_wght.woff') format('woff'),
    url('https://ride-with-kyoto.jp/common/font/NotoSansTC-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* 英語やラテン文字圏に使えるベースフォント */
@font-face {
  font-family: 'Noto Sans';
  src: url('https://ride-with-kyoto.jp/common/font/NotoSans-VariableFont_wght.woff2') format('woff2'),
    url('https://ride-with-kyoto.jp/common/font/NotoSans-VariableFont_wght.woff') format('woff'),
    url('https://ride-with-kyoto.jp/common/font/NotoSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/*-------------------
///// リセット & 基本
-------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: var(--font-def);
  color: var(--color-def);
  background-color: var(--color-base);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin-top: 100px;
}

#cn {
  font-family: var(--font-cn);
}

#kr {
  font-family: var(--font-kr);
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*-------------------
///// タイポグラフィ
-------------------*/
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-def);
  color: var(--color-main);
  font-weight: 700;
  margin: 1em 0 0.5em;
}

h1 {
  font-size: 2.2em;
  line-height: 1.2;
  text-align: center;
  color: var(--color-white);
}

h2 {
  font-size: 2.2em;
  line-height: 1.2;
  padding-bottom: 0.3em;
  text-align: center;
  position: relative;
  margin-top: 2em;
}

h3 {
  font-size: 1.5em;
  color: var(--color-sub1);
}

h4 {
  font-size: 1.2em;
  font-weight: 600;
  color: var(--color-gray);
}

h5 {
  font-size: 1em;
  font-weight: 500;
  color: var(--color-gray);
}

/* ---- カスタムクラス ---- */
.heading-center {
  text-align: center;
  font-size: 1.6em;
  margin: 2em auto 1em;
  color: var(--color-main);
  font-weight: 600;
}

.heading-underline {
  position: relative;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}

.heading-underline::after {
  content: '';
  display: block;
  width: 3em;
  height: 2px;
  background-color: var(--color-main);
  position: absolute;
  left: 0;
  bottom: 0;
}

/* モバイルのみ改行 */
.br-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .br-sp {
    display: inline;
  }
}

/* -------------------
/////  共通ボタン
---------------------*/

/* 全てのボタンに共通する基本スタイル */
.universal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  margin-top: 20px;
  line-height: 1.2;
  border-radius: 50px;
  font-family: var(--font-def);
  font-weight: bold;
  font-size: 24px;
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* ホバー時*/
.universal-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

/* 単色オレンジボタン */
.universal-button--solid {
  background-color: var(--color-headline);
}

/* グラデーションボタン */
.universal-button--gradient {
  background-image: linear-gradient(to right, #FFB04C, #FF7815);
  position: relative;
  padding-right: 45px;
}

/* グラデーションボタンの右側の「>」アイコン */
.universal-button--gradient::after {
  content: '>';
  font-size: 20px;
  margin-left: 10px;
  line-height: 1;
  vertical-align: middle;
}

/* -------------------
/////  お問い合わせボタン
---------------------*/
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--color-headline);
  border-radius: 50px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  padding: 12px 40px;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

.contact-button-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--color-white);
  line-height: 1.2;
}

.contact-button-text .caption {
  font-size: 13px;
  margin-bottom: 7px;
  opacity: 0.8;
}

.contact-button-text .main-text {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
}

.contact-button-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  margin-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 矢印アイコンのスタイル */
.contact-button-icon .arrow {
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: var(--color-white);
  position: relative;
}

.contact-button-icon .arrow::before,
.contact-button-icon .arrow::after {
  content: "";
  display: block;
  width: 8px;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  right: 0;
}

.contact-button-icon .arrow::before {
  top: 0px;
  transform: rotate(45deg);
  transform-origin: right center;
}

.contact-button-icon .arrow::after {
  bottom: 0px;
  transform: rotate(-45deg);
  transform-origin: right center;
}

/* 丸が伸びるボタン */
.circle-button-container a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 275px;
  padding: 10px 0px 10px 25px;
  color: var(--color-gray);
  transition: 0.3s ease-in-out;
  font-weight: 500;
}

.circle-button-container a:before,
.circle-button-container a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}

.circle-button-container a:before {
  width: 0.5rem;
  height: 0.5rem;
  left: 1.1rem;
  border-top: solid 2px var(--color-white);
  border-right: solid 2px var(--color-white);
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}

.circle-button-container a:after {
  left: 0;
  background: var(--color-headline);
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}

.circle-button-container a span {
  position: relative;
  padding-left: 10px;
  transition: all 0.3s;
  z-index: 3;
}

.circle-button-container a:hover span {
  color: var(--color-white);
}

.circle-button-container a:hover:before {
  left: 2rem;
}

.circle-button-container a:hover:after {
  right: 0;
  width: 100%;
}

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/*-------------------
///// ヘッダー（PC & モバイル両対応）
-------------------*/
.header {
  background-color: var(--color-main);
  color: var(--color-white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  height: 100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  width: 220px;
}

.header-logo .sp-logo {
  display: none;
}

.right-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.language-switcher {
  display: flex;
  gap: 10px;
}

.lang-btn.pc-view.reservation-link {
  background-color: var(--color-white);
  color: var(--color-main);
}

.lang-btn.sp-view.reservation-link {
  background-color: var(--color-white);
  color: var(--color-main);
}


.lang-btn {
  padding: 6px 20px;
  background-color: var(--color-sub3);
  border-radius: 50px;
  color: var(--color-white);
  font-weight: bold;
  font-size: 16px;
}

/* PC用メニュー */
.pc-header-site-menu {
  display: block;
}

.pc-header-site-menu .site-menu ul {
  display: flex;
  gap: 20px;
}

.site-menu li a {
  font-size: 15px;
  font-weight: bold;
  color: var(--color-white);
}

.menu-icon {
  width: 23px;
  height: 23px;
  vertical-align: middle;
  margin-left: 4px;
  position: relative;
  top: -1.5px;
}

/* モバイルメニュー */
.header-site-menu {
  display: none;
  background-color: var(--color-main);
  padding: 20px 0;
  text-align: center;
}

.header-site-menu.is-show {
  display: block;
}

.header-site-menu .site-menu ul {
  display: block;
}

.header-site-menu .site-menu li {
  margin: 10px 0;
}

/* ハンバーガーボタン */
.toggle-menu-button {
  display: none;
  width: 44px;
  height: 34px;
  background-image: url('https://wandercycle.kyoto/images/icon/icon-menu.png');
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
}

.footer {
  background-color: var(--color-main);
  padding: 30px 10px 10px;
  font-size: 14px;
  color: var(--color-white);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

/* 左エリア：ロゴと連絡先 */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 300px;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
}

.footer-contact {
  line-height: 1.4;
}

.footer-contact .footer-tel {
  font-weight: bold;
}

.footer-contact .footer-time {
  font-size: 15px;
  color: var(--color-white);
}

/* 右エリア：メニュー */
.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 5px;
}

.footer-menu a {
  text-decoration: none;
  color: var(--color-white);
}

.footer-logo {
  margin-top: 10px;
}

.footer-tel {
  font-size: 21px;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: var(--color-white);
}

/* --- パンくずリストのスタイル --- */
.breadcrumbs {
  list-style: none;
  padding: 10px 40px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--color-white);
  background-color: var(--color-sub3);
}

.breadcrumbs li {
  margin-right: 5px;
  white-space: nowrap;
}

.breadcrumbs li a {
  text-decoration: none;
  color: var(--color-white);
}

.breadcrumbs li a:hover {
  text-decoration: underline;
}

.breadcrumbs li:not(:last-child)::after {
  content: ' > ';
  margin-left: 5px;
  color: var(--color-white);
}

.breadcrumbs li:last-child {
  color: var(--color-white);
  font-weight: bold;
}

/* ページタイトル */
.title {
  height: 70px;
  background-color: var(--color-sub3);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: var(--color-white);
}

.title h1 {
  font-size: 32px;
  margin: auto;
}

.language-switcher {
  display: flex;
  gap: 5px;
}

.lang-btn.pc-view {
  display: none;
}

.lang-btn.sp-view {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
}

.copyright {
  margin-top: 50px;
}

/* universal-button */
.universal-button {
  padding: 12px 20px;
  font-size: 17px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
}

.universal-button:hover {
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.4);
}

.universal-button--gradient {
  padding-right: 35px;
}

.universal-button--gradient::after {
  font-size: 18px;
  margin-left: 8px;
}

/* contact-button のモバイル向け調整 */
.contact-button {
  padding: 10px 28px;
  margin: 30px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
}

.contact-button:hover {
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.4);
}

.contact-button-text .main-text {
  font-size: 17px;
  line-height: 1.2;
}

.contact-button-icon {
  width: 40px;
  height: 40px;
  margin-left: 8px;
}

/* gototop */
/* ボタン全体 */
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  left: 10px;
  bottom: 10px;
  background: var(--color-headline);
  opacity: 0.6;
  border-radius: 50%;
  z-index: 1000;
}

#page_top::before {
  content: '\2191';
  /* 上向き矢印のUnicode */
  font-size: 25px;
  color: var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/*-------------------
///// レスポンシブ対応
-------------------*/
@media (max-width: 800px) {
  body {
    margin-top: 50px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 20px;
    text-align: center;
  }

  .header {
    height: 50px;
  }

  .header-inner {
    height: 50px;
    padding: 0 16px;
  }

  .header-logo img {
    width: 90px;
    display: none;
  }

  .header-logo .pc-logo {
    display: none;
    /* PCロゴは非表示 */
  }

  .header-logo .sp-logo {
    display: block;
    width: 122px;
    margin-left: 10px;
  }

  .right-area {
    flex-direction: row;
    align-items: center;
    gap: 0px;
  }

  .toggle-menu-button {
    display: block;
  }

  .pc-header-site-menu {
    display: none !important;
  }

  .language-switcher .pc-view {
    display: none;
  }

  .language-switcher .sp-view {
    display: inline-block;
  }

  .header-site-menu {
    display: none;
  }

  .header-site-menu.is-show {
    display: block;
  }

  .site-menu ul {
    display: block;
    text-align: center;
  }

  .site-menu li {
    margin: 10px 0;
  }

  /* パンくずリスト非表示 */
  .breadcrumbs {
    display: none;
  }

  /* タイトル */
  .title h1 {
    font-size: 25px;
    padding: 0;
  }

  /* フッター（モバイル） */
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-inner {
    max-width: 100%;
    padding: 0 10px;
  }

  .footer-menu {
    display: none;
  }

  .footer-contact {
    text-align: center;
  }
}

@media (min-width: 801px) {
  .header {
    height: 100px;
  }

  .header-inner {
    height: 100px;
  }

  .pc-header-site-menu {
    display: block;
  }

  .header-site-menu {
    display: none !important;
  }

  .language-switcher .pc-view {
    display: inline-block;
  }

  .language-switcher .sp-view {
    display: none;
  }

  .toggle-menu-button {
    display: none;
  }
}

@media screen and (max-width: 320px) {
  .lang-btn.sp-view {
    font-size: 13px;
  }
}