@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("../../corporation/image/corporation_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: 32%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}
@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;
  }
}

/* －－－－－－－－－－－ファーストビュー-end－－－－－－－－－－－ */
/* －－－－－－－－－－－サービス一覧－－－－－－－－－－－ */
.section-corpo-service__container {
  /* －－－－－－－－－－－パネル-タブ－－－－－－－－－－－ */
}
.section-corpo-service__container__title {
  padding: 80px 24px 0;
}
.section-corpo-service__container__title h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 100%;
  color: #191970;
  gap: 20px;
  margin-bottom: 10px;
}
.section-corpo-service__container__title h2::after, .section-corpo-service__container__title h2::before {
  content: "";
  display: inline-block;
  width: 20%;
  height: 1px;
  background-color: #191970;
}
@media (min-width: 751px) {
  .section-corpo-service__container__title h2 {
    font-size: 3.2rem;
  }
}
.section-corpo-service__container__title p {
  font-size: 1.6rem;
  font-weight: 800;
  color: #787877;
  line-height: 100%;
}
@media (min-width: 751px) {
  .section-corpo-service__container__title {
    padding: 100px min(9.7222222222vw, 140px) 0;
    max-width: 1440px;
    margin: 0 auto;
  }
}
.section-corpo-service__container__area {
  /* －－－－－－－－－－－パネル-タブ-end－－－－－－－－－－－ */
  /* －－－－－－－－－－－パネル-内容－－－－－－－－－－－ */
  /* －－－－－－－－－－－パネル-内容-end－－－－－－－－－－－ */
}
.section-corpo-service__container__area__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 25px;
  padding: 80px 24px;
}
@media (min-width: 751px) {
  .section-corpo-service__container__area__list {
    flex-direction: row;
    margin-bottom: 100px;
    padding: 100px min(9.7222222222vw, 140px);
    max-width: 1440px;
    margin: 0 auto;
  }
}
.section-corpo-service__container__area__list__items {
  width: 100%;
  text-align: center;
  border: 1px solid #333;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 751px) {
  .section-corpo-service__container__area__list__items {
    width: 33.3333333333%;
  }
}
.section-corpo-service__container__area__list__items__a {
  padding: 30px;
  text-decoration: none;
  color: #333;
  text-align: justify;
}
.section-corpo-service__container__area__list__items__a h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #C1A352;
  margin-bottom: 20px;
  line-height: 150%;
  text-align: center;
}
.section-corpo-service__container__area__list__items__a h3 {
  font-weight: 800;
  color: #333;
  margin-bottom: 20px;
  line-height: 150%;
}
.section-corpo-service__container__area__list__items__a__lead {
  margin-bottom: 20px;
}
.section-corpo-service__container__area__list__items__a__lead p {
  text-align: justify;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 150%;
}
.section-corpo-service__container__area__list__items__a__btn {
  width: 50px;
  height: 50px;
  border: 1px solid #333;
  border-radius: 100px;
  margin: 0 auto;
  position: relative;
}
.section-corpo-service__container__area__list__items__a__btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #333;
}
.section-corpo-service__container__area__list__items__a__btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 1px;
  top: 45%;
  right: 50%;
  transform: translate(92%, -50%) rotate(45deg);
  background-color: #333;
}
.section-corpo-service__container__area__panel {
  background-color: #F8F8FF;
  border-top-left-radius: 100% 2%;
  border-top-right-radius: 100% 2%;
  border-bottom-left-radius: 100% 2%;
  border-bottom-right-radius: 100% 2%;
}
@media (min-width: 751px) {
  .section-corpo-service__container__area__panel {
    border-top-left-radius: 100% 10%;
    border-top-right-radius: 100% 10%;
    border-bottom-left-radius: 100% 10%;
    border-bottom-right-radius: 100% 10%;
  }
}
.section-corpo-service__container__area__panel__wrapper {
  padding: 80px 24px;
}
@media (min-width: 751px) {
  .section-corpo-service__container__area__panel__wrapper {
    padding: 100px min(9.7222222222vw, 140px);
    max-width: 1440px;
    margin: 0 auto;
  }
}
.section-corpo-service__container__area__panel__wrapper__inner__list {
  list-style: none;
}
.section-corpo-service__container__area__panel__wrapper__inner__title {
  margin-bottom: 30px;
}
@media (min-width: 751px) {
  .section-corpo-service__container__area__panel__wrapper__inner__title {
    margin-bottom: 50px;
  }
}
.section-corpo-service__container__area__panel__wrapper__inner__title h2 {
  font-size: 2.5rem;
  color: #191970;
  font-weight: 800;
  margin-bottom: 20px;
}
@media (min-width: 751px) {
  .section-corpo-service__container__area__panel__wrapper__inner__title h2 {
    font-size: 3.2rem;
    margin-bottom: 30px;
  }
}
.section-corpo-service__container__area__panel__wrapper__inner__title p {
  font-size: 2rem;
  font-weight: 800;
}
.section-corpo-service__container__area__panel__wrapper__inner__title p:last-child .big {
  font-size: 2.5rem;
}
.section-corpo-service__container__area__panel__wrapper__inner__title p:last-child .red {
  color: #ff0000;
}
.section-corpo-service__container__area__panel__wrapper__inner__overview {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 50px;
}
@media (min-width: 751px) {
  .section-corpo-service__container__area__panel__wrapper__inner__overview {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: min(4.1666666667vw, 60px);
  }
}
.section-corpo-service__container__area__panel__wrapper__inner__overview__lead {
  text-align: justify;
}
.section-corpo-service__container__area__panel__wrapper__inner__overview__lead h3 {
  margin-bottom: 20px;
}
.section-corpo-service__container__area__panel__wrapper__inner__overview__lead > p {
  margin-bottom: 20px;
}
.section-corpo-service__container__area__panel__wrapper__inner__overview__lead > p:last-child {
  margin: 20px;
}
@media (min-width: 751px) {
  .section-corpo-service__container__area__panel__wrapper__inner__overview__lead > p:last-child {
    margin: 0;
  }
}
.section-corpo-service__container__area__panel__wrapper__inner__overview__lead__check {
  margin-bottom: 20px;
}
.section-corpo-service__container__area__panel__wrapper__inner__overview__lead__check p {
  color: #191970;
  padding-left: 1em;
  text-indent: -1em;
}
.section-corpo-service__container__area__panel__wrapper__inner__overview img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 751px) {
  .section-corpo-service__container__area__panel__wrapper__inner__overview img {
    width: 50%;
    max-width: 570px;
  }
}
.section-corpo-service__container__area__panel__wrapper__inner__flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 751px) {
  .section-corpo-service__container__area__panel__wrapper__inner__flow {
    margin-bottom: 80px;
  }
}
@media (min-width: 751px) {
  .section-corpo-service__container__area__panel__wrapper__inner__flow {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }
}
.section-corpo-service__container__area__panel__wrapper__inner__flow__items {
  background-color: #fff;
}
@media (min-width: 751px) {
  .section-corpo-service__container__area__panel__wrapper__inner__flow__items {
    width: 320px;
  }
}
.section-corpo-service__container__area__panel__wrapper__inner__flow__items img {
  width: 100%;
  margin-bottom: 10px;
}
.section-corpo-service__container__area__panel__wrapper__inner__flow__items h4 {
  color: #191970;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  padding: 0 30px;
}
.section-corpo-service__container__area__panel__wrapper__inner__flow__items p {
  text-align: justify;
  padding: 0 30px 30px;
}
.section-corpo-service__container__area__panel__wrapper__inner__flow .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 17px solid #191970;
  border-bottom: 0;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .section-corpo-service__container__area__panel__wrapper__inner__flow .triangle {
    width: 40px;
    height: 40px;
    border-style: solid;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 35px solid #191970;
    border-right: 0;
    margin: 0;
    transform: translateY(400%);
  }
}
.section-corpo-service__container__area__panel__wrapper__inner__btn {
  margin-bottom: 40px;
}
@media (min-width: 751px) {
  .section-corpo-service__container__area__panel__wrapper__inner__btn {
    margin-bottom: 80px;
  }
}
.section-corpo-service__container__area__panel__wrapper__inner__btn a {
  font-size: 2rem;
  font-weight: 800;
  background-color: #191970;
  text-decoration: none;
  color: #fff;
  width: 100%;
  padding: 10px 0;
  border: 1px solid #191970;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color 0.3s ease, border-color 0.3s ease;
}
@media (min-width: 751px) {
  .section-corpo-service__container__area__panel__wrapper__inner__btn a {
    max-width: 650px;
    margin: 0 auto;
  }
}
.section-corpo-service__container__area__panel__wrapper__inner__btn 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-corpo-service__container__area__panel__wrapper__inner__btn a:hover {
  color: #191970;
  border: 1px solid #191970;
  border-color: #191970;
  opacity: 1;
}
.section-corpo-service__container__area__panel__wrapper__inner__btn a:hover::before {
  width: 100%;
}
.section-corpo-service__container__area__panel__wrapper__inner__onayami h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}
.section-corpo-service__container__area__panel__wrapper__inner__onayami h2 span {
  color: #FF0000;
  font-size: 3.2rem;
}
.section-corpo-service__container__area__panel__wrapper__inner__onayami__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 751px) {
  .section-corpo-service__container__area__panel__wrapper__inner__onayami__list {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: min(5.5555555556vw, 80px);
  }
}
.section-corpo-service__container__area__panel__wrapper__inner__onayami__list__items {
  border: 1px solid #191970;
  background-color: #fff;
  box-shadow: 8px 8px 8px -7px #a5a5a5;
}
@media (min-width: 751px) {
  .section-corpo-service__container__area__panel__wrapper__inner__onayami__list__items {
    width: 460px;
  }
}
.section-corpo-service__container__area__panel__wrapper__inner__onayami__list__items h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #191970;
  padding: 20px 20px 10px;
  line-height: 150%;
}
.section-corpo-service__container__area__panel__wrapper__inner__onayami__list__items img {
  width: 100%;
}
.section-corpo-service__container__area__panel__wrapper__inner__onayami__list__items > p {
  text-align: justify;
  padding: 20px;
}

