@charset "UTF-8";
/* =====================
	MOTOTOWA
 ======================= */
/** -------------------- 変数定義 -------------------- **/
:root {
  /* カラー定義 */
  --c_white: #ffffff;
  --c_text: #000000;
  --c_bg: #f7f7f7;
  --c_base: #ecc04e;
  --c_accent1: #477ab5;
  --c_accent2: #d36f6f;
  /* フォント定義 */
  --font_ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  --font_eng: "Roboto", "Helvetica Neue", "Segoe UI", "Arial", sans-serif;
  /* transition定義 */
  --anim: all 0.4s ease-out;
}

/** ------------------------ COMMON STYLE ------------------------ **/
html {
  font-size: 100%;
}

body {
  font-family: var(--font_ja);
  font-optical-sizing: auto;
  font-size: clamp(14px, 0.83333vw, 0.83333vw);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--c_text);
  background-color: var(--c_bg);
}

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

a {
  color: var(--c_text);
  text-decoration: none;
  transition: var(--anim);
}

a:hover {
  opacity: 0.7;
}

ul,
ol {
  list-style: none;
}

.sp-only {
  display: none;
}

.wrapper {
  width: 62.5%;
  margin: 0 auto;
}

/** ------------------------ ヘッダー ------------------------ **/
.header {
  width: 80.42%;
  display: flex;
  align-items: center;
  column-gap: 0.75em;
  position: fixed;
  top: 1.56em;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 100;
}

.header .header-container {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--c_white);
  border-radius: 999px;
  box-shadow: 0 6px 6px rgba(236, 192, 78, 0.3);
  padding: 0.875em 3.24%;
}

.header .header-logo {
  font-size: 100%;
  width: 15.38em;
}

.header .header-logo img {
  width: 100%;
}

.header .header-nav-list {
  display: flex;
  align-items: center;
  column-gap: 2.13em;
}

.header .header-nav-item a:hover {
  opacity: 1;
  color: var(--c_base);
}

.header .menu-btn {
  display: none;
  width: 30px;
  height: 15px;
  position: relative;
  cursor: pointer;
  z-index: 1000;
}

.header .menu-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--c_base);
  transition: var(--anim);
}

.header .menu-btn span:first-child {
  top: 0;
}

.header .menu-btn span:nth-child(2),
.header .menu-btn span:nth-child(3) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.header .menu-btn span:last-child {
  bottom: 0;
}

.header .menu-btn.is-open span:first-child,
.header .menu-btn.is-open span:last-child {
  opacity: 0;
}

.header .menu-btn.is-open span:nth-child(2) {
  transform: rotate(45deg);
}

.header .menu-btn.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

/** ------------------------ フッター ------------------------ **/
.footer .footer-inner {
  background-color: var(--c_base);
  padding: 1.77% 0 2.5%;
}

.footer .footer-inner .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer .footer-logo {
  width: 22.19em;
  margin-bottom: 0.94em;
}

.footer .company-address {
  font-style: normal;
  color: var(--c_white);
}

.footer .footer-logo img {
  width: 100%;
}

.footer .sns-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 1.75em;
  margin-bottom: 0.94em;
}

.footer .sns-item {
  width: 1.75em;
}

.footer .sns-item img {
  width: 100%;
}

.footer .privacy-policy-link {
  color: var(--c_white);
}

.footer .copyright {
  text-align: center;
  padding: 0.81em 0;
}

/** ------------------------ ページタイトル、セクションタイトル ------------------------ **/

/** ------------------------ ボタン ------------------------ **/
.btn-wrapper {
  width: fit-content;
  background-color: var(--c_white);
  border-radius: 999px;
}

.btn {
  display: inline-block;
  transition: var(--anim);
}

.btn:hover {
  opacity: 1;
}

