@charset "UTF-8";
/*
see: http://html5doctor.com/html-5-reset-stylesheet/
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}

body {
  color: #6c5a58;
  /* RGB */
  font-family: "Noto Serif JP", "serif", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ";
  font-weight: 500;
  font-size: 1.6em;
  line-height: 250%;
  text-align: center;
}

section h2 {
  font-size: 2.4rem;
}

a:hover {
  opacity: 0.5;
}

/* classでnoneと指定するだけで消せる設定 */
.none {
  display: none;
  /* classでnoneと指定するだけで消せる設定-end */
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

.header {
  width: 100%;
  height: 50px;
  background-color: #fff;
}

.header h1 {
  color: #333;
  font-size: 1.6rem;
  text-align: left;
}

.header h1 a {
  text-decoration: none;
  color: #333;
}

a {
  display: block;
}

img {
  display: block;
}

p {
  line-height: 180%;
}

:root {
  --wrap-width: 100vw;
}

.pc {
  display: none;
}
@media (min-width: 751px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media (min-width: 751px) {
  .sp {
    display: none;
  }
}

/* アニメーション関連 */
.box {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#scroll-top {
  bottom: 20px;
  position: fixed;
  right: 20px;
  opacity: 1;
  width: 5%;
  max-width: 40px;
  min-width: 30px;
}

#scroll-top a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  opacity: 1;
}
#scroll-top a img {
  border-radius: 5px;
  width: 100%;
}

