@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap");
* {
  box-sizing: border-box;
}

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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

body {
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
a:hover {
  opacity: 0.7;
}

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

.inner {
  max-width: 1200px;
  margin: 0 auto;
  height: inherit;
}

.header {
  background-color: #3F51B5;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.16);
  height: 100px;
  padding-right: 40px;
  padding-left: 40px;
  position: fixed;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.header-inner {
  height: inherit;
  display: flex;
  align-items: center;
}

.header-logo {
  margin-right: auto;
  width: 205px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .header-logo {
    width: 180px;
    height: 30px;
  }
}
.header-logo img {
  display: block;
}

.header-site-menu {
  margin-left: auto;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 767px) {
  .header-site-menu {
    display: none;
  }
}

.site-menu ul {
  display: flex;
}
.site-menu ul li {
  margin-right: 40px;
}
.site-menu ul li:last-child {
  margin-right: 0;
}
.site-menu ul li a {
  color: #FFFFFF;
  position: relative;
}
.site-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
}
.site-menu ul li a:hover::after, .site-menu ul li a.is-active::after {
  background: #E81919;
}

.drawer-icon {
  position: fixed;
  top: 20px;
  right: 16px;
  width: 22px;
  height: 20px;
  z-index: 20;
  display: none;
  transition: transform 0.5s ease 0s;
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active {
  transform: translateX(-200px);
}
.drawer-icon.is-active .drawer-icon-bar1 {
  top: 8px;
  transform: rotate(-45deg);
}
.drawer-icon.is-active .drawer-icon-bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  top: 8px;
  transform: rotate(45deg);
}

.drawer-icon-bars {
  width: inherit;
  height: inherit;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 22px;
  height: 4px;
  background: #FFF;
  top: 0;
  left: 0;
  transition: transform 0.5s ease 0s;
}

.drawer-icon-bar1 {
  top: 0;
}

.drawer-icon-bar2 {
  top: 8px;
}

.drawer-icon-bar3 {
  top: 16px;
}

.drawer-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  z-index: 19;
  background: #FFFFFF;
  box-shadow: rgba(0, 0, 0, 0.16);
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-content-item a {
  display: block;
  color: #707070;
  padding: 18px;
  border-bottom: 1px dotted #707070;
  position: relative;
}
.drawer-content-item a::after {
  position: absolute;
  content: "";
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 8px;
  background: url(../img/arrow-b.png) no-repeat center center/contain;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 18;
  display: none;
  transition: all 1s ease 0s;
}
.drawer-background.is-active {
  display: block;
}

.main {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .main {
    padding-top: 60px;
  }
}

.first-view {
  height: 600px;
  background-image: url(../img/mainvisual.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .first-view {
    height: 400px;
  }
}

.first-view-text {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 70%;
  max-width: 100%;
}
.first-view-text h1 {
  font-size: 64px;
  font-weight: bold;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .first-view-text h1 {
    font-size: 52px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) {
  .first-view-text h1 {
    font-size: 40px;
    line-height: 1.2;
  }
}
.first-view-text p {
  font-size: 24px;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .first-view-text p {
    font-size: 18px;
    margin-top: 16px;
  }
}
.first-view-text .link-button-area {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .first-view-text .link-button-area {
    margin-top: 20px;
  }
}
.first-view-text .link-button-area .link-button {
  display: inline-block;
  background-color: #3F51B5;
  width: 384px;
  max-width: 100%;
  height: 72px;
  line-height: 72px;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .first-view-text .link-button-area .link-button {
    width: 250px;
    line-height: 48px;
    height: 48px;
    font-size: 18px;
  }
}

.swiper-button-prev {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  left: calc(50% - 600px);
  background: url(../img/arrow-prev.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .swiper-button-prev {
    left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-prev {
    left: 20px;
  }
}
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  right: calc(50% - 600px);
  background: url(../img/arrow-next.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .swiper-button-next {
    right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    right: 20px;
  }
}
.swiper-button-next::after {
  display: none;
}

.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  opacity: 1;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px;
}

.swiper-pagination-bullet-active {
  background: #2F7DC8;
}

.section {
  padding-top: 86px;
  padding-bottom: 120px;
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 40px;
    padding-bottom: 50px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.section-title {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 40px;
  }
}

.title-line {
  background-color: #3F51B5;
  width: 60px;
  height: 4px;
  margin: 10px auto 78px auto;
}
@media screen and (max-width: 767px) {
  .title-line {
    margin: 8px auto 50px auto;
  }
}

.card {
  background-color: #efefef;
}

.card-items {
  display: flex;
  flex-wrap: wrap;
}

.card-item {
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 16px;
  width: calc(33.33% - 16px);
}
@media screen and (min-width: 1200px) {
  .card-item:not(:nth-child(3n)) {
    margin-right: 24px;
  }
  .card-item:nth-child(n+4) {
    margin-top: 22px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .card-item {
    width: calc(50% - 12px);
  }
  .card-item:not(:nth-child(2n)) {
    margin-right: 24px;
  }
  .card-item:nth-child(n+3) {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .card-item {
    width: 100%;
  }
  .card-item:not(:nth-child(2n)) {
    margin-right: 0;
  }
  .card-item:nth-child(n+2) {
    margin-top: 24px;
  }
}

.card-item-title {
  font-size: 20px;
  font-weight: bold;
  color: rgb(111, 117, 121);
  margin-top: 4px;
}

.card-item-text {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: rgb(111, 117, 121);
  margin-top: 5px;
  line-height: 1.5;
}

.news-list {
  padding: 0 200px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .news-list {
    padding: 0 150px;
  }
}
@media screen and (max-width: 767px) {
  .news-list {
    padding: 0 100px;
  }
}
@media screen and (max-width: 480px) {
  .news-list {
    padding: 0 50px;
  }
}

.news-list-item {
  display: flex;
  padding: 19px 0 12px 0;
}
.news-list-item:first-child {
  padding-top: 0;
}
.news-list-item:not(:first-child) {
  border-top: 1px solid #707070;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .news-list-item {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .news-list-item {
    display: block;
  }
}

.news-meta {
  display: flex;
  width: 185px;
}

.news-date {
  font-family: "Lato", sans-serif;
}

.news-label a {
  display: inline-block;
  color: #FFFFFF;
  width: 80px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background-color: #666666;
  border-radius: 4px;
  margin-left: 15px;
}
.news-label a.is-blue {
  background-color: #3F51B5;
}
.news-label a.is-red {
  background-color: #E81919;
}

.news-text {
  width: calc(100% - 185px);
  line-height: 1.25;
  padding-top: 3px;
  margin-left: 15px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .news-text {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .news-text {
    width: 100%;
  }
}

.news-more {
  text-align: center;
  margin-top: 45px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 767px) {
  .news-more {
    margin-top: 20px;
  }
}
.news-more a {
  color: #E81919;
  font-weight: bold;
  position: relative;
}
.news-more a::after {
  content: "";
  position: absolute;
  background: url(../img/news-arrow.png) no-repeat center center/contain;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 16px;
}

.price {
  background-color: #EFEFEF;
}

.table-content {
  display: flex;
}
@media screen and (max-width: 767px) {
  .table-content {
    display: block;
  }
}

.table-image {
  width: 37.8333333333%;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .table-image {
    width: 100%;
  }
}
.table-image img {
  height: 286px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .table-image img {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .table-image img {
    height: auto;
  }
}

.table-price {
  width: 59%;
}
@media screen and (max-width: 767px) {
  .table-price {
    width: 100%;
  }
}

.table {
  background-color: #FFFFFF;
  border-collapse: collapse;
  border: 1px solid #707070;
  table-layout: fixed;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .table {
    margin-top: 20px;
  }
}
.table th,
.table td {
  border: 1px solid #707070;
  font-weight: bold;
  height: 56px;
  vertical-align: middle;
}
.table th {
  color: #FFFFFF;
  background-color: #999999;
  font-family: "Lato", sans-serif;
}
.table th:first-child {
  width: 172px;
}
@media screen and (max-width: 767px) {
  .table th:first-child {
    width: 112px;
  }
}
.table td {
  text-align: right;
  padding-right: 23px;
}
.table strong {
  color: #E81919;
  line-height: 1;
}
.table span {
  display: block;
  font-size: 13px;
  line-height: 1;
}

.attention {
  font-size: 14px;
  margin-top: 8px;
}
.attention a {
  font-weight: bold;
  text-decoration: underline;
}

.access-map {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}

.iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 50%;
  /* = height ÷ width × 100 */
}
.iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access-info {
  margin-top: 14px;
}

.access-info-list {
  display: flex;
}
.access-info-list:not(:first-child) {
  margin-top: 8px;
}
.access-info-list dt {
  font-weight: bold;
  width: 104px;
}

.map-button-area {
  text-align: center;
  margin-top: 24px;
}
.map-button-area .map-button {
  display: inline-block;
  background-color: #3F51B5;
  width: 304px;
  max-width: 100%;
  height: 56px;
  line-height: 56px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
}
.map-button-area .map-button::after {
  content: "";
  position: absolute;
  background: url(../img/button-arrow.png) no-repeat center center/contain;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 16px;
}

.qa {
  background-color: #EEEEEE;
}

.qa-items {
  padding: 0 150px;
}
@media screen and (max-width: 767px) {
  .qa-items {
    padding: 0 80px;
  }
}
@media screen and (max-width: 540px) {
  .qa-items {
    padding: 0 30px;
  }
}

.qa-item {
  position: relative;
  margin-top: 24px;
  width: 900px;
  max-width: 100%;
  cursor: pointer;
  border: 1px solid #3F51B5;
}
.qa-item:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .qa-item {
    font-size: 12px;
  }
}

.item-head {
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: #3F51B5;
  color: #FFFFFF;
  font-weight: bold;
  padding-left: 56px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .item-head {
    padding-left: 36px;
  }
}
.item-head::before {
  position: absolute;
  content: "Q";
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 480px) {
  .item-head::before {
    font-size: 12px;
    left: 14px;
  }
}

.item-head-text {
  font-weight: bold;
}

.item-head-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: transparent;
}
.item-head-icon span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.item-head-icon span::before, .item-head-icon span::after {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.5s ease 0s;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 2px;
  background: #FFFFFF;
}
.item-head-icon span::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.item-head-icon span.is-open::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.item-body {
  width: 100%;
  padding: 14px 32px 14px 20px;
  font-weight: bold;
  color: #3F51B5;
  display: none;
}

.item-body-text {
  font-weight: bold;
  padding-left: 35px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .item-body-text {
    padding-left: 14px;
  }
}
.item-body-text::before {
  position: absolute;
  content: "A";
  left: 0;
  top: 0;
}
@media screen and (max-width: 480px) {
  .item-body-text::before {
    left: -5px;
  }
}

.contact {
  background-color: #EFEFEF;
}

.contact-form {
  background-color: #FFFFFF;
  width: 800px;
  max-width: 100%;
  padding: 58px 60px;
  margin: 0 auto;
}

.contact-form-list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .contact-form-list {
    display: block;
  }
}
.contact-form-list:not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .contact-form-list:not(:first-child) {
    margin-top: 30px;
  }
}

.contact-form-label {
  width: 160px;
  padding-top: 7px;
}
@media screen and (max-width: 767px) {
  .contact-form-label {
    width: 100%;
  }
}
.contact-form-label label {
  font-weight: bold;
}
.contact-form-label label.is-required {
  position: relative;
}
.contact-form-label label.is-required::after {
  content: "必須";
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background-color: #E81919;
  color: #FFFFFF;
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
  width: 44px;
  height: 22px;
}
@media screen and (max-width: 767px) {
  .contact-form-label label.is-required::after {
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 6px);
  }
}

.contact-form-input {
  width: calc(100% - 160px);
}
@media screen and (max-width: 767px) {
  .contact-form-input {
    width: 100%;
    margin-top: 5px;
  }
}
.contact-form-input [type=text] {
  box-shadow: none;
  border: 1px solid #707070;
  background: #FFFFFF;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  padding: 8px 14px;
  width: 100%;
}
.contact-form-input [type=email] {
  box-shadow: none;
  border: 1px solid #707070;
  background: #FFFFFF;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  padding: 8px 14px;
  width: 100%;
}
.contact-form-input select {
  box-shadow: none;
  border: 1px solid #707070;
  background: #FFFFFF url(../img/select-arrow.png) no-repeat right 12px center/17px 14px;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  padding: 11px 14px;
  width: 100%;
}
.contact-form-input textarea {
  box-shadow: none;
  border: 1px solid #707070;
  background: #FFFFFF;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  padding: 10px 14px;
  width: 100%;
  height: 240px;
  resize: none;
}

.contact-form-radio {
  margin-top: 24px;
}
.contact-form-radio [type=radio] {
  display: none;
}
.contact-form-radio span {
  display: inline-block;
  margin-right: 33px;
  padding-left: 26px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact-form-radio span {
    margin-top: 5px;
  }
}
.contact-form-radio span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #707070;
  background: #FFFFFF;
}
.contact-form-radio span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3F51B5;
  display: none;
}
.contact-form-radio [type=radio]:checked + span::after {
  display: block;
}