/* 矢印アイコンが付いた小さい黄色のボタン */
.btn-small.yellow.internal {
  font-weight: 500;
  color: var(--c_base);
  width: 12.75em;
  padding: 1em 1.88em;
  background-color: var(--c_white);
  border: 2px solid var(--c_base);
  border-radius: 999px;
  box-shadow: 0 3px 6px rgba(236, 192, 78, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-small.yellow.internal:hover {
  color: var(--c_white);
  background-color: rgba(236, 192, 78, 0.75);
}

.btn-small.yellow.internal::after {
  content: "";
  width: 0.56em;
  height: 0.94em;
  background-image: url(../img/common/icon-bent-arrow-yellow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: var(--anim);
}

.btn-small.yellow.internal:hover::after {
  background-image: url(../img/common/icon-bent-arrow-white.svg);
}

/* 矢印アイコンが付いた大きい青色のボタン */
.btn-large.blue.internal {
  font-size: 137.5%;
  font-weight: bold;
  text-align: center;
  color: var(--c_accent1);
  width: 18.27em;
  padding: 0.59em 1.82em;
  background-color: var(--c_white);
  border: 3px solid var(--c_accent1);
  border-radius: 999px;
  box-shadow: 0 3px 6px rgba(71, 122, 181, 0.3);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.btn-large.blue.internal:hover {
  color: var(--c_white);
  background-color: rgba(71, 122, 181, 0.75);
}

.btn-large.blue.internal::after {
  content: "";
  width: 0.45em;
  height: 0.77em;
  background-image: url(../img/common/icon-bent-arrow-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(0.1em);
  transition: var(--anim);
}

.btn-large.blue.internal:hover::after {
  background-image: url(../img/common/icon-bent-arrow-white.svg);
}

/* 外部リンクアイコンが付いた大きい黄色のボタン */
.btn-large.yellow.external {
  font-size: 137.5%;
  font-weight: bold;
  text-align: center;
  color: var(--c_base);
  width: 18.27em;
  padding: 0.59em 1.82em;
  background-color: var(--c_white);
  border: 3px solid var(--c_base);
  border-radius: 999px;
  box-shadow: 0 3px 6px rgba(236, 192, 78, 0.3);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.btn-large.yellow.external:hover {
  color: var(--c_white);
  background-color: rgba(236, 192, 78, 0.75);
}

.btn-large.yellow.external::after {
  content: "";
  width: 0.86em;
  height: 0.86em;
  background-image: url(../img/common/icon-external-link-yellow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(0.1em);
  transition: var(--anim);
}

.btn-large.yellow.external:hover::after {
  background-image: url(../img/common/icon-external-link-white.svg);
}

/* 外部リンクアイコンが付いた大きい青色のボタン */
.btn-large.blue.external {
  font-size: 137.5%;
  font-weight: bold;
  text-align: center;
  color: var(--c_accent1);
  width: 18.27em;
  padding: 0.59em 1.82em;
  background-color: var(--c_white);
  border: 3px solid var(--c_accent1);
  border-radius: 999px;
  box-shadow: 0 3px 6px rgba(71, 122, 181, 0.3);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.btn-large.blue.external:hover {
  color: var(--c_white);
  background-color: rgba(71, 122, 181, 0.75);
}

.btn-large.blue.external::after {
  content: "";
  width: 0.86em;
  height: 0.86em;
  background-image: url(../img/common/icon-external-link-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(0.1em);
  transition: var(--anim);
}

.btn-large.blue.external:hover::after {
  background-image: url(../img/common/icon-external-link-white.svg);
}

/** ------------------------ WP-PageNavi ------------------------ **/

/** ------------------------ single-pagination ------------------------ **/

/** -------------------- フォーム共通 -------------------- **/

/** -------------------- タブレット -------------------- **/
@media (max-width: 1280px) {
  /** ------------------------ COMMON STYLE ------------------------ **/
  .wrapper {
    width: 90%;
  }

  /** ------------------------ ヘッダー ------------------------ **/
  .header {
    width: 90%;
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 0.75em;
  }

  .header .header-container {
    column-gap: 2.13em;
  }
}

/** -------------------- スマホ -------------------- **/
@media (max-width: 699px) {
  /** ------------------------ COMMON STYLE ------------------------ **/
  body {
    font-size: 14px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  /** ------------------------ ヘッダー ------------------------ **/
  .header {
    top: 10px;
  }

  .header .header-container {
    padding: 10px 25px;
  }

  .header .header-logo {
    width: 150px;
  }

  .header .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background-color: var(--c_white);
    flex-direction: column;
    gap: 50px;
    padding: 100px 1em 50px;
    transform: translateX(100%);
    transition: var(--anim);
    overflow-y: auto;
  }

  .header .header-nav-list {
    flex-direction: column;
    row-gap: 25px;
  }

  .header .header-nav-item:last-child {
    margin-top: 50px;
  }

  .header .header-nav.is-open {
    transform: translateX(0);
  }

  .header .menu-btn {
    display: block;
  }

  /** ------------------------ フッター ------------------------ **/
  .footer .footer-inner {
    padding: 25px 0;
  }

  .footer .footer-inner .wrapper {
    flex-direction: column;
    row-gap: 50px;
  }

  .footer .footer-logo {
    width: 250px;
  }

  .footer .sns-list {
    justify-content: flex-start;
    column-gap: 10px;
  }

  /** ------------------------ ページタイトル、セクションタイトル ------------------------ **/

  /** ------------------------ ボタン ------------------------ **/
  .btn-large.blue.internal,
  .btn-large.yellow.external,
  .btn-large.blue.external {
    font-size: 16px;
  }

  /** ------------------------ WP-PageNavi ------------------------ **/

  /** ------------------------ single-pagination ------------------------ **/

  /** -------------------- フォーム共通 -------------------- **/
}