/* －－－－－－－－－－－header－－－－－－－－－－－ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: initial;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1002;
  background: #fff;
  padding: 1% 24px;
}
@media (min-width: 751px) {
  .header__inner {
    padding: 1% min(13.3155792277vw, 140px);
  }
}
.header__logo a img {
  width: 100%;
  max-width: 180px;
}
@media (min-width: 751px) {
  .header__logo a img {
    max-width: 200px;
  }
}
.header__toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}
.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #cd4783;
  margin: 5px 0;
  transition: 0.3s;
}
.header__toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
.header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header__toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}
@media (min-width: 751px) {
  .header__toggle {
    display: none;
  }
}
@media (max-width: 751px) {
  .header__nav {
    position: fixed;
    top: 64px;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 5%;
  }
  .header__nav.is-open {
    transform: translateX(0);
  }
}
@media (min-width: 751px) {
  .header__nav {
    display: block;
    position: static;
    width: auto;
    height: auto;
    transform: none;
    transition: none;
  }
}
.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.header__menu > li {
  text-align: left;
}
@media (min-width: 751px) {
  .header__menu {
    flex-direction: row;
    align-items: center;
  }
}
.header__item {
  position: relative;
}
.header__item a {
  display: block;
  text-decoration: none;
  color: #333;
}
@media (min-width: 751px) {
  .header__item:hover .header__submenu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
  .header__item:hover .header__arrow {
    transform: rotate(180deg);
  }
}
.header__arrow {
  font-size: 1.6rem;
  margin-left: 0.3em;
  color: #cd4783;
  display: inline-block;
  transition: transform 0.3s ease;
}
.header__arrow.is-rotate {
  transform: rotate(180deg);
}
.header__submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  display: none;
  position: static;
  padding: 16px 3%;
}
.header__submenu > li {
  margin-bottom: 20px;
}
.header__submenu > li:last-child {
  margin-bottom: 0;
}
.header__submenu > li a {
  display: block;
  color: #333;
}
@media (min-width: 751px) {
  .header__submenu {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 20px;
  }
  .header__submenu > li a {
    display: block;
    white-space: nowrap;
  }
}
@media (max-width: 751px) {
  .header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .header__overlay.is-show {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (min-width: 751px) {
  .header__overlay {
    display: none !important;
  }
}

/* －－－－－－－－－－－header-end－－－－－－－－－－－ */
/* －－－－－－－－－－－ボタン－－－－－－－－－－－ */
@keyframes pulse {
  0% {
    transform: scale(0.85);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.85);
  }
}
/* －－－－－－－－－－－ファーストビュー－－－－－－－－－－－ */
.section-top {
  display: block;
  background-image: url("../images/top_fv-bg.png");
  background-position: 65% 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  max-height: 600px;
  position: relative;
}
@media (min-width: 1000px) {
  .section-top {
    background-size: cover;
    height: 48.6111111111vw;
    max-height: none;
  }
}
.section-top__container {
  padding: 50px 24px;
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 1000px) {
  .section-top__container {
    padding: 50px min(9.7222222222vw, 140px);
  }
}
.section-top__container__area {
  position: absolute;
  top: 30%;
}
@media (min-width: 1000px) {
  .section-top__container__area {
    top: 50%;
    transform: translateY(-50%);
    left: 8%;
  }
}
.section-top__container__area h2 {
  font-size: min(6.1111111111vw, 40px);
  font-weight: 800;
  text-align: justify;
  letter-spacing: 3px;
  line-height: 180%;
  margin-bottom: 20px;
  color: #000;
  text-shadow: 2px 2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, -2px -2px 1px #fff, 2px 0px 1px #fff, 0px 2px 1px #fff, -2px 0px 1px #fff, 0px -2px 1px #fff;
}
@media (min-width: 1000px) {
  .section-top__container__area h2 {
    font-size: 4rem;
    transform: initial;
    left: 8%;
  }
}
.section-top__container__area p {
  text-align: justify;
  letter-spacing: 3px;
  margin-bottom: 30px;
  color: #000;
  text-shadow: 2px 2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, -2px -2px 1px #fff, 2px 0px 1px #fff, 0px 2px 1px #fff, -2px 0px 1px #fff, 0px -2px 1px #fff;
}
@media (min-width: 1000px) {
  .section-top__container__area p {
    letter-spacing: 5px;
  }
}
.section-top__container__area__btn__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1000px) {
  .section-top__container__area__btn__list {
    gap: 40px;
    flex-direction: row;
    justify-content: space-around;
  }
}
.section-top__container__area__btn__list__items {
  flex: 5;
}
.section-top__container__area__btn__list__items a {
  position: relative;
  display: block;
  padding: 20px 8px;
  font-size: 2rem;
  text-decoration: none;
  color: #fff;
  border: 1px solid #800020;
  background-color: #800020;
  border-radius: 100px;
  line-height: 100%;
  overflow: hidden;
  z-index: 0;
  transition: color 0.3s ease, border-color 0.3s ease;
}
@media (min-width: 1000px) {
  .section-top__container__area__btn__list__items a {
    padding: 20px 16px;
  }
}
.section-top__container__area__btn__list__items a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #fff;
  z-index: -1;
  transition: width 0.4s ease;
}
.section-top__container__area__btn__list__items a:hover {
  color: #800020;
  border-color: #800020;
  opacity: 1;
}
.section-top__container__area__btn__list__items a:hover::before {
  width: 100%;
}
.section-top__container__area__btn__list__items:first-child a {
  background-color: #191970;
  border-color: #191970;
}
.section-top__container__area__btn__list__items:first-child a::before {
  background-color: #fff;
}
.section-top__container__area__btn__list__items:first-child a:hover {
  color: #191970;
  border-color: #191970;
}
.section-top__container__area__btn__list__items:first-child a:hover::before {
  width: 100%;
}

/* －－－－－－－－－－－ファーストビュー-end－－－－－－－－－－－ */
/* －－－－－－－－－－－information－－－－－－－－－－－ */
.section-information__container {
  padding: 80px 24px;
}
@media (min-width: 751px) {
  .section-information__container {
    padding: 100px min(9.7222222222vw, 140px);
    max-width: 1440px;
    margin: 0 auto;
  }
}
.section-information__container__title {
  margin-bottom: 30px;
}
.section-information__container__title h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 150%;
  color: #800020;
  gap: 20px;
  margin-bottom: 10px;
}
.section-information__container__title h2::after, .section-information__container__title h2::before {
  content: "";
  display: inline-block;
  width: 20%;
  height: 1px;
  background-color: #800020;
}
@media (min-width: 751px) {
  .section-information__container__title h2 {
    font-size: 3.2rem;
  }
}
.section-information__container__title p {
  font-size: 1.6rem;
  font-weight: 800;
  color: #787877;
  line-height: 100%;
}
.section-information__container__wrapper #note-feed {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-information__container__wrapper #note-feed li {
  margin-bottom: 15px;
  border-bottom: 1px solid #800020;
  padding: 10px 10px 30px;
}
.section-information__container__wrapper #note-feed li:last-child {
  margin-bottom: 0;
}
.section-information__container__wrapper #note-feed li a {
  flex-direction: column;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  align-items: flex-start !important;
}
.section-information__container__wrapper #note-feed li a:hover {
  text-decoration: underline;
}
@media (min-width: 751px) {
  .section-information__container__wrapper #note-feed li a {
    flex-direction: row;
  }
}
.section-information__container__wrapper #note-feed li a img {
  width: 100% !important;
  height: auto !important;
}
@media (min-width: 751px) {
  .section-information__container__wrapper #note-feed li a img {
    max-width: 200px;
  }
}
.section-information__container__wrapper #note-feed li a > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}
.section-information__container__wrapper #note-feed li a > div > br {
  display: none;
}
.section-information__container__wrapper #note-feed li a > div > span {
  text-align: left;
  display: inline-block;
}
.section-information__container__wrapper #note-feed li a > div > span:last-child {
  line-height: 180%;
}