.contact-form-check {
  margin-top: 56px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-form-check {
    margin-top: 40px;
  }
}
.contact-form-check [type=checkbox] {
  display: none;
}
.contact-form-check span {
  display: inline-block;
  padding-left: 49px;
  position: relative;
}
.contact-form-check span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border: 1px solid #707070;
  background: #FFFFFF;
}
.contact-form-check span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: url(../img/checkbox.png) no-repeat center center/contain;
  display: none;
}
.contact-form-check span a {
  font-weight: bold;
  text-decoration: underline;
}
.contact-form-check [type=checkbox]:checked + span::after {
  display: block;
}

.contact-form-button {
  margin-top: 30px;
  text-align: center;
}
.contact-form-button [type=submit] {
  display: inline-block;
  background: #3F51B5 url(../img/button-arrow.png) no-repeat right 12px center/17px 16px;
  width: 304px;
  height: 56px;
  line-height: 56px;
  max-width: 100%;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  border: 1px solid #707070;
  transition: all 0.3s ease 0s;
}
.contact-form-button [type=submit]:hover {
  opacity: 0.7;
}

.modal-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100;
  display: none;
}

.privacy {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  max-width: 100%;
  height: 652px;
  background: #FFF;
  padding: 56px 60px 56px 60px;
  z-index: 101;
  display: none;
}

