@charset "utf-8";

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

/* ============ 変数宣言 ============ */
:root {
  /* color */
  --clr-main: #00a1e4;
  --clr-sub01: #2f2d57;
  --clr-accent: #e76143;
  --clr-bg: #f4f6fc;
  --clr-bg-gray: #f8f8f8;
  --clr-white: #fff;
  --clr-black: #000;
  --clr-txt: #000000;

  /* font-weight */
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --black: 900;

  /* 余白 */
  --gutter: 32px;
  /* コンテンツ幅 */
  --col-2: calc((100% - (var(--gutter) * 1)) / 2);
  --col-3: calc((100% - (var(--gutter) * 2)) / 3);
  --col-4: calc((100% - (var(--gutter) * 3)) / 4);

  /* 基本余白 */
  --sp-05: 4px;
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-10: 80px;

  /* タイトルサイズ */
  --h3-fz: 42px;
  --h4-fz: 32px;
  --h5-fz: 26px;
  --h6-fz: 20px;
  --small-fz: 14px;
}

/* ============ style ============ */
body {
  min-width: 1200px;
  color: var(--clr-txt);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: var(--regular);
}

main {
  padding-top: 66px;
  min-height: 70vh;
  overflow: hidden;
}
.bold {
  font-weight: var(--bold);
}
/* .ft-min {
  font-family: "Noto Serif JP", serif;
} */
.ft-en {
  font-family: "Roboto", sans-serif;
}
.txt-w {
  color: var(--clr-white);
}
.txt-r {
  color: var(--clr-accent);
}
small {
  font-size: inherit;
}

.sp {
  display: none !important;
}
.pc {
  display: block;
}

/* 背景色 */
.bg {
  background-color: var(--clr-bg-gray);
}
.bg-blue {
  background-color: var(--clr-bg);
}

/* 見出し(h3) */
.title {
  color: var(--clr-sub01);
  line-height: 1;
  text-align: center;
  margin-bottom: 40px;
}

.cmn-h3 {
  line-height: 1.5;
  font-size: var(--h3-fz);
  font-weight: var(--bold);
  color: var(--clr-black);
  text-align: center;
  margin-bottom: var(--sp-5);
}

h3 {
  font-size: var(--h3-fz);
  font-weight: var(--bold);
}
h4 {
  font-size: var(--h4-fz);
  font-weight: var(--bold);
}
h5 {
  font-size: var(--h5-fz);
}
h6 {
  font-size: var(--h6-fz);
}

/* 強調マーカー */
.marker {
  background: linear-gradient(transparent 10%, #ffe7e1 10%, #ffe7e1 100%);
  display: inline;
  padding: 0 2px; /* テキストの左右に少し余白を追加 */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.marker-r {
  background: linear-gradient(transparent 70%, #f9e9be 70%);
}

/* 画像 */
figure img {
  max-width: 100%;
}
/* 画像ブラウザレンダリング制御 */
img {
  /* image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges; */
}

/* telリンク無効 */
a[href^="tel:"] {
  pointer-events: none;
}

/* インナー */
.inner {
  width: 1100px;
  margin: 0 auto;
  padding: 80px 0;
}

/* リンク */
a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.6;
}

/* ボタン btn */
.btn {
  display: block;
  margin: 0 auto;
  width: fit-content;
  background-color: var(--clr-main);
  padding: 16px 80px;
  border-radius: 8px;
  color: var(--clr-white);
  font-weight: var(--bold);
  transition: 0.3s;
  box-sizing: border-box;
  border: var(--clr-main) 1px solid;
}
.btn:hover {
  opacity: 1;
  color: var(--clr-main);
  background-color: var(--clr-white);
}

/* ページネーション pagination */
.pagination {
}
.pagination_list {
  display: flex;
  justify-content: center;
}
.pagination_list li {
  margin-right: 16px;
}
.pagination_list li:last-of-type {
  margin-right: 0;
}
.pagination_list li.dot,
.pagination_list li.next {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination_list li.dot::before {
}
.pagination_list li.next {
  position: relative;
}
.pagination_list li.next a {
  width: 64px;
  height: 42px;
}
.pagination_list li.next::before {
  position: absolute;
  right: calc(24px + 4.5px);
  top: calc(16px - 4px);
  content: "";
  display: block;
  background: url("../img/common/arrow_blue.webp") no-repeat;
  background-size: contain;
  width: 9px;
  height: 16px;
  transition: 0.3s;
  filter: brightness(1000%);
}
.pagination_list li:not(.dot, .next) {
  border: 1px solid var(--clr-main);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  font-size: var(--small-fz);
}
.pagination_list li.current a,
.pagination_list li.next {
  background-color: var(--clr-main);
  color: var(--clr-white);
}

/* =======================================
header
 ======================================= */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--clr-white);
  transition: box-shadow 0.3s ease;
  min-height: 66px;
}

header.scrolled {
  box-shadow: 0px 4px 12px rgba(46, 46, 46, 0.08);
}
.header_inner {
  width: 1100px;
  margin: 0 auto;
  padding: 8px 0;
}
.header_main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_logo {
  width: 158px;
}
.header_logo img {
  max-width: 100%;
}

.header_cont {
  display: flex;
  align-items: center;
}

.header_nav {
  margin-right: 25.3px;
}
.header_nav ul {
  display: flex;
}

.header_nav ul li {
  font-weight: var(--bold);
  font-size: 14px;
  margin-right: 24px;
}
.header_nav ul li:last-of-type {
  margin-right: 0;
}

.header_nav ul li a {
  transition: color 0.3s;
}
.header_nav ul li a:hover {
  opacity: 1;
  color: var(--clr-main);
}

.header_cta {
  display: flex;
  align-items: center;
}
.header_cta-tel a {
  display: flex;
  flex-direction: column;
}
.header_cta-tel span {
  display: block;
}
.header_cta-tel .time {
  text-align: right;
  color: var(--clr-main);
  font-size: 10px;
  font-weight: var(--bold);
}
.header_cta-tel .tel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--clr-accent);
  font-size: 16px;
  font-weight: var(--bold);
}
.header_cta-tel .tel::before {
  display: block;
  content: "";
  background: url("../img/common/icon_cta_tel-o.webp") no-repeat;
  background-size: contain;
  width: 13.5px;
  height: 13.5px;
  margin-right: 3px;
  margin-top: 1px;
}