/* －－－－－－－－－－－information-end－－－－－－－－－－－ */
/* －－－－－－－－－－－企業理念－－－－－－－－－－－ */
.section-philosophy__container {
  padding: 80px 24px;
}
@media (min-width: 751px) {
  .section-philosophy__container {
    padding: 100px min(9.7222222222vw, 140px);
    max-width: 1440px;
    margin: 0 auto;
  }
}
.section-philosophy__container__title {
  margin-bottom: 50px;
}
.section-philosophy__container__title h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 150%;
  color: #800020;
  gap: 20px;
  margin-bottom: 10px;
}
.section-philosophy__container__title h2::after, .section-philosophy__container__title h2::before {
  content: "";
  display: inline-block;
  width: 20%;
  height: 1px;
  background-color: #800020;
}
@media (min-width: 751px) {
  .section-philosophy__container__title h2 {
    font-size: 3.2rem;
  }
}
.section-philosophy__container__title p {
  font-size: 1.6rem;
  font-weight: 800;
  color: #787877;
  line-height: 100%;
}
@media (min-width: 751px) {
  .section-philosophy__container__title {
    margin-bottom: 80px;
  }
}
.section-philosophy__container__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 30px;
}
@media (min-width: 751px) {
  .section-philosophy__container__list {
    justify-content: space-between;
  }
}
.section-philosophy__container__list__items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1/1;
  padding: 20px;
  border: 1px solid #C1A352;
  border-radius: 50%;
}
.section-philosophy__container__list__items h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #800020;
  margin-bottom: 10px;
}
.section-philosophy__container__list__items h4 {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 180%;
  color: #C1A352;
  margin-bottom: 10px;
}
.section-philosophy__container__list__items p {
  text-align: center;
  overflow: auto;
  max-height: 100%;
}

/* －－－－－－－－－－－企業理念-end－－－－－－－－－－－ */
/* －－－－－－－－－－－代表挨拶－－－－－－－－－－－ */
.section-greeting {
  background-color: #FFFAF0;
  border-top-left-radius: 100% 20%;
  border-top-right-radius: 100% 20%;
  border-bottom-left-radius: 100% 20%;
  border-bottom-right-radius: 100% 20%;
}
.section-greeting__container {
  padding: 80px 24px;
}
@media (min-width: 751px) {
  .section-greeting__container {
    padding: 100px min(9.7222222222vw, 140px);
    max-width: 1440px;
    margin: 0 auto;
  }
}
.section-greeting__container__title {
  margin-bottom: 50px;
}
.section-greeting__container__title h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 150%;
  color: #800020;
  gap: 20px;
  margin-bottom: 10px;
}
.section-greeting__container__title h2::after, .section-greeting__container__title h2::before {
  content: "";
  display: inline-block;
  width: 20%;
  height: 1px;
  background-color: #800020;
}
@media (min-width: 751px) {
  .section-greeting__container__title h2 {
    font-size: 3.2rem;
  }
}
.section-greeting__container__title p {
  font-size: 1.6rem;
  font-weight: 800;
  color: #787877;
  line-height: 100%;
}
@media (min-width: 751px) {
  .section-greeting__container__title {
    margin-bottom: 80px;
  }
}
.section-greeting__container__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (min-width: 751px) {
  .section-greeting__container__wrapper {
    flex-direction: row;
  }
}
.section-greeting__container__wrapper img {
  width: 50%;
  max-width: 490px;
}
.section-greeting__container__wrapper__lead {
  flex: 5;
  max-width: 500px;
  padding: 20px;
  background-color: #800020;
}
.section-greeting__container__wrapper__lead h2 {
  font-size: 2.4rem;
  color: #Fff;
  margin-bottom: 30px;
}
.section-greeting__container__wrapper__lead p {
  text-align: justify;
  color: #fff;
}