.modal-close-icon {
  position: absolute;
  content: "";
  background: url(../img/btn-batsu.png) no-repeat center center/contain;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.privacy-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.privacy-title-line {
  background-color: #3F51B5;
  width: 100px;
  height: 3px;
  margin: 20px auto 36px auto;
}
@media screen and (max-width: 767px) {
  .privacy-title-line {
    margin: 8px auto 20px auto;
  }
}

.privacy-items {
  height: 336px;
  overflow: scroll;
}

.privacy-item {
  margin-top: 36px;
}
.privacy-item:first-child {
  margin-top: 0;
}

.privacy-item-title {
  padding-left: 20px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}
.privacy-item-title::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 4px;
  height: 20px;
  background: #3F51B5;
}

.privacy-item-text {
  padding-left: 20px;
  margin-top: 14px;
  font-size: 16px;
  color: #707070;
  line-height: 1.5;
}

.modal-close-button {
  display: block;
  margin: 56px auto 0;
  text-align: center;
  background: #3F51B5;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  width: 176px;
  padding: 10px;
  border-radius: 8px;
  color: #FFF;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

.footer {
  background: linear-gradient(180deg, #666666 0%, #333333 100%);
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.16);
  height: 265px;
  padding-right: 40px;
  padding-left: 40px;
  width: 100%;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .footer {
    height: auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.footer-inner {
  height: inherit;
  padding-top: 60px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .footer-inner {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}

.footer-wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer-wrap {
    display: block;
    margin: 0 auto;
  }
}

.footer-left {
  width: 205px;
}
@media screen and (max-width: 767px) {
  .footer-left {
    width: 100%;
    text-align: left;
  }
}

.footer-logo {
  display: inline-block;
  width: 205px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .footer-logo {
    width: 180px;
    height: 30px;
  }
}
.footer-logo img {
  display: block;
}

.footer-info {
  font-size: 14px;
  margin-top: 26px;
}
@media screen and (max-width: 767px) {
  .footer-info {
    margin-top: 20px;
  }
}

.footer-info-tel {
  margin-top: 5px;
}

.footer-center {
  width: calc(100% - 205px - 122px);
}
@media screen and (max-width: 767px) {
  .footer-center {
    width: 100%;
    margin-top: 20px;
  }
}

.footer-site-menu {
  font-family: "Lato", sans-serif;
}

.footer-site-menu ul {
  display: flex;
  justify-content: center;
}
.footer-site-menu ul li {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .footer-site-menu ul li {
    margin-right: 20px;
  }
}
.footer-site-menu ul li:last-child {
  margin-right: 0;
}

.footer-right {
  width: 122px;
}
@media screen and (max-width: 767px) {
  .footer-right {
    margin: 20px auto 0;
  }
}

.icon-list {
  display: flex;
  justify-content: space-between;
}
.icon-list img {
  width: 30px;
  height: 30px;
}

.copyright {
  margin-top: 40px;
  font-size: 14px;
  text-align: center;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 767px) {
  .copyright {
    margin-top: 24px;
  }
}

/* トップへ戻るボタン */
.pagetop {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
}
@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 12px;
    right: 12px;
  }
}
.pagetop img {
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .pagetop img {
    width: 40px;
    height: 40px;
  }
}