.header_cta-contact {
}
.header_cta-contact a {
  box-sizing: border-box;
  border: 1px solid var(--clr-accent);
  background-color: var(--clr-white);
  color: var(--clr-accent);
  font-weight: var(--bold);
  padding: 10px 18px;
  border-radius: 26px;
  margin-left: 5px;
  line-height: 1;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.header_cta-contact a::before {
  display: block;
  content: "";
  background: url("../img/common/icon_mail-o.webp") no-repeat;
  background-size: contain;
  width: 17px;
  height: 14px;
  margin-right: 3px;
  margin-top: 1px;
  transition: 0.3s;
}

.header_cta-contact a:hover {
  opacity: 1;
  background-color: var(--clr-accent);
  color: var(--clr-white);
}
.header_cta-contact a:hover::before {
  background: url("../img/common/icon_mail-w.webp") no-repeat;
  background-size: contain;
}
.header_cta-contact a:hover {
}

/* =======================================
main-visual
 ======================================= */
 #mv_cta {
  background-color: var(--clr-bg);
  position: relative;
  z-index: 1;
}

#mv_cta .inner {
  padding: 0;
  padding-top: var(--sp-10);
}
.mv_cta_wrap {
  padding: 24px;
  background-color: #fff;
  box-shadow: 0px 4px 12px rgba(46, 46, 46, 0.12);
  border-radius: 8px;
}

.mv_cta_wrap h3 {
  text-align: center;
  color: var(--clr-sub01);
  line-height: 1.5;
  font-size: var(--h5-fz);
  margin-bottom: 16px;
}

/* =======================================
sub-visual
 ======================================= */
#sub-visual {
  background: linear-gradient(
    177.67deg,
    #f0f3fb 0.98%,
    #ffffff 49.03%,
    #f0f3fb 97.09%
  );
}
#sub-visual .inner {
  padding: 49px 0;
}
.page-title {
  font-size: var(--h3-fz);
  font-weight: var(--bold);
  color: var(--clr-main);
}
/* =======================================
breadcrumb
 ======================================= */
#breadcrumb {
}
#breadcrumb .inner {
  padding: 8px 0;
}
.breadcrumb-list {
  display: flex;
}
.breadcrumb-list li {
  font-size: var(--small-fz);
}
.breadcrumb-list li:not(:last-of-type) {
  position: relative;
  margin-right: 24px;
}
.breadcrumb-list li:not(:last-of-type):after {
  position: absolute;
  right: -16px;
  top: 0;
  content: ">";
}
.breadcrumb-list li a {
  color: var(--clr-main);
}

/* =======================================
cta section
 ======================================= */
.cta_section {
  background-color: var(--clr-main);
}
.cta_section .inner {
  padding: 40px 0;
}
.cta_section h3 {
  font-size: var(--h5-fz);
  color: var(--clr-white);
  font-weight: var(--bold);
  text-align: center;
  margin-bottom: var(--sp-3);
}

/* cta リンク */
.cta {
  display: flex;
  justify-content: space-between;
}