/* －－－－－－－－－－－代表挨拶-end－－－－－－－－－－－ */
/* －－－－－－－－－－－事業について－－－－－－－－－－－ */
.section-business {
  background-image: url("../images/business-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  margin-top: 60px;
}
@media (min-width: 751px) {
  .section-business {
    margin-top: 80px;
  }
}
.section-business__container {
  padding: 80px 24px;
}
@media (min-width: 751px) {
  .section-business__container {
    padding: 100px min(9.7222222222vw, 140px);
    max-width: 1440px;
    margin: 0 auto;
  }
}
.section-business__container__title {
  margin-bottom: 50px;
}
.section-business__container__title h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 150%;
  color: #800020;
  gap: 20px;
  margin-bottom: 10px;
}
.section-business__container__title h2::after, .section-business__container__title h2::before {
  content: "";
  display: inline-block;
  width: 20%;
  height: 1px;
  background-color: #800020;
}
@media (min-width: 751px) {
  .section-business__container__title h2 {
    font-size: 3.2rem;
  }
}
.section-business__container__title p {
  font-size: 1.6rem;
  font-weight: 800;
  color: #787877;
  line-height: 100%;
}
.section-business__container__btn__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (min-width: 751px) {
  .section-business__container__btn__list {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 80px;
  }
}
.section-business__container__btn__list__items {
  width: 100%;
}
@media (min-width: 751px) {
  .section-business__container__btn__list__items {
    width: initial;
  }
}
.section-business__container__btn__list__items a {
  display: block;
  padding: 20px 8px;
  font-size: 2rem;
  text-decoration: none;
  color: #fff;
  border: 1px solid #800020;
  background-color: #800020;
  border-radius: 100px;
  line-height: 100%;
  width: 100%;
}
@media (min-width: 751px) {
  .section-business__container__btn__list__items a {
    padding: 20px min(4.1666666667vw, 60px);
    max-width: 365px;
  }
}
.section-business__container__btn__list__items a:hover {
  background-color: #fff;
  color: #800020;
  border: 1px solid #800020;
  opacity: 1;
}
.section-business__container__btn__list__items:first-child a {
  background-color: #191970;
  border: 1px solid #191970;
}
.section-business__container__btn__list__items:first-child a:hover {
  background-color: #fff;
  color: #191970;
  border-color: #191970;
}

/* －－－－－－－－－－－事業について-end－－－－－－－－－－－ */
/* －－－－－－－－－－－会社概要－－－－－－－－－－－ */
.section-aboutus__container {
  padding: 80px 24px;
}
@media (min-width: 751px) {
  .section-aboutus__container {
    padding: 100px min(9.7222222222vw, 140px);
    max-width: 1440px;
    margin: 0 auto;
  }
}
.section-aboutus__container__title {
  margin-bottom: 50px;
}
.section-aboutus__container__title h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 150%;
  color: #800020;
  gap: 20px;
  margin-bottom: 10px;
}
.section-aboutus__container__title h2::after, .section-aboutus__container__title h2::before {
  content: "";
  display: inline-block;
  width: 20%;
  height: 1px;
  background-color: #800020;
}
@media (min-width: 751px) {
  .section-aboutus__container__title h2 {
    font-size: 3.2rem;
  }
}
.section-aboutus__container__title p {
  font-size: 1.6rem;
  font-weight: 800;
  color: #787877;
  line-height: 100%;
}
@media (min-width: 751px) {
  .section-aboutus__container__title {
    margin-bottom: 80px;
  }
}
.section-aboutus__container__area__contents {
  display: flex;
  gap: 10px;
  flex-direction: column;
  margin-bottom: 50px;
  padding-bottom: 20px;
  position: relative;
}
.section-aboutus__container__area__contents::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #C1A352;
}
@media (min-width: 751px) {
  .section-aboutus__container__area__contents {
    flex-direction: row;
    justify-content: flex-start;
    gap: 80px;
  }
}
.section-aboutus__container__area__contents dt {
  text-align: justify;
  width: 180px;
  line-height: 180%;
  font-weight: 800;
}
@media (min-width: 751px) {
  .section-aboutus__container__area__contents dt {
    margin-left: 30px;
  }
}
.section-aboutus__container__area__contents dd {
  text-align: justify;
  width: 100%;
  line-height: 180%;
}
@media (min-width: 751px) {
  .section-aboutus__container__area__contents dd {
    width: 75%;
  }
}

