@charset "UTF-8";
/*===============================================
 *	ブラウザリセット
===============================================*/
@font-face {
  font-family: "BodoniModa";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/BodoniModa_9pt-Regular.woff2") format("woff2"), url("../fonts/BodoniModa_9pt-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "BodoniModa";
  font-style: medium;
  font-weight: 500;
  src: url("../fonts/BodoniModa_18pt-Regular.woff2") format("woff2"), url("../fonts/BodoniModa_18pt-Regular.woff") format("woff");
  font-display: swap;
}
a:hover img {
  filter: alpha(opacity=85);
  -moz-opacity: 0.85;
  opacity: 0.85;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  font-size: 100%;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  letter-spacing: 0;
  height: 100%;
}

table {
  font-size: inherit;
}

select, input, textarea {
  font: 99% arial, helvetica, clean, sans-serif;
}

br {
  letter-spacing: normal;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: normal;
}

address, em {
  font-style: normal;
}

strong, th {
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  border: none;
}

th, td {
  text-align: left;
  border: none;
  font-weight: normal;
}

hr {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

img, fieldset {
  border: 0;
  vertical-align: bottom;
}

li {
  list-style-type: none;
}

ul, ol, dl {
  margin: 0;
  list-style-position: outside;
  list-style-type: none;
}

li, dt, dd {
  font-size: 100%;
}

dt {
  font-weight: normal;
}

a {
  text-decoration: underline;
  outline: none;
}

a:hover {
  text-decoration: none;
}

form, input {
  padding: 0;
  margin: 0;
}

iframe {
  border: none;
}

picture {
  display: block;
}

figure {
  margin: 0;
}

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

summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

/* --------------このサイトオリジナル設定--------------- */
* {
  box-sizing: border-box;
}

a {
  color: var(--primary-color);
  outline: none;
  text-decoration: none;
}

:root {
  --primary-color: #726a2b;
  --accent-color: #eeebd7;
  --bg-color: #fff;
}

section {
  position: relative;
}

i {
  font-family: "icon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 区切り線 */
.top_main section:not(.main-visual):not(:last-of-type)::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100vw;
  height: 1px;
  background: #bababa;
  bottom: 0;
  transform: translateX(-50%);
  left: 50%;
}

/* リンクボタン */
.basic_button {
  display: inline-block;
  background: var(--primary-color);
  border: var(--primary-color) 1px solid;
  color: #fff;
  padding: 1.5rem 3rem;
  text-align: center;
  font-size: 1.6rem;
  transition: all 0.3s;
  max-width: 300px;
  width: 100%;
}

.basic_button:hover {
  background: #fff;
  border: var(--primary-color) 1px solid;
  color: var(--primary-color);
}

.basic_button.cv_btn {
  position: relative;
}
.basic_button.cv_btn::after {
  content: "";
  background: url(../img/common/arrow_right_white.svg) no-repeat;
  background-size: contain;
  width: 25px;
  height: 8px;
  position: absolute;
  right: 5%;
  top: 47%;
  transform: translateY(-50%);
}
.basic_button.cv_btn:hover::after {
  background: url(../img/common/arrow_right_gold03.svg) no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 960px) {
  .basic_button {
    max-width: initial;
  }
}
/* 導入見出し */
.top_basic__desc {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

/* 導入文 */
.top_basic_detail {
  font-size: 1.6rem;
  margin-bottom: 3rem;
}

.top_basic_detail p:nth-of-type(2) {
  margin-top: 1.5em;
}

/*====================== clearFix ======================*/
.clearfix:before, .clearfix:after {
  content: "";
  display: block;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/*=============================================== *
	パターン
===============================================*/
.base-fl {
  display: flex;
  -webkit-box-orient: vertical;
}

.row {
  display: flex;
  flex-direction: row;
}

.row-rev {
  display: flex;
  flex-direction: row-reverse;
}

.column {
  display: flex;
  flex-direction: column;
}

.wrap {
  display: flex;
  -webkit-box-orient: horizontal;
  flex-wrap: wrap;
}

.space-btw {
  justify-content: space-between;
}

.space-around {
  justify-content: space-around;
}

.js-center {
  justify-content: center;
}

.al-center {
  align-items: center;
}

.al-start {
  align-items: flex-start;
}

.al-end {
  align-items: flex-end;
}

.al-base {
  align-items: baseline;
}

.std-radius {
  border-radius: 6px;
  overflow: hidden;
}

.std-radius_top {
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}

.std-radius_bottom {
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}

.mag {
  margin: 2rem 0 0;
}

/*===============================================

 *	common

===============================================*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html body {
  background: #fff;
  color: var(--primary-color);
  font-size: 1.7rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.05em;
}

p {
  line-height: 1.75;
}

.en_txt {
  font-family: "BodoniModa", sans-serif;
  letter-spacing: 0.15em;
}

em {
  font-weight: bold;
}

.sp {
  display: none;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.inner_contents {
  max-width: 1120px;
  margin: 0 auto 60px;
  width: 100%;
}

.txt-small {
  font-size: 13px;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.lg_inner_space {
  padding: 5% 0;
}

@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media only screen and (max-width: 1024px) {
  .inner {
    margin: 0 auto;
    max-width: initial;
    width: 92%;
  }
  .inner_contents {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 960px) {
  html body {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 568px) {
  html {
    scroll-padding-top: 65px;
  }
  html body {
    font-size: 15px;
  }
  .inner {
    margin: 0 auto;
    width: 100%;
    padding: 0 5.3vw;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .lg_inner_space {
    padding: 12% 0 15%;
  }
}
/*===============================================
 *	br
===============================================*/
@media screen and (min-width: 1021px) {
  .br-pc {
    display: block;
  }
  .br-tb {
    display: none;
  }
  .br-sp {
    display: none;
  }
}
@media screen and (min-width: 481px) and (max-width: 1020px) {
  .br-pc {
    display: none;
  }
  .br-tb {
    display: block;
  }
  .br-sp {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .br-pc {
    display: none;
  }
  .br-tb {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
/*===============================================
 *	header
===============================================*/
/* PCスタイル */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 72%;
  z-index: 100;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.header_left {
  order: 3;
  width: 30px;
}

.header_logo {
  order: 1;
}

.header_nav {
  display: block;
  order: 2;
}

.header_menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.header_menu-item a {
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
}

.header_menu-item a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s;
}

.header_menu-item a:hover::after {
  width: 100%;
}

/* ハンバーガーはPCでは非表示 */
.header_hamburger {
  display: none;
}

.header.is-fixed {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .header {
    width: 90%;
  }
}
/* SPスタイル */
@media (max-width: 960px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
  }
  .header_left {
    display: block;
    width: 8%;
    order: 1;
  }
  .header_logo {
    width: 40%;
    order: 2;
  }
  .header_nav {
    display: none;
  }
  .header_inner {
    padding: 1rem 2rem;
  }
  .header_nav.active {
    display: block;
    position: fixed;
    top: 48px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    background: #fff;
    overflow-y: auto;
    z-index: 50;
  }
  .header_menu {
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
  }
  .header_menu-item {
    text-align: center;
    width: 100%;
  }
  .header_menu-item a {
    font-size: 18px;
    display: block;
    padding: 10px 0;
  }
  .header_hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    order: 3;
  }
  .header_hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transition: 0.4s;
  }
  .header_hamburger.active .header_hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
  }
  .header_hamburger.active .header_hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .header_hamburger.active .header_hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
  }
}
/* スクロール無効化 */
.no-scroll {
  overflow: hidden;
}