.cta_tel-wrap {
}
.cta_tel-wrap a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 510px;
  padding: 8px;
  background: linear-gradient(
    87.8deg,
    #e76143 0%,
    #ff866b 72.12%,
    #ff8d73 100%
  );
  /* shadow */

  box-sizing: border-box;
  box-shadow: 0px 4px 12px rgba(46, 46, 46, 0.2);
}
.cta_tel-img {
  width: 120px;
  margin-right: 33px;
}
.cta_tel-txt {
  display: flex;
  flex-direction: column;
}
.cta_tel-txt .txt {
  width: fit-content;
  background-color: var(--clr-white);
  color: var(--clr-sub01);
  font-size: 12px;
  font-weight: var(--bold);
  border-radius: 4px;
  padding: 2px 10px;
  margin-bottom: 5px;
}
.cta_tel-txt .tel {
  display: flex;
  align-items: center;
  line-height: 1;
  color: var(--clr-white);
  font-size: 42px;
  font-weight: var(--bold);
}
.cta_tel-txt .tel::before {
  content: "";
  display: block;
  background: url("../img/common/icon_cta_tel.webp") no-repeat;
  background-size: contain;
  width: 28.5px;
  height: 28.5px;
  margin-right: 5px;
}
.cta_tel-txt .time {
  color: var(--clr-white);
  font-weight: var(--regular);
  font-size: 12px;
  line-height: 1;
  margin-top: -2px;
  text-align: right;
}

.cta_mail {
}
.cta_mail a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 510px;
  height: 100%;
  background-color: var(--clr-white);
  border: var(--clr-accent) 3px solid;
  border-radius: 58px;
  font-size: 26px;
  font-weight: var(--bold);
  color: var(--clr-accent);
  line-height: 1;
  transition: 0.3s;
  /* shadow */
  box-sizing: border-box;
  box-shadow: 0px 4px 12px rgba(46, 46, 46, 0.2);
}
.cta_mail a::before {
  content: "";
  display: block;
  background: url("../img/common/icon_mail-o.webp") no-repeat;
  background-size: contain;
  width: 35px;
  height: 28px;
  margin-right: 8px;
  transition: 0.3s;
}
.cta_mail a::after {
  position: absolute;
  right: 30px;
  top: calc(50% - 8px);
  content: "";
  display: block;
  background: url("../img/common/arrow_orange.webp") no-repeat;
  background-size: contain;
  width: 11px;
  height: 20px;
  transition: 0.3s;
}
.cta_mail a:hover {
  opacity: 1;
  background-color: var(--clr-accent);
  color: var(--clr-white);
}
.cta_mail a:hover::before {
  filter: brightness(1000%);
}
.cta_mail a:hover::after {
  right: 25px;
  filter: brightness(1000%);
}

/* =======================================
footer
 ======================================= */
footer {
  border-top: 3px solid var(--clr-sub01);
}
footer .inner {
  padding: 40px 0 24px;
}
.footer_main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer_logo {
  width: 158px;
}
.footer_logo a {
  display: block;
}
.footer_logo a img {
  max-width: 100%;
}

.footer_nav {
}
.footer_nav ul {
  display: flex;
}
.footer_nav ul li {
  font-size: 14px;
  margin-right: 24px;
}
.footer_nav ul li:last-of-type {
  margin-right: 0;
}
.footer_nav-sub {
  margin-top: 4px;
  justify-content: flex-end;
}
.footer_info {
}

.footer_dds {
  margin: 0 auto;
  margin-bottom: 8px;
  width: 369px;
}
.footer_dds a {
  display: block;
}
.footer_dds a img {
  max-width: 100%;
}
.footer_info address {
  display: block;
  text-align: center;
  margin: 0 auto;
}

.copy_wrap {
  background-color: var(--clr-sub01);
  padding: 17px 0;
}
.copy {
  display: block;
  margin: 0 auto;
  width: fit-content;
  color: var(--clr-white);
  font-size: 12px;
}

/* =======================================
サイトマップ
 ======================================= */
#sitemap {
}
.site-map {
  width: 70%;
  margin: 0 auto;
}
.site-map li {
  text-align: left;
  margin-bottom: 30px;
  font-size: var(--h6-fz);
  font-weight: var(--bold);
  border-bottom: 1px solid var(--clr-main);
}
.site-map li a {
  padding: 15px;
  display: block;
}

/* =======================================
プライバシーポリシー
 ======================================= */
#policy {
}

#policy .title {
  line-height: 1.5;
}
.policy_wrap {
  margin-bottom: 80px;
}
.policy_box {
  margin-bottom: 50px;
}
.policy_box h4 {
  font-size: var(--h5-fz);
  color: var(--clr-sub01);
  margin-bottom: 20px;
}
.policy_box p {
  margin-bottom: 20px;
  line-height: 1.8;
}
.policy_box p strong {
  font-weight: var(--bold);
  display: block;
  margin-bottom: 10px;
}
.policy_box a {
  color: var(--clr-main);
  text-decoration: underline;
}

/* =======================================
404ページ
 ======================================= */
#e404 {
}
#e404 .title {
  font-size: var(--h4-fz);
}

.e404_wrap {
}
.e404_wrap .txt {
  line-height: 2;
  text-align: center;
}
.e404_wrap .btn {
  margin-top: 40px;
}

/* =======================================
お問い合わせ完了ページ
 ======================================= */
.contact-complete {
}
.contact-complete .inner {
  padding-top: 91px;
}
.contact-complete_wrap {
}
.contact-complete_wrap .title {
  font-size: 32px;
  margin-bottom: var(--sp-5);
}
.contact-complete_wrap .txt {
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
}