.panel {
  display: none;
  text-align: center;
}

.panel.active {
  display: block;
}

/* －－－－－－－－－－－サービス一覧-end－－－－－－－－－－－ */
/* －－－－－－－－－－－お客様の声－－－－－－－－－－－ */
.section-voice__container {
  padding: 80px 24px;
}
@media (min-width: 751px) {
  .section-voice__container {
    padding: 100px min(9.7222222222vw, 140px);
    max-width: 1440px;
    margin: 0 auto;
  }
}
.section-voice__container__title {
  margin-bottom: 50px;
}
.section-voice__container__title h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 100%;
  color: #191970;
  gap: 20px;
  margin-bottom: 10px;
}
.section-voice__container__title h2::after, .section-voice__container__title h2::before {
  content: "";
  display: inline-block;
  width: 20%;
  height: 1px;
  background-color: #191970;
}
@media (min-width: 751px) {
  .section-voice__container__title h2 {
    font-size: 3.2rem;
  }
}
.section-voice__container__title p {
  font-size: 1.6rem;
  font-weight: 800;
  color: #787877;
  line-height: 100%;
}
@media (min-width: 751px) {
  .section-voice__container__title {
    margin-bottom: 80px;
  }
}
.section-voice__container__wrapper__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.section-voice__container__wrapper__list__items {
  max-width: 560px;
  padding: 16px;
  border: 1px solid #191970;
  box-shadow: 8px 8px 8px -7px #a5a5a5;
}
.section-voice__container__wrapper__list__items h3 {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 150%;
  margin-bottom: 20px;
  color: #191970;
}
@media (min-width: 751px) {
  .section-voice__container__wrapper__list__items h3 {
    text-align: justify;
    margin-bottom: 30px;
  }
}
@media (min-width: 751px) {
  .section-voice__container__wrapper__list__items__area {
    display: flex;
    gap: min(2.0833333333vw, 30px);
  }
}
.section-voice__container__wrapper__list__items__area__image {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-voice__container__wrapper__list__items__area__image img {
  margin-bottom: 10px;
}
.section-voice__container__wrapper__list__items__area__image p {
  font-size: 1.2rem;
  text-align: center;
  line-height: 150%;
  margin-bottom: 20px;
  color: #333;
}
@media (min-width: 751px) {
  .section-voice__container__wrapper__list__items__area__image p {
    margin-bottom: 0;
  }
}
.section-voice__container__wrapper__list__items__area__lead p {
  font-size: 1.3rem;
  line-height: 150%;
  text-align: justify;
}

/* －－－－－－－－－－－お客様の声-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: 100%;
  color: #191970;
  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: #191970;
}
@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: #191970;
}
.footer__container {
  padding: 30px 24px;
}
@media (min-width: 751px) {
  .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－－－－－－－－－－－ */