/*===============================================
 *	パンくず
===============================================*/
@font-face {
  font-family: "icon";
  src: url("../fonts/icon.eot?n1r1w2");
  src: url("../fonts/icon.eot?n1r1w2#iefix") format("embedded-opentype"), url("../fonts/icon.ttf?n1r1w2") format("truetype"), url("../fonts/icon.woff?n1r1w2") format("woff"), url("../fonts/icon.svg?n1r1w2#icon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.breadcrumb {
  padding: 0 5%;
  margin: 1rem 0 4rem;
}

.breadcrumb i {
  font-size: 1rem;
  padding: 0 10px;
}

.iconarrow_right:before {
  content: "\e900";
  color: var(--primary-color);
}

.breadcrumb span {
  font-size: 1.4rem;
  color: var(--primary-color);
}

.breadcrumb a {
  color: var(--primary-color);
}
.breadcrumb a:hover {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .breadcrumb {
    margin-bottom: 2rem;
    padding: 0 4%;
  }
}
@media only screen and (max-width: 568px) {
  .breadcrumb {
    display: none;
  }
}
/*===============================================
 *	汎用レイアウト・パーツ
===============================================*/
.section_ttl {
  font-size: 4.2rem;
}

.section_ttl_sub {
  font-size: 1.7rem;
  color: #726a2b;
  margin-bottom: 3.5rem;
}

.section_lead_txt {
  font-size: 2.6rem;
  margin-bottom: 3.5rem;
}

.large__block {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 0 5%;
}
.large__block__text {
  flex: 1;
}
.large__block .ttl {
  font-size: 4.2rem;
  margin-bottom: 0.5rem;
}
.large__block .sub {
  font-size: 1.7rem;
  color: #726a2b;
  margin-bottom: 4.5rem;
}
.large__block .lead {
  font-size: 2.6rem;
  margin-bottom: 2.5rem;
}
.large__block__image {
  flex: 1;
}

@media (max-width: 1024px) {
  .large__block__image {
    max-width: 50%;
  }
}
@media (max-width: 960px) {
  .section_lead_txt {
    font-size: 2.6rem;
    margin-bottom: 3.5rem;
  }
  .large__block {
    flex-direction: column;
    gap: 30px;
    padding: 0 4%;
  }
  .large__block__text {
    width: 100%;
  }
  .large__block .ttl {
    font-size: 3.2rem;
  }
  .large__block .sub {
    margin-bottom: 4.5rem;
  }
  .large__block .lead {
    font-size: 2.4rem;
  }
  .large__block__image {
    max-width: 80%;
  }
  .section_ttl {
    font-size: 3.2rem;
    line-height: 1.25;
    margin-bottom: 0.25em;
  }
}
@media (max-width: 568px) {
  .section_ttl {
    font-size: 2.8rem;
  }
  .section_lead_txt {
    font-size: 2rem;
    margin-bottom: 1.8rem;
  }
  .section_ttl_sub {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  .large__block {
    padding: 0 5.3vw;
  }
  .large__block__image {
    order: -1;
    margin-left: auto;
    margin-right: -5.3vw;
    max-width: 100%;
  }
  .large__block__image img {
    width: 100%;
    height: auto;
    display: block;
  }
  .large__block__text {
    padding-left: 6%;
  }
  .large__block .ttl {
    font-size: 2.8rem;
  }
  .large__block .sub {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
  }
  .large__block .lead {
    font-size: 2rem;
    margin-bottom: 1.8rem;
  }
}
.number__block {
  position: relative;
  border-top: 1px solid #ddd;
  padding: 5rem 0;
}
.number__block .number {
  font-size: 4.8rem;
  position: absolute;
  left: 0;
  top: -38px;
  display: inline-block;
  padding-right: 5px;
  background: #fff;
}
.number__block__text {
  width: 47.6%;
}
.number__block__text .ttl {
  font-size: 2.6rem;
  margin-bottom: 2.5rem;
}
.number__block__image {
  width: 47.6%;
}

@media (max-width: 960px) {
  .number__block .number {
    font-size: 3.8rem;
    top: -28px;
  }
  .number__block__text .ttl {
    font-size: 2.2rem;
  }
}
@media (max-width: 568px) {
  .number__block {
    flex-direction: column-reverse;
  }
  .number__block .number {
    font-size: 3rem;
    top: -22px;
  }
  .number__block__image {
    width: 80%;
  }
  .number__block__text {
    width: 80%;
    margin-top: 2.5rem;
  }
  .number__block__text .ttl {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.point_boxes {
  gap: 3.5rem;
}

.box_gray {
  background: #eee;
  padding: 3% 5%;
}
.box_gray .ttl {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 960px) {
  .point_boxes {
    gap: 2.5rem;
  }
  .box_gray {
    padding: 4% 5%;
  }
  .box_gray .ttl {
    font-size: 2rem;
  }
}
@media (max-width: 568px) {
  .box_gray {
    padding: 7% 7% 6%;
  }
  .box_gray .ttl {
    font-size: 1.9rem;
  }
}
/*===============================================
 *	Main visual
===============================================*/
.main-visual {
  width: 100%;
}

@media (max-width: 960px) {
  .main-visual {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  .main-visual picture,
  .main-visual img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    display: block;
  }
}
/*===============================================
 *	About Section
===============================================*/
.about .basic_button {
  margin-top: 3.5rem;
}

/*===============================================
 *	Staff
===============================================*/
.staff__list {
  display: flex;
  gap: 10rem;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.staff__item {
  width: 100%;
  max-width: 450px;
}

@media (max-width: 568px) {
  .staff__list {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-bottom: 0;
  }
}
/*===============================================
 *	Product
===============================================*/
.product .basic_button {
  margin-top: 3.5rem;
}

/*===============================================
 *	Pick Up Section
===============================================*/
/* Pick Up Section */
.product__pickup {
  margin-top: 8rem;
}

.product__pickup-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 4rem;
}

.product__pickup-list {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.product__pickup-item {
  flex: 0 1 30%;
  text-align: center;
}

.product__pickup-image img {
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}

.product__pickup-name {
  font-size: 1.9rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.product__pickup-price {
  font-size: 1.6rem;
  color: var(--primary-color);
}

@media (max-width: 960px) {
  .product__pickup-list {
    gap: 2rem;
  }
  .product__pickup-item {
    flex: 0 1 48%;
  }
}
@media (max-width: 560px) {
  .product__pickup-item {
    flex: 0 1 100%;
  }
}
@media (max-width: 960px) {
  .product__content {
    flex-direction: column;
  }
}
@media (max-width: 568px) {
  .product__pickup-list {
    flex-direction: column;
    align-items: center;
  }
}
/*===============================================
 *	Flow
===============================================*/
/* Flow */
.flow__list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.flow__item {
  width: 22%;
}

.flow__step-title {
  font-weight: bold;
  margin-top: 1.5rem;
}

.flow__step-desc {
  font-size: 1.4rem;
  margin-top: 1rem;
}

.flow__banner {
  margin-top: 6rem;
}

.flow .top_basic__desc,
.flow .top_basic_detail {
  text-align: center;
}

@media (max-width: 960px) {
  .flow__item {
    width: 45%;
  }
}
@media (max-width: 568px) {
  .flow__list {
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
  }
  .flow__item {
    width: 100%;
  }
}
/*===============================================
 *	FAQ
===============================================*/
/* FAQ */
.faq {
  padding: 10rem 2rem;
}

.faq__content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  justify-content: space-between;
}

.faq__left {
  flex: 1;
}

.faq__right {
  flex: 1;
}

.faq__title {
  font-size: 3.2rem;
  margin-bottom: 2rem;
}

.faq__desc {
  margin-bottom: 2rem;
}

.faq__text {
  margin-bottom: 3rem;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq__list .faq__item:last-of-type {
  border-bottom: none;
}

.faq__item {
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

.faq__question {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.faq__answer {
  font-size: 1.4rem;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .faq {
    padding: 4rem 2rem;
  }
  .faq__content {
    flex-direction: column;
  }
}
/*===============================================
 *	Shop
===============================================*/
/* Shop */
.shop {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  min-height: 450px;
}

.shop__title {
  font-size: 3.2rem;
  margin-bottom: 2rem;
}

.shop__inner {
  flex: 1 1 50%;
  padding: 5%;
}

.shop__map {
  flex: 1 1 50%;
  padding: 0;
}

.shop__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.shop__address {
  margin-top: 1em;
  font-size: 16px;
}

@media (max-width: 768px) {
  .shop {
    flex-direction: column;
  }
  .shop__inner,
  .shop__map {
    flex: 1 1 100%;
  }
}
@media (max-width: 960px) {
  .shop__inner {
    flex-direction: column;
  }
  .shop__map iframe {
    height: 300px;
  }
}
@media (max-width: 568px) {
  .shop__inner {
    padding: 10% calc(5.3vw + 2rem);
  }
}
/*===============================================
 *	Footer
===============================================*/
/* Footer */
.footer {
  background: var(--primary-color);
  color: #fff;
  padding: 4rem 0;
}

.footer__inner {
  text-align: center;
}

.footer__logo img {
  width: 180px;
  height: auto;
  margin: 0 auto 2rem;
}

.footer__menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;
}

.footer__menu-item a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.3s;
}

.footer__menu-item a:hover {
  color: var(--accent-color);
}

.footer__copyright {
  font-size: 1.2rem;
  display: block;
}

@media (max-width: 560px) {
  .footer__menu {
    flex-direction: column;
    gap: 1rem;
  }
}
/*===============================================
 *	Initial loading
===============================================*/
/* スプラッシュ（背景黒＋中央ロゴ） */
#splash {
  background: radial-gradient(ellipse at center, #9c9151 0%, #71692a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease; /* ゆっくり消える */
}

/* ロゴのアニメーション */
.logo {
  width: 200px;
  opacity: 0;
  animation: fadeInLogo 2.5s ease-in-out forwards;
}

@keyframes fadeInLogo {
  to {
    opacity: 1;
  }
}
/* 初期は非表示 */
.hidden {
  display: none;
  opacity: 0;
}

/* フェードイン表示 */
.fade-in {
  display: block;
  animation: fadeInMain 1.5s ease forwards;
}

@keyframes fadeInMain {
  to {
    opacity: 1;
  }
}
/*===============================================
 *	下層ヘッダー
===============================================*/
.page-title {
  padding: 6rem 0;
  margin-top: 7rem;
  border-top: 1px solid #ddd;
}
.page-title .inner {
  max-width: initial;
  padding: 0 5%;
}
.page-title .ttl {
  font-size: 4.8rem;
}
.page-title .sub {
  font-size: 1.6rem;
  color: #726a2b;
}
.page-title.border {
  border-bottom: 1px solid #ddd;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media only screen and (max-width: 960px) {
  .page-title .inner {
    padding: 0;
  }
  .page-title .ttl {
    font-size: 3.2rem;
  }
  .hero-image img {
    height: 27vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (max-width: 568px) {
  .page-title {
    padding: 3.5rem 0;
    margin-top: 4.6rem;
  }
  .page-title .inner {
    padding: 0 5.3vw;
  }
  .page-title .ttl {
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
  }
  .page-title .sub {
    font-size: 1.2rem;
  }
  .hero-image img {
    height: 33vw;
  }
}
/*===============================================
 *	CVエリア
===============================================*/
.contact {
  text-align: center;
  border-top: 1px solid #bababa;
}
.contact .lead {
  font-size: 2rem;
}
.contact .basic_button {
  margin: 5rem auto 0;
}

@media (max-width: 568px) {
  .contact .lead {
    font-size: 1.7rem;
  }
}
/*===============================================
 *	ページネーション
===============================================*/
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: min(4vw, 50px) 0 0;
  position: relative;
  font-size: 20px;
  gap: 0 5px;
}

.pagination span, .pagination a {
  color: var(--primary-color);
  display: block;
  border: 1px solid var(--primary-color);
  background-color: #fff;
  text-decoration: none;
  text-align: center;
  line-height: 46px;
  width: 50px;
}

.pagination img {
  width: 10px;
  height: 16px;
  vertical-align: middle;
}

/* ホバー時 & 現在のページ */
.pagination a:hover,
.pagination .current {
  color: #fff;
  font-weight: bold;
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

/* Page x / y */
.pagination span.page_num {
  display: none;
}

@media only screen and (max-width: 568px) {
  .pagination {
    font-size: 17px;
    margin-top: 30px;
    gap: 10px;
  }
  .pagination span, .pagination a {
    line-height: 36px;
    width: 40px;
  }
}/*# sourceMappingURL=common.css.map */