/* －－－－－－－－－－－会社概要-end－－－－－－－－－－－ */
/* －－－－－－－－－－－お問い合わせ－－－－－－－－－－－ */
.section-inquiry {
  background-image: url("../images/inquiry-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
}
.section-inquiry__container {
  padding: 80px 24px;
}
@media (min-width: 751px) {
  .section-inquiry__container {
    padding: 100px min(9.7222222222vw, 140px);
    max-width: 1440px;
    margin: 0 auto;
  }
}
.section-inquiry__container__title {
  margin-bottom: 50px;
}
.section-inquiry__container__title h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 150%;
  color: #800020;
  gap: 20px;
  margin-bottom: 10px;
}
.section-inquiry__container__title h2::after, .section-inquiry__container__title h2::before {
  content: "";
  display: inline-block;
  width: 20%;
  height: 1px;
  background-color: #800020;
}
@media (min-width: 751px) {
  .section-inquiry__container__title h2 {
    font-size: 3.2rem;
  }
}
.section-inquiry__container__title p {
  font-size: 1.6rem;
  font-weight: 800;
  color: #787877;
  line-height: 100%;
}
@media (min-width: 751px) {
  .section-inquiry__container__title {
    margin-bottom: 80px;
  }
}
.section-inquiry__container__btn__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (min-width: 751px) {
  .section-inquiry__container__btn__list {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 80px;
  }
}
.section-inquiry__container__btn__list__items {
  width: 100%;
}
@media (min-width: 751px) {
  .section-inquiry__container__btn__list__items {
    width: initial;
  }
}
.section-inquiry__container__btn__list__items a {
  position: relative;
  display: block;
  padding: 20px 8px;
  font-size: 2rem;
  text-decoration: none;
  color: #fff;
  border: 1px solid #C1A352;
  background-color: #C1A352;
  border-radius: 100px;
  line-height: 100%;
  overflow: hidden;
  z-index: 0;
  transition: color 0.3s ease, border-color 0.3s ease;
}
@media (min-width: 1000px) {
  .section-inquiry__container__btn__list__items a {
    padding: 20px 80px;
  }
}
.section-inquiry__container__btn__list__items a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #fff;
  z-index: -1;
  transition: width 0.4s ease;
}
.section-inquiry__container__btn__list__items a:hover {
  color: #C1A352;
  border-color: #C1A352;
  opacity: 1;
}
.section-inquiry__container__btn__list__items a:hover::before {
  width: 100%;
}

/* －－－－－－－－－－－お問い合わせ-end－－－－－－－－－－－ */
/* －－－－－－－－－－－footer－－－－－－－－－－－ */
.footer {
  background-color: #800020;
}
.footer__container {
  padding: 30px min(9.7222222222vw, 140px);
}
.footer__container__menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
@media (min-width: 751px) {
  .footer__container__menu {
    flex-direction: row;
    gap: 60px;
    margin-bottom: 50px;
  }
}
.footer__container__menu img {
  width: 100%;
  max-width: 130px;
}
.footer__container__menu nav ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 751px) {
  .footer__container__menu nav ul {
    flex-direction: row;
  }
}
.footer__container__menu nav ul li a {
  color: #fff;
  text-decoration: none;
  line-height: 100%;
}
.footer__container__link {
  margin-bottom: 30px;
}
.footer__container__link a {
  line-height: 100%;
  color: #fff;
  text-decoration: none;
}
.footer__container small {
  font-size: 1.4rem;
  color: #fff;
}

/* －－－－－－－－－－－footer-end－－－－－－－－－－－ */