@charset "UTF-8";
/* CSS Document */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: #333333;
  position: relative;
}
body p {
  line-height: 1.8;
  font-size: 20px;
}
body h1,
body h2,
body h3 {
  line-height: 1.5;
}
body h1,
body h2,
body h3 {
  font-size: 50px;
  font-weight: bold;
  margin: 0;
  margin-bottom: 1rem;
}
body h4,
body h5,
body h6 {
  font-size: 24px;
  margin: 0;
}

.title {
  margin-bottom: 70px;
  font-size: 40px;
  font-weight: bold;
  color: #bc004c;
  text-align: center;
}

.title2 {
  color: #ffffff;
  font-size: 30px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.title2::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-bottom: 1px solid #ffffff;
  margin-left: 10px;
}

.title3 {
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
}

.btn {
  border: 1px solid #bc004c;
  border-radius: 10px;
  display: block;
  width: 33.3333333333%;
  min-width: 360px;
  margin: 0 auto;
  padding: 1.5rem;
  position: relative;
  background-color: #fff0f6;
  font-size: 20px;
  font-weight: bold;
  color: #bc004c;
}
.btn::after {
  display: block;
  content: " ";
  width: 100%;
  height: calc(4rem + 12px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/btn-arrow.png);
  background-repeat: no-repeat;
  background-position: center right 20px;
  top: 0;
  left: 0;
}
.btn:hover {
  opacity: 0.8;
  color: #bc004c;
}

@media screen and (max-width: 1200px) {
  .title {
    margin-bottom: 40px;
  }
  .title2 {
    font-size: 25px !important;
  }
  .title3 {
    font-size: 22px !important;
  }
  .btn {
    width: 100%;
    min-width: auto;
    max-width: 320px;
  }
}
.fadein {
  opacity: 0;
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
.container {
  max-width: 1180px;
}

.section3 {
  background-image: url(../images/section3_background.png);
  background-repeat: no-repeat;
  background-position: center center;
  height: 100%;
  width: 100%;
  min-height: 1100px;
}
.section3 p {
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 30px;
}
.section3 p.text-2 {
  border: 2px solid #ffffff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.5;
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.section3 .btn {
  background-color: #ffffff;
}
.section3 .right-column {
  margin-top: 150px;
  background-color: #bc004c;
}
.section3 .left-column {
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

@media screen and (max-width: 1200px) {
  .section3 {
    background-image: none;
  }
  .section3 .left-column {
    background-image: url(../images/section3_background.png);
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 700px;
  }
  .section3 .left-column .img-2 {
    max-width: 220px;
    left: 5%;
  }
  .section3 .right-column {
    margin-top: 0;
    padding: 50px 30px 30px;
  }
}
@media screen and (max-width: 768px) {
  .section3 .left-column {
    min-height: 150px !important;
    background-size: cover !important;
    background-position: top !important;
    background-repeat: no-repeat !important;
  }
  .section3 .left-column .img-2 {
    left: auto;
    top: -100px;
    right: 5%;
  }
}
.section4 strong {
  font-weight: bold;
  color: #ffffff;
  background-color: #bc004c;
}

table.price {
  font-size: 40px;
  font-weight: bold;
  margin-left: auto;
  margin-bottom: 40px;
  color: #bc004c;
}
table.price tr {
  height: 3rem;
}
table.price tr td {
  padding-right: 60px;
  text-align: right;
}
table.price tr td:nth-child(2n) {
  padding-right: 0;
}
table.price span {
  font-size: 30px;
}

@media screen and (max-width: 1200px) {
  table.price {
    font-size: 30px;
  }
  table.price tr {
    height: 3rem;
  }
  table.price tr td {
    padding-right: 30px;
    text-align: right;
  }
  table.price tr td:nth-child(2n) {
    padding-right: 0;
  }
  table.price span {
    font-size: 20px;
  }
}
.section5 .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.section5 .col {
  min-width: 200px;
  width: 200px;
  max-width: 200px;
  padding: 0;
}
.section5 .text-1 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.btn3 {
  min-width: auto;
  color: #bc004c;
  text-decoration: none;
  border-bottom: dotted 2px #bc004c;
  font-weight: bold;
  font-size: 12px;
  display: block;
  margin-bottom: 50px;
  padding-bottom: 0.3rem;
  background-image: url(../images/btn3_arrow.png);
  background-position: right 0 bottom 10px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .btn3 {
    font-size: 10px;
  }
}

@media screen and (max-width: 768px) {
  .section5 {
    padding: 50px 15px !important;
  }
  .section5 .col {
    min-width: calc(50% - 20px);
    width: 50%;
    max-width: 50%;
    margin: 0 10px;
  }
}
.section6 .left-column {
  background-image: url(../images/section6_1.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.section6 .right-column {
  background-color: #bc004c;
  padding-top: 80px;
  padding-bottom: 80px;
}
.section6 .date {
  font-size: 14px;
  font-weight: bold;
}
.section6 h2 {
  color: #ffffff;
}
.section6 .text-1 {
  color: #ffffff;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .section6 {
    padding: 50px 0px !important;
  }
  .section6 .left-column {
    min-height: 40vh !important;
  }
  .section6 h2 {
    font-size: 21px !important;
  }
  .section6 .text-1 {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .section7 {
    padding: 50px 15px !important;
  }
}
.section8_top {
  width: 100%;
  height: 160px;
  background-image: url(../images/section8_top.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.section8_bottom {
  width: 100%;
  height: 160px;
  background-image: url(../images/section8_bottom.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.section8 {
  background-color: #bc004c;
}

@media screen and (max-width: 768px) {
  .section8_top {
    height: 7.1428571429vw;
  }
}
.section9 {
  position: relative;
  padding: 0px !important;
}
.section9::after {
  content: "";
  display: block;
  width: 100%;
  height: 160px;
  background-image: url(../images/section8_bottom.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  left: 0;
}
.section9 .left-column {
  padding: 200px 0;
  overflow: hidden;
}
.section9 .right-column {
  padding: 40px 0 0;
}
.section9 .right-column iframe {
  min-height: 400px;
}
.section9 h2 img {
  width: 350px;
  height: auto;
  margin-bottom: 110px;
}
.section9 .text-1 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 0;
}
.section9 .tel-1 a {
  font-family: "Amiri", "メイリオ", "Meiryo", sans-serif;
  font-size: 48px;
  text-decoration: none;
  color: #333333;
  font-weight: bold;
}
.section9 .tel-1 span {
  font-size: 30px;
}
.section9 .address-1 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 50px;
}
.section9 .title-4 {
  font-size: 25px;
}
.section9 .footer_table {
  border: 2px solid #333333;
  width: 100%;
}
.section9 .footer_table tr td {
  padding: 0;
  text-align: center;
  border: 1px solid #333333;
  font-size: 20px;
  font-weight: bold;
  vertical-align: middle;
}
.section9 .footer_table tr td:first-child {
  padding: 10px;
}
.section9 .footer_table tr td img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .section9 h2 img {
    width: 300px;
  }
  .section9 .tel-1 a {
    font-size: 36px;
    text-decoration: none;
    color: #333333;
    font-weight: bold;
  }
  .section9 .tel-1 span {
    font-size: 24px;
  }
  .section9 .footer_table tr td {
    font-size: 20px;
  }
  .section9 .footer_table tr td:first-child {
    padding: 10px;
  }
  .section9 .footer_table tr td img {
    width: 94%;
  }
}

.footer-a {
  background-color: #bc004c;
  color: #ffffff;
}
.footer-a a {
  color: #ffffff;
  text-decoration: none;
}
.footer-a .ul-a li a {
  color: #ffffff !important;
  text-decoration: none;
}

#totop {
  position: fixed;
  display: none;
  bottom: 100px;
  right: 40px;
  z-index: 99;
}
#totop a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1200px) {
  #totop {
    max-width: 60px;
  }
  #totop img {
    width: 100%;
    height: auto;
  }
}
.page h1,
.page h2,
.page h3,
.page h4,
.page h5,
.page h6 {
  font-size: 24px;
  color: #bc004c;
}
.page strong {
  font-size: 20px;
  color: #bc004c;
}
.page p {
  margin-bottom: 2rem;
}
.page h2 {
  padding: 2rem;
  background-color: #fff0f6;
  font-weight: bold;
  color: #bc004c;
  border-radius: 0.5rem;
}
.page h2 strong {
  font-size: 24px !important;
}
.page h2:first-child {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  font-size: 36px;
}
.page img {
  width: 100%;
  height: auto;
}

.special {
  padding: 2rem;
  background-color: #fff0f6;
  font-size: 1.5rem;
  font-weight: bold;
  color: #bc004c;
  border-radius: 1rem;
}

/* CSS Document */
/* CSS Document */
.grid-container-fluid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 40px;
  width: 100%;
  margin: 0 auto;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
}

.grid-container-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
}

.grid-container-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
}

.grid-container-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
}

.grid-container-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
}

.grid-container-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
}

.grid-container-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
}

.grid-container-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
}

.g0 {
  grid-gap: 0;
}

.grid-item-12 {
  grid-column: span 12;
}

.grid-item-11 {
  grid-column: span 11;
}

.grid-item-10 {
  grid-column: span 10;
}

.grid-item-9 {
  grid-column: span 9;
}

.grid-item-8 {
  grid-column: span 8;
}

.grid-item-7 {
  grid-column: span 7;
}

.grid-item-6 {
  grid-column: span 6;
}

.grid-item-5 {
  grid-column: span 5;
}

.grid-item-4 {
  grid-column: span 4;
}

.grid-item-3 {
  grid-column: span 3;
}

.grid-item-2 {
  grid-column: span 2;
}

.grid-item-1 {
  grid-column: span 1;
}

.grid-item {
  position: relative;
}

@media screen and (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-container-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-container-3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-container-12 {
    grid-template-columns: repeat(12, 1fr);
    width: 100%;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .grid-item-12 {
    grid-column: span 1;
  }
  .grid-item-11 {
    grid-column: span 1;
  }
  .grid-item-10 {
    grid-column: span 1;
  }
  .grid-item-9 {
    grid-column: span 1;
  }
  .grid-item-8 {
    grid-column: span 1;
  }
  .grid-item-7 {
    grid-column: span 1;
  }
  .grid-item-6 {
    grid-column: span 1;
  }
  .grid-item-5 {
    grid-column: span 1;
  }
  .grid-item-4 {
    grid-column: span 1;
  }
  .grid-item-3 {
    grid-column: span 1;
  }
  .grid-item-2 {
    grid-column: span 1;
  }
  .grid-item-1 {
    grid-column: span 1;
  }
}
/* CSS Document */
/* CSS Document */
.c1-a-flex {
  padding: 100px 40px;
}
.c1-a-flex .img-block {
  position: relative;
}
.c1-a-flex .img-1 {
  position: relative;
}
.c1-a-flex .img-2 {
  position: absolute;
  top: -120px;
  right: 0;
}
.c1-a-flex img {
  width: 100%;
  height: auto;
}
.c1-a-flex .text-1 {
  margin-bottom: 40px;
}
.c1-a-flex .btn {
  border: 1px solid #000000;
  border-radius: 0;
  display: block;
  width: 33.3333333333%;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
}
.c1-a-flex .btn::after {
  display: block;
  content: " ";
  width: 100%;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/c1-a/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c1-a-flex h2 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  .c1-a-flex .img-2 {
    width: 30%;
    height: auto;
    top: 0;
    right: 0;
  }
  .c1-a-flex .btn {
    min-width: 220px;
    width: 100%;
  }
}

.c1-b-flex {
  padding: 100px 40px;
}
.c1-b-flex h2 {
  display: inline;
}
.c1-b-flex h2::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-bottom: 1rem;
  margin-left: 10px;
}
.c1-b-flex .img-block {
  position: relative;
}
.c1-b-flex .img-1 {
  position: relative;
}
.c1-b-flex .img-2 {
  position: absolute;
  bottom: -120px;
  right: 0;
}
.c1-b-flex img {
  width: 100%;
  height: auto;
}
.c1-b-flex .text-1 {
  margin-bottom: 40px;
  display: inline;
}
.c1-b-flex .box {
  width: calc(100% - 320px);
}
.c1-b-flex .btn {
  border: 1px solid #000000;
  border-radius: 0;
  display: block;
  width: 33.3333333333%;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
}
.c1-b-flex .btn::after {
  display: block;
  content: " ";
  width: 100%;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/c1-a/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c1-b-flex h2 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  .c1-b-flex h2::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: #000000;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    margin-bottom: 0.5rem;
    margin-left: 10px;
  }
  .c1-b-flex .text-1 {
    display: block;
  }
  .c1-b-flex .box {
    width: 100%;
  }
  .c1-b-flex .img-2 {
    width: 30%;
    height: auto;
    bottom: -20px;
    right: 0;
  }
  .c1-b-flex .btn {
    min-width: 220px;
    width: 100%;
  }
}

.c1-c-flex {
  margin: 100px 0;
}
.c1-c-flex .wrapper {
  position: relative;
  width: 100%;
  background-image: url(../images/c1-c/1.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 40px;
}
.c1-c-flex h2 {
  text-align: center;
}
.c1-c-flex h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 2rem auto;
}
.c1-c-flex .img-2 {
  width: 100%;
  position: absolute;
  margin-top: -200px;
}
.c1-c-flex .img-2 img {
  text-align: left;
}
.c1-c-flex .text-1 {
  margin-bottom: 40px;
}
.c1-c-flex .btn {
  border: 1px solid #000000;
  border-radius: 0;
  display: block;
  width: 33.3333333333%;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
}
.c1-c-flex .btn::after {
  display: block;
  content: " ";
  width: 100%;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/c1-a/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c1-c-flex h2 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  .c1-c-flex h2::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background-color: #000000;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    margin: 2rem auto;
  }
  .c1-c-flex h3 {
    font-size: 1.4rem;
  }
  .c1-c-flex .text-1 {
    display: block;
  }
  .c1-c-flex .box {
    width: 100%;
  }
  .c1-c-flex .img-2 {
    margin-top: 0px;
    left: 0;
    top: -90px;
    padding: 40px;
  }
  .c1-c-flex .img-2 img {
    max-width: 100px;
  }
  .c1-c-flex .btn {
    min-width: 220px;
    width: 100%;
  }
}

.c1-d-flex {
  margin: 100px 0;
}
.c1-d-flex .wrapper {
  position: relative;
  width: 100%;
  background-image: url(../images/c1-c/1.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 40px;
}
.c1-d-flex .wrapper .box {
  margin-top: -140px;
}
.c1-d-flex h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 3rem 0;
}
.c1-d-flex .box-2 {
  position: relative;
}
.c1-d-flex .box-2 .img-2 {
  position: absolute;
  bottom: -240px;
  right: 0;
}
.c1-d-flex .text-1 {
  margin-bottom: 40px;
}
.c1-d-flex .btn {
  border: 1px solid #000000;
  border-radius: 0;
  display: block;
  width: 33.3333333333%;
  padding: 1rem;
  position: relative;
}
.c1-d-flex .btn::after {
  display: block;
  content: " ";
  width: 100%;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/c1-a/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c1-d-flex .wrapper .box {
    width: 100%;
    margin-top: 0;
  }
  .c1-d-flex h2 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  .c1-d-flex h2::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background-color: #000000;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    margin: 3rem 0;
  }
  .c1-d-flex h3 {
    font-size: 1.4rem;
  }
  .c1-d-flex .text-1 {
    display: block;
  }
  .c1-d-flex .box-2 .img-2 {
    margin-top: 0px;
    right: auto;
    left: 0;
    bottom: -150px;
    padding: 0px;
  }
  .c1-d-flex .box-2 .img-2 img {
    max-width: 100px;
  }
  .c1-d-flex .btn {
    min-width: 220px;
    width: 100%;
  }
}

.c1-e-flex {
  padding: 100px 40px;
}
.c1-e-flex .container {
  position: relative;
}
.c1-e-flex .box-1 {
  position: relative;
  top: 100px;
}
.c1-e-flex .box-2 {
  position: absolute;
  top: 0;
  right: 0;
}
.c1-e-flex .box-3 {
  position: relative;
  z-index: 3;
  top: -100px;
}
.c1-e-flex .box-3 h2 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: inline;
}
.c1-e-flex .box-4 {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 2rem;
  top: -150px;
}
.c1-e-flex img {
  width: 100%;
  height: auto;
}
.c1-e-flex .btn {
  border: 1px solid #000000;
  border-radius: 0;
  display: block;
  width: 33.3333333333%;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
}
.c1-e-flex .btn::after {
  display: block;
  content: " ";
  width: 100%;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/c1-a/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c1-e-flex h2 {
    font-size: 30px;
  }
  .c1-e-flex .box-1 {
    top: 0;
    margin-bottom: 20px;
    padding: 0;
  }
  .c1-e-flex .box-3 {
    position: static;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .c1-e-flex .box-4 {
    position: static;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    top: 0;
    margin-top: 0;
    padding: 0;
  }
  .c1-e-flex .btn {
    min-width: 220px;
    width: 100%;
  }
}

/* CSS Document */
/* CSS Document */
.c2-a-flex {
  padding: 100px 40px;
}
.c2-a-flex .img-block {
  position: relative;
}
.c2-a-flex .img-block-1 {
  min-height: 400px;
}
.c2-a-flex .img-block-2 {
  min-height: 500px;
}
.c2-a-flex .img-1 {
  position: absolute;
  width: 66.6666666667%;
  top: 0;
}
.c2-a-flex .img-2 {
  position: absolute;
  width: 50%;
  top: 170px;
  left: 33.3333333333%;
}
.c2-a-flex .img-3 {
  position: absolute;
  width: 66.6666666667%;
}
.c2-a-flex .img-4 {
  position: absolute;
  top: 150px;
  left: 33.3333333333%;
  width: 66.6666666667%;
}
.c2-a-flex .img-5 {
  position: relative;
  top: -100px;
  width: 50%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  z-index: -1;
  margin-left: auto;
}
.c2-a-flex img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c2-a-flex .img-1 {
    position: absolute;
    width: 66.6666666667%;
  }
  .c2-a-flex .img-2 {
    position: absolute;
    width: 50%;
    top: 100px;
    left: 50%;
  }
  .c2-a-flex .img-3 {
    position: absolute;
    width: 66.6666666667%;
  }
  .c2-a-flex .img-4 {
    position: absolute;
    top: 120px;
    left: 33.3333333333%;
    width: 66.6666666667%;
  }
  .c2-a-flex .img-block-1 {
    min-height: 200px;
  }
  .c2-a-flex .img-block-2 {
    min-height: 300px;
  }
}

.c2-b-flex {
  padding: 100px 40px;
}
.c2-b-flex .left-column {
  position: relative;
}
.c2-b-flex .right-column {
  position: relative;
}
.c2-b-flex h2 {
  position: absolute;
  z-index: 1;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  left: -1rem;
  margin-top: -20px;
}
.c2-b-flex h2::after {
  display: inline-block;
  content: "";
  width: 70px;
  height: 1px;
  background-color: black;
  position: absolute;
  bottom: 1.4rem;
  margin-left: 10px;
  margin-bottom: 15px;
}
.c2-b-flex .img-1 {
  position: relative;
  width: 100%;
}
.c2-b-flex .img-2 {
  position: absolute;
  width: 28.5714285714%;
  position: absolute;
  bottom: -100px;
  right: 0;
  z-index: 1;
}
.c2-b-flex .img-3 {
  position: relative;
  width: 100%;
  z-index: 0;
}
.c2-b-flex img {
  width: 100%;
  height: auto;
}
.c2-b-flex .img-block {
  position: relative;
}
.c2-b-flex .text-block {
  position: relative;
}
@media screen and (max-width: 768px) {
  .c2-b-flex .left-column {
    margin-bottom: 70px;
  }
  .c2-b-flex h2 {
    font-size: 2rem;
  }
  .c2-b-flex h2::after {
    display: inline-block;
    content: "";
    width: 60px;
    height: 1px;
    background-color: black;
    position: absolute;
    bottom: 1.2rem;
    margin-left: 10px;
    margin-bottom: 4px;
  }
  .c2-b-flex .img-2 {
    bottom: -50px;
  }
}

.c2-c-flex {
  padding: 100px 40px;
}
.c2-c-flex .left-column {
  position: relative;
}
.c2-c-flex .right-column {
  position: relative;
}
.c2-c-flex h2 {
  text-align: center;
}
.c2-c-flex h3 {
  font-size: 30px;
  margin-bottom: 20px;
}
.c2-c-flex img {
  width: 100%;
  height: auto;
}
.c2-c-flex .img-block {
  position: relative;
}
.c2-c-flex .img-block img {
  margin-bottom: 30px;
}
.c2-c-flex .img-block p {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c2-c-flex {
    padding: 50px 15px;
  }
}

.c2-d-flex {
  padding: 100px 40px;
}
.c2-d-flex h2 {
  display: inline;
}
.c2-d-flex h2::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-bottom: 1rem;
  margin-left: 10px;
}
.c2-d-flex img {
  width: 100%;
  height: auto;
}
.c2-d-flex .text-1 {
  margin-bottom: 40px;
  display: inline;
}
.c2-d-flex .btn {
  border: 1px solid #000000;
  border-radius: 0;
  display: block;
  width: 33.3333333333%;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
}
.c2-d-flex .btn::after {
  display: block;
  content: " ";
  width: 100%;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/c1-a/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c2-d-flex .text-1 {
    margin-bottom: 40px;
    display: block;
  }
  .c2-d-flex .btn {
    width: 100%;
  }
}

.c2-e-flex {
  padding: 100px 40px;
}
.c2-e-flex .left-column {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.c2-e-flex .right-column {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.c2-e-flex .img-2 {
  width: 120%;
}
.c2-e-flex img {
  width: 100%;
  height: auto;
}
.c2-e-flex .text-1 {
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .c2-e-flex {
    padding: 50px 15px;
  }
  .c2-e-flex .img-2 {
    width: 100%;
  }
}

.c2-f-flex {
  padding: 100px 40px;
}
.c2-f-flex .ttl-block {
  text-align: right;
}
.c2-f-flex h2 {
  display: inline;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.c2-f-flex h2::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-top: 3rem;
  margin-right: 0.3rem;
}
.c2-f-flex img {
  width: 100%;
  height: auto;
}
.c2-f-flex .text-1 {
  margin-bottom: 40px;
}
.c2-f-flex .btn {
  border: 1px solid #000000;
  border-radius: 0;
  display: block;
  width: 33.3333333333%;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
}
.c2-f-flex .btn::after {
  display: block;
  content: " ";
  width: 100%;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/c1-a/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c2-f-flex .ttl-block {
    text-align: left;
  }
  .c2-f-flex h2 {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  .c2-f-flex h2::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-bottom: 0.7rem;
    margin-left: 1rem;
  }
  .c2-f-flex .btn {
    width: 100%;
  }
}

.c2-g-flex {
  padding: 100px 40px;
}
.c2-g-flex .ttl-block {
  text-align: right;
}
.c2-g-flex h2 {
  display: inline;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.c2-g-flex h2::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-top: 3rem;
  margin-right: 0.3rem;
}
.c2-g-flex .img-block-1 {
  position: relative;
}
.c2-g-flex .img-2 {
  width: 33.3333333333%;
  margin-left: auto;
  margin-bottom: 30px;
}
.c2-g-flex .img-block-2 {
  position: relative;
}
.c2-g-flex .img-3 {
  position: absolute;
  width: 100%;
}
.c2-g-flex .img-4 {
  width: 33.3333333333%;
  position: absolute;
  top: 280px;
  left: 0;
}
.c2-g-flex img {
  width: 100%;
  height: auto;
}
.c2-g-flex .text-1 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  max-height: 30em;
}
.c2-g-flex .btn {
  border: 1px solid #000000;
  border-radius: 0;
  display: block;
  width: 33.3333333333%;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
}
.c2-g-flex .btn::after {
  display: block;
  content: " ";
  width: 100%;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/c1-a/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c2-g-flex .text-1 {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    max-height: none;
  }
  .c2-g-flex h2 {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  .c2-g-flex h2::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-bottom: 0.7rem;
    margin-left: 1rem;
  }
  .c2-g-flex .btn {
    width: 100%;
  }
  .c2-g-flex .img-3 {
    position: relative;
  }
  .c2-g-flex .img-4 {
    width: 33.3333333333%;
    position: relative;
    top: 0;
    left: 0;
  }
}

.c2-h-flex {
  padding: 100px 40px;
}
.c2-h-flex h2 {
  display: inline;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.c2-h-flex h2::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 3rem;
  margin-right: 0.3rem;
}
.c2-h-flex h3 {
  font-size: 40px;
}
.c2-h-flex img {
  width: 100%;
  height: auto;
}
.c2-h-flex .btn {
  border: 1px solid #000000;
  border-radius: 0;
  display: block;
  width: 33.3333333333%;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
}
.c2-h-flex .btn::after {
  display: block;
  content: " ";
  width: 100%;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/c1-a/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c2-h-flex .text-1 {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    max-height: none;
  }
  .c2-h-flex h2 {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  .c2-h-flex h2::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-bottom: 0.7rem;
    margin-left: 1rem;
  }
  .c2-h-flex .btn {
    width: 100%;
  }
  .c2-h-flex .img-3 {
    position: relative;
  }
  .c2-h-flex .img-4 {
    width: 33.3333333333%;
    position: relative;
    top: 0;
    left: 0;
  }
}

.c2-i-flex {
  padding: 100px 40px;
}
.c2-i-flex h2 {
  display: inline;
}
.c2-i-flex h2::after {
  content: "";
  display: inline-block;
  width: 70px;
  height: 1px;
  background-color: #000000;
  margin-bottom: 0.8rem;
  margin-left: 1rem;
}
.c2-i-flex h3 {
  font-size: 20px;
  line-height: 1.8;
}
.c2-i-flex img {
  width: 100%;
  height: auto;
}
.c2-i-flex .btn {
  border: 1px solid #000000;
  border-radius: 0;
  display: block;
  width: 33.3333333333%;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
}
.c2-i-flex .btn::after {
  display: block;
  content: " ";
  width: 100%;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/c1-a/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c2-i-flex .text-1 {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    max-height: none;
  }
  .c2-i-flex h2 {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  .c2-i-flex h2::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-bottom: 0.7rem;
    margin-left: 1rem;
  }
  .c2-i-flex .btn {
    width: 100%;
  }
  .c2-i-flex .img-3 {
    position: relative;
  }
  .c2-i-flex .img-4 {
    width: 33.3333333333%;
    position: relative;
    top: 0;
    left: 0;
  }
}

.c2-j-flex {
  padding: 100px 40px;
}
.c2-j-flex h2 {
  display: inline;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.c2-j-flex h2::after {
  content: "";
  display: inline-block;
  width: 70px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-top: 4rem;
  margin-right: 0.5rem;
}
.c2-j-flex .text-1 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  max-height: 30em;
}
.c2-j-flex img {
  width: 100%;
  height: auto;
}
.c2-j-flex .img-block {
  position: relative;
  margin-bottom: 130px;
}
.c2-j-flex .img-1 {
  position: relative;
}
.c2-j-flex .img-2 {
  width: 25%;
  position: absolute;
  bottom: -130px;
}
.c2-j-flex .btn {
  border: 1px solid #000000;
  border-radius: 0;
  display: block;
  width: 33.3333333333%;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
}
.c2-j-flex .btn::after {
  display: block;
  content: " ";
  width: 100%;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/c1-a/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c2-j-flex .text-1 {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    max-height: none;
  }
  .c2-j-flex h2 {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  .c2-j-flex h2::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-bottom: 0.7rem;
    margin-left: 1rem;
  }
  .c2-j-flex .btn {
    width: 100%;
  }
  .c2-j-flex .img-3 {
    position: relative;
  }
  .c2-j-flex .img-4 {
    width: 33.3333333333%;
    position: relative;
    top: 0;
    left: 0;
  }
}

.c2-k-flex {
  padding: 100px 40px;
}
.c2-k-flex .left-column {
  position: relative;
}
.c2-k-flex h2 {
  display: inline;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  left: 0;
}
.c2-k-flex h2::after {
  content: "";
  display: inline-block;
  width: 70px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-top: 4rem;
  margin-right: 0.5rem;
}
.c2-k-flex .text-1 {
  max-height: 30em;
}
.c2-k-flex img {
  width: 100%;
  height: auto;
}
.c2-k-flex .btn {
  border: 1px solid #000000;
  border-radius: 0;
  display: block;
  width: 33.3333333333%;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
}
.c2-k-flex .btn::after {
  display: block;
  content: " ";
  width: 100%;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/c1-a/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c2-k-flex .left-column {
    margin-bottom: 4rem;
  }
  .c2-k-flex h2 {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    position: relative;
  }
  .c2-k-flex h2::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-bottom: 0.7rem;
    margin-left: 1rem;
  }
  .c2-k-flex .btn {
    width: 100%;
  }
}

.c2-l-flex {
  padding: 100px 40px;
}
.c2-l-flex .left-column {
  position: relative;
}
.c2-l-flex .right-column {
  position: relative;
}
.c2-l-flex h2 {
  text-align: center;
}
.c2-l-flex h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 3rem auto;
}
.c2-l-flex .text-1 {
  max-height: 30em;
}
.c2-l-flex img {
  width: 100%;
  height: auto;
}
.c2-l-flex .img-2 {
  width: 33.3333333333%;
  position: absolute;
  right: 0;
  bottom: 0;
}
.c2-l-flex .btn {
  border: 1px solid #000000;
  border-radius: 0;
  display: block;
  width: 33.3333333333%;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
}
.c2-l-flex .btn::after {
  display: block;
  content: " ";
  width: 100%;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/c1-a/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c2-l-flex .left-column {
    margin-bottom: 4rem;
  }
  .c2-l-flex h2 {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    position: relative;
  }
  .c2-l-flex h2::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-bottom: 0.7rem;
    margin-left: 1rem;
  }
  .c2-l-flex .btn {
    width: 100%;
  }
}

.c2-m-flex {
  padding: 100px 0;
}
.c2-m-flex .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c2-m-flex .left-column {
  position: relative;
}
.c2-m-flex .img-2 {
  width: 50%;
  position: absolute;
  left: 0;
  bottom: -200px;
  z-index: 1;
}
.c2-m-flex img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c2-m-flex .left-column {
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
  }
  .c2-m-flex h2 {
    font-size: 50px;
  }
  .c2-m-flex .img-2 {
    left: 20%;
    bottom: -60px;
    position: absolute;
  }
}

.c2-n-flex {
  padding: 100px 0;
}
.c2-n-flex h2 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: center;
  font-size: 43.2px;
  display: inline;
}
.c2-n-flex h2::after {
  width: 70px;
  height: 1px;
  background-color: #333333;
  content: "";
  display: inline-block;
  margin: 50px auto;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c2-n-flex .text-1 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  max-height: 30em;
}
.c2-n-flex img {
  width: 100%;
  height: auto;
}
.c2-n-flex .img-2 {
  margin-top: 80px;
}
.c2-n-flex .img-3 {
  margin-top: 160px;
}
.c2-n-flex .img-4 {
  width: 50%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .c2-n-flex .img-1 {
    width: 50%;
    margin-left: auto;
  }
  .c2-n-flex h2 {
    font-size: 50px;
  }
  .c2-n-flex .text-1 {
    margin-left: auto;
    max-height: 18em;
  }
}

.c2-o-flex {
  padding: 100px 40px;
}
.c2-o-flex img {
  width: 100%;
  height: auto;
}
.c2-o-flex .left-column {
  position: relative;
}
.c2-o-flex .img-1 {
  position: absolute;
  z-index: 1;
  top: -100px;
  left: -100px;
}
.c2-o-flex .img-2 {
  position: relative;
  margin-top: 100px;
}
.c2-o-flex .img-4 {
  width: 50%;
  margin-left: auto;
}
.c2-o-flex .box {
  width: 80%;
  margin: -200px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.c2-o-flex h2 {
  font-size: 30px;
  line-height: 1.5;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: inline;
  max-height: 14em;
  margin-left: 1rem;
}
.c2-o-flex .text-1 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  max-height: 24em;
  display: inline;
}
@media screen and (max-width: 768px) {
  .c2-o-flex .img-1 {
    width: 50%;
    height: auto;
    top: 0;
    left: 0;
  }
  .c2-o-flex .box {
    width: 100%;
  }
  .c2-o-flex h2 {
    font-size: 20px;
    line-height: 1.8;
  }
  .c2-o-flex h2::after {
    content: "";
    display: block;
    margin-bottom: 0.3em;
    margin-right: 0px;
    position: relative;
    top: -1.2rem;
    right: -100px;
  }
  .c2-o-flex .text-1 {
    font-size: 16px;
  }
}

/* CSS Document */
/* CSS Document */
.c3-a-flex {
  padding: 100px 40px;
}
.c3-a-flex img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .c3-a-flex {
    padding: 50px 15px;
  }
}

.c3-b-flex {
  padding: 100px 40px;
}
.c3-b-flex .center-column {
  margin-top: 2rem;
}
.c3-b-flex .right-column {
  margin-top: 4rem;
}
.c3-b-flex h2 {
  text-align: center;
  margin-bottom: 40px;
}
.c3-b-flex img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c3-b-flex .center-column,
  .c3-b-flex .right-column {
    margin-top: 0;
  }
}

.c3-c-flex {
  padding: 100px 40px;
}
.c3-c-flex .left-column {
  position: relative;
}
.c3-c-flex h2 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  z-index: 1;
  top: -2rem;
}
.c3-c-flex h2::after {
  display: inline-block;
  content: "";
  width: 70px;
  height: 1px;
  background-color: black;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-top: 60px;
  margin-left: -10px;
}
.c3-c-flex img {
  width: 100%;
  height: auto;
}
.c3-d-flex {
  padding: 100px 40px;
}
.c3-d-flex h2 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.c3-d-flex h2::after {
  display: inline-block;
  content: "";
  width: 70px;
  height: 1px;
  background-color: black;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-top: 60px;
  margin-left: -10px;
}
.c3-d-flex img {
  width: 100%;
  height: auto;
}
.c3-d-flex .img-2,
.c3-d-flex .img-3 {
  margin-bottom: 0;
}
.c3-d-flex .text-2 {
  font-size: 1.2rem;
  font-weight: bold;
}
.c3-d-flex .text-2 span {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .c3-d-flex h2 {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  .c3-d-flex h2::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-left: 1rem;
    margin-bottom: 1rem;
  }
}

.c3-d2-flex {
  padding: 100px 40px;
  position: relative;
}
.c3-d2-flex h2 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.c3-d2-flex h2::after {
  display: inline-block;
  content: "";
  width: 70px;
  height: 1px;
  background-color: black;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-top: 60px;
  margin-left: -10px;
}
.c3-d2-flex img {
  width: 100%;
  height: auto;
}
.c3-d2-flex .img-2,
.c3-d2-flex .img-3 {
  margin-bottom: 0;
}
.c3-d2-flex .text-2 {
  font-size: 1.2rem;
  font-weight: bold;
}
.c3-d2-flex .text-2 span {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .c3-d2-flex h2 {
    position: absolute;
    top: 50px;
  }
  .c3-d2-flex h2::after {
    margin-left: 1rem;
    margin-bottom: 1rem;
  }
}

.c3-e-flex {
  padding: 100px 40px;
}
.c3-e-flex .left-column {
  position: relative;
}
.c3-e-flex .right-column {
  position: relative;
}
.c3-e-flex h2::after {
  display: inline-block;
  content: "";
  width: 70px;
  height: 1px;
  background-color: black;
  margin-left: 1rem;
  margin-bottom: 1rem;
}
.c3-e-flex .text-2 {
  font-size: 14px;
}
.c3-e-flex .text-3 {
  font-weight: bold;
}
.c3-e-flex .text-3 span {
  font-size: 30px;
}
.c3-e-flex img {
  width: 100%;
  height: auto;
}
.c3-e-flex .img-4 {
  width: 30%;
  position: absolute;
  top: -100px;
}
.c3-e2-flex {
  padding: 100px 40px;
}
.c3-e2-flex .left-column {
  position: relative;
}
.c3-e2-flex .right-column {
  position: relative;
}
.c3-e2-flex h2::after {
  display: inline-block;
  content: "";
  width: 70px;
  height: 1px;
  background-color: black;
  margin-left: 1rem;
  margin-bottom: 1rem;
}
.c3-e2-flex .text-2 {
  font-size: 14px;
}
.c3-e2-flex .text-3 {
  font-weight: bold;
}
.c3-e2-flex .text-3 span {
  font-size: 30px;
}
.c3-e2-flex img {
  width: 100%;
  height: auto;
}
.c3-e2-flex .img-4 {
  width: 30%;
  position: absolute;
  top: -100px;
  right: 0;
}
.c3-f-flex {
  padding: 100px 40px;
}
.c3-f-flex .left-column {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c3-f-flex .right-column {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.c3-f-flex h2 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.c3-f-flex h2::after {
  display: inline-block;
  content: "";
  width: 70px;
  height: 1px;
  background-color: black;
  margin-left: 0.4rem;
  margin-top: 3rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c3-f-flex .text-1 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  max-height: 24em;
  margin-left: auto;
}
.c3-f-flex img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c3-f-flex .text-1 {
    max-height: 18em;
  }
  .c3-f-flex .img-4 {
    width: 50%;
  }
}

.c3-f2-flex {
  padding: 100px 40px;
}
.c3-f2-flex .left-column {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c3-f2-flex .right-column {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.c3-f2-flex h2 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.c3-f2-flex h2::after {
  display: inline-block;
  content: "";
  width: 70px;
  height: 1px;
  background-color: black;
  margin-left: 0.4rem;
  margin-top: 3rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c3-f2-flex .text-1 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  max-height: 24em;
  margin-left: auto;
}
.c3-f2-flex img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c3-f2-flex h2 {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    display: inline;
    font-size: 40px;
  }
  .c3-f2-flex h2::after {
    display: inline-block;
    margin-left: 0.6rem;
    margin-bottom: 0.6rem;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  .c3-f2-flex .text-1 {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    max-height: auto;
  }
  .c3-f2-flex .img-4 {
    width: 50%;
  }
}

.c3-g-flex {
  padding: 100px 40px;
}
.c3-g-flex .container {
  position: relative;
}
.c3-g-flex .left-column {
  position: relative;
  z-index: 1;
  left: 100px;
  margin-top: 40px;
}
.c3-g-flex .left-column-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.c3-g-flex .left-column-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.c3-g-flex .right-column {
  position: relative;
  right: 0;
}
.c3-g-flex h2 {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.c3-g-flex h2::after {
  display: inline-block;
  content: "";
  width: 70px;
  height: 1px;
  background-color: black;
  margin-left: 0.4rem;
  margin-top: 3rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c3-g-flex .text-2 {
  font-size: 1.2rem;
  font-weight: bold;
}
.c3-g-flex .text-2 span {
  font-size: 2rem;
}
.c3-g-flex img {
  width: 100%;
  height: auto;
}
.c3-g-flex .img-4 {
  display: none;
}
@media screen and (max-width: 768px) {
  .c3-g-flex .left-column {
    position: relative;
    left: 0;
  }
  .c3-g-flex .left-column-col {
    display: block;
  }
  .c3-g-flex .right-column {
    position: relative;
  }
}

.c3-g2-flex {
  padding: 100px 40px;
}
.c3-g2-flex .container {
  position: relative;
}
.c3-g2-flex .left-column {
  position: relative;
  z-index: 1;
  left: 100px;
  margin-top: 40px;
}
.c3-g2-flex .left-column-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.c3-g2-flex .left-column-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.c3-g2-flex .right-column {
  position: relative;
  right: 0;
}
.c3-g2-flex h2 {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.c3-g2-flex h2::after {
  display: inline-block;
  content: "";
  width: 70px;
  height: 1px;
  background-color: black;
  margin-left: 0.4rem;
  margin-top: 3rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c3-g2-flex .text-2 {
  font-size: 1.2rem;
  font-weight: bold;
}
.c3-g2-flex .text-2 span {
  font-size: 2rem;
}
.c3-g2-flex img {
  width: 100%;
  height: auto;
}
.c3-g2-flex .img-4 {
  display: none;
}
@media screen and (max-width: 768px) {
  .c3-g2-flex h2 {
    position: relative;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  .c3-g2-flex h2::after {
    margin-left: 0.6rem;
    margin-bottom: 0.6rem;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .c3-g2-flex .left-column {
    position: relative;
    left: 0;
  }
  .c3-g2-flex .left-column-col {
    display: block;
  }
  .c3-g2-flex .right-column {
    position: relative;
  }
  .c3-g2-flex .img-3,
  .c3-g2-flex .img-2 {
    display: none;
  }
  .c3-g2-flex .img-4 {
    display: inline;
  }
}

.c3-h-flex {
  padding: 100px 0;
}
.c3-h-flex .wrapper {
  padding: 0 40px;
}
.c3-h-flex .box {
  position: relative;
}
.c3-h-flex h2 {
  position: absolute;
  height: 300px;
  top: -100px;
  left: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: inline;
}
.c3-h-flex h2::after {
  display: inline-block;
  content: "";
  width: 70px;
  height: 1px;
  background-color: black;
  margin-left: 0.4rem;
  margin-top: 3rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c3-h-flex h3 {
  font-size: 30px;
}
.c3-h-flex .text-2 {
  font-size: 1.2rem;
  font-weight: bold;
}
.c3-h-flex .text-2 span {
  font-size: 2rem;
}
.c3-h-flex img {
  width: 100%;
  height: auto;
}
.c3-h2-flex {
  padding: 100px 0;
}
.c3-h2-flex .wrapper {
  padding: 0 40px;
}
.c3-h2-flex .box {
  position: relative;
}
.c3-h2-flex h2 {
  position: absolute;
  height: 300px;
  top: -100px;
  left: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: inline;
}
.c3-h2-flex h2::after {
  display: inline-block;
  content: "";
  width: 70px;
  height: 1px;
  background-color: black;
  margin-left: 0.4rem;
  margin-top: 3rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c3-h2-flex h3 {
  font-size: 30px;
}
.c3-h2-flex .text-2 {
  font-size: 1.2rem;
  font-weight: bold;
}
.c3-h2-flex .text-2 span {
  font-size: 2rem;
}
.c3-h2-flex img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c3-h2-flex .img-1 {
    margin-bottom: 0;
  }
}

.c3-i-flex {
  padding: 100px 0;
}
.c3-i-flex h2 {
  display: inline;
}
.c3-i-flex h2::after {
  display: inline-block;
  content: "";
  width: 70px;
  height: 1px;
  background-color: black;
  margin-left: 0.4rem;
  margin-bottom: 0.6rem;
}
.c3-i-flex img {
  width: 100%;
  height: auto;
}
.c3-i-flex .img-1 {
  width: 50%;
}
.c3-j-flex {
  padding: 100px 0;
}
.c3-j-flex h2 {
  display: inline;
}
.c3-j-flex h2::after {
  display: inline-block;
  content: "";
  width: 70px;
  height: 1px;
  background-color: black;
  margin-left: 0.4rem;
  margin-bottom: 0.6rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c3-j-flex img {
  width: 100%;
  height: auto;
}
.c3-j-flex .img-5 {
  position: relative;
  width: 33%;
  top: -100px;
  margin-left: auto;
}
.c3-j-flex .img-6 {
  width: 25%;
  margin-left: auto;
}
.c3-k-flex {
  padding: 100px 0;
}
.c3-k-flex .box {
  position: relative;
}
.c3-k-flex h2 {
  display: inline;
}
.c3-k-flex h2::after {
  display: inline-block;
  content: "";
  width: 70px;
  height: 1px;
  background-color: black;
  margin-left: 0.4rem;
  margin-bottom: 0.6rem;
}
.c3-k-flex img {
  width: 100%;
  height: auto;
}
.c3-k-flex .img-2 {
  position: relative;
  width: 33%;
  top: -100px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .c3-k-flex .img-2 {
    position: absolute;
    bottom: -50px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.c3-l-flex {
  padding: 100px 0;
}
.c3-l-flex .box {
  position: relative;
}
.c3-l-flex h2 {
  position: absolute;
  display: inline;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  height: 340px;
  margin-top: -100px;
}
.c3-l-flex h2::after {
  display: inline-block;
  content: "";
  width: 70px;
  height: 1px;
  background-color: black;
  margin-right: 0.5rem;
  margin-top: 3rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c3-l-flex img {
  width: 100%;
  height: auto;
}
.c3-l-flex .img-6 {
  margin-top: -100px;
}
.c3-l-flex figure {
  margin: 0;
}
/* CSS Document */
/* CSS Document */
.c4-a-flex {
  padding: 100px 40px;
}
.c4-a-flex img {
  width: 100%;
  height: auto;
}

.c4-b-flex {
  padding: 100px 40px;
}
.c4-b-flex img {
  width: 100%;
  height: auto;
}
.c4-b-flex .img-2 {
  margin-top: 2rem;
}
.c4-b-flex .img-3 {
  margin-top: 4rem;
}
.c4-b-flex .img-4 {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .c4-b-flex .img-1,
  .c4-b-flex .img-2,
  .c4-b-flex .img-3,
  .c4-b-flex .img-4 {
    margin-top: 0;
  }
}

.c4-c-flex {
  padding: 100px 0;
}
.c4-c-flex figure {
  margin-bottom: 0;
}
.c4-c-flex img {
  width: 100%;
  height: auto;
}

/* CSS Document */
/* CSS Document */
.c5-a-flex {
  padding: 100px 40px;
}
.c5-a-flex img {
  width: 100%;
  height: auto;
}

.c5-b-flex {
  padding: 100px 0;
}
.c5-b-flex h3 {
  display: inline;
  position: relative;
}
.c5-b-flex h3::after {
  display: inline-block;
  content: "";
  width: 70px;
  height: 1px;
  background-color: black;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
  bottom: 10px;
}
.c5-b-flex .box {
  margin-top: -150px;
}
.c5-b-flex img {
  width: 100%;
  height: auto;
}
.c5-b-flex figure {
  margin-bottom: 0;
}
.c5-c-flex {
  padding: 100px 0;
}
.c5-c-flex h2 {
  display: inline;
  position: relative;
}
.c5-c-flex h2::after {
  display: inline-block;
  content: "";
  width: 70px;
  height: 1px;
  background-color: black;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
  bottom: 10px;
}
.c5-c-flex figure {
  margin-bottom: 0;
}
.c5-c-flex img {
  width: 100%;
  height: auto;
}
.c5-c-flex .img-1,
.c5-c-flex .img-2,
.c5-c-flex .img-3 {
  margin-top: -200px;
}
.c5-c-flex .img-6 {
  margin-top: -300px;
}
@media screen and (max-width: 768px) {
  .c5-c-flex .img-1,
  .c5-c-flex .img-2,
  .c5-c-flex .img-3 {
    margin-top: 0px;
  }
  .c5-c-flex .img-6 {
    margin-top: -60px;
  }
}

/* CSS Document */
/* CSS Document */
.news-a {
  padding: 100px 40px;
}
.news-a h2 {
  text-align: center;
  margin-bottom: 40px;
}
.news-a .data {
  font-size: 14px;
}
.news-a .text-1 {
  font-size: 18px;
  margin-bottom: 1rem;
}
.news-a .link a {
  padding-right: 30px;
  text-decoration: none;
  text-align: right;
  color: #000000;
  display: block;
  height: 28px;
  background-image: url(../images/news-a/link.png);
  background-repeat: no-repeat;
  background-position: top 2px right;
  background-size: 26px 26px;
}
.news-a .link a:hover {
  opacity: 0.8;
}
.news-a .img-1 {
  position: relative;
}
.news-a .img-1::after {
  content: url(../images/news-a/label1.png);
  position: absolute;
  top: 0;
  right: 20px;
  z-index: 1;
}
.news-a .img-2 {
  position: relative;
}
.news-a .img-2::after {
  content: url(../images/news-a/label2.png);
  position: absolute;
  top: 0;
  right: 20px;
  z-index: 1;
}
.news-a .img-3 {
  position: relative;
}
.news-a .img-3::after {
  content: url(../images/news-a/label3.png);
  position: absolute;
  top: 0;
  right: 20px;
  z-index: 1;
}
.news-a img {
  width: 100%;
  height: auto;
}
.news-a .btn {
  border: 1px solid #000000;
  border-radius: 0;
  width: 33.3333333333%;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
  text-align: center;
}
.news-a .btn a {
  text-decoration: none;
  color: #000000;
  display: block;
  text-align: center;
}
.news-a .btn a:hover {
  opacity: 0.8;
}
.news-a .btn::after {
  display: block;
  content: " ";
  width: 50px;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/news-a/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  right: 10px;
}
@media screen and (max-width: 768px) {
  .news-a .btn {
    min-width: 100%;
  }
}

.news-b {
  padding: 100px 40px;
}
.news-b h2 {
  margin-bottom: 0px;
}
.news-b h3 {
  font-size: 14px;
  margin-bottom: 50px;
}
.news-b .data {
  font-size: 14px;
}
.news-b .text-1 {
  font-size: 18px;
  margin-bottom: 1rem;
}
.news-b .link a {
  padding-right: 30px;
  text-decoration: none;
  text-align: right;
  color: #000000;
  display: block;
  height: 28px;
  background-image: url(../images/news-a/link.png);
  background-repeat: no-repeat;
  background-position: top 2px right;
  background-size: 26px 26px;
}
.news-b .link a:hover {
  opacity: 0.8;
}
.news-b .img-1 {
  position: relative;
}
.news-b .img-1::after {
  content: url(../images/news-a/label1.png);
  position: absolute;
  top: 0;
  right: 20px;
  z-index: 1;
}
.news-b .img-2 {
  position: relative;
}
.news-b .img-2::after {
  content: url(../images/news-a/label2.png);
  position: absolute;
  top: 0;
  right: 20px;
  z-index: 1;
}
.news-b img {
  width: 100%;
  height: auto;
}
.news-b .btn {
  display: block;
  width: 60%;
  padding: 1rem 0;
  position: relative;
}
.news-b .btn a {
  text-decoration: none;
  color: #000000;
  display: block;
  text-align: left;
}
.news-b .btn a:hover {
  opacity: 0.8;
}
.news-b .btn::after {
  display: block;
  content: " ";
  width: 50px;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/news-a/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  right: 10px;
}
@media screen and (max-width: 768px) {
  .news-b h3 {
    margin-bottom: 10px;
  }
  .news-b .btn {
    min-width: 100%;
  }
}

.news-c {
  padding: 100px 40px;
}
.news-c h2 {
  text-align: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-top: 5rem;
  position: relative;
}
.news-c h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 100px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: relative;
  top: -115px;
  left: -50px;
}
.news-c .data {
  font-size: 14px;
}
.news-c .text-1 {
  font-size: 18px;
  margin-bottom: 1rem;
}
.news-c .link a {
  text-decoration: none;
  text-align: right;
  color: #000000;
  display: block;
  height: 28px;
  background-image: url(../images/news-c/link.png);
  background-repeat: no-repeat;
  background-position: top 11px right 4rem;
  background-size: 10px 10px;
}
.news-c .link a:hover {
  opacity: 0.8;
}
.news-c .img-1 {
  position: relative;
}
.news-c .img-1::after {
  content: url(../images/news-c/label1.png);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.news-c .img-2 {
  position: relative;
}
.news-c .img-2::after {
  content: url(../images/news-c/label2.png);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.news-c img {
  width: 100%;
  height: auto;
}
.news-c .btn {
  width: 60%;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
  text-align: center;
  display: block;
}
.news-c .btn a {
  text-decoration: none;
  color: #000000;
  display: block;
  text-align: center;
}
.news-c .btn a:hover {
  opacity: 0.8;
}
.news-c .btn::after {
  display: block;
  content: " ";
  width: 50px;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/news-c/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  right: 10px;
}
@media screen and (max-width: 990px) {
  .news-c .hgroup {
    position: absolute;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .news-c h2 {
    font-size: 24px;
    margin-top: 2rem;
  }
  .news-c h3 {
    font-size: 14px;
    top: 4rem;
    left: 0;
  }
  .news-c .btn {
    min-width: 100%;
  }
}

.news-d {
  padding: 100px 40px;
}
.news-d .grid-container-12 {
  margin-bottom: 40px;
}
.news-d .grid-row-1 {
  grid-row: 1/3;
  grid-column: 1/7;
}
.news-d .grid-row-2 {
  grid-row: 1/2;
  grid-column: 7/10;
}
.news-d .grid-row-3 {
  grid-row: 1/2;
  grid-column: 10/13;
}
.news-d .grid-row-4 {
  grid-row: 2/3;
  grid-column: 7/13;
}
.news-d h2 {
  text-align: center;
  margin-bottom: 40px;
}
.news-d h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 100px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: relative;
  top: -115px;
  left: -50px;
}
.news-d .data {
  font-size: 14px;
}
.news-d .text-1 {
  font-size: 18px;
  margin-bottom: 1rem;
}
.news-d .link a {
  text-decoration: none;
  text-align: right;
  color: #000000;
  display: block;
  height: 28px;
  background-image: url(../images/news-c/link.png);
  background-repeat: no-repeat;
  background-position: top 11px right 4rem;
  background-size: 10px 10px;
}
.news-d .link a:hover {
  opacity: 0.8;
}
.news-d .img-1 {
  position: relative;
}
.news-d .img-1::after {
  content: url(../images/news-d/label1.png);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.news-d .img-2 {
  position: relative;
}
.news-d .img-2::after {
  content: url(../images/news-d/label2.png);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.news-d .img-3 {
  position: relative;
}
.news-d .img-3::after {
  content: url(../images/news-d/label3.png);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.news-d img {
  width: 100%;
  height: auto;
}
.news-d .btn {
  border: 1px solid #000000;
  width: 60%;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
  text-align: center;
  display: block;
}
.news-d .btn a {
  text-decoration: none;
  color: #000000;
  display: block;
  text-align: center;
}
.news-d .btn a:hover {
  opacity: 0.8;
}
.news-d .btn::after {
  display: block;
  content: " ";
  width: 50px;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/news-d/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  right: 10px;
}
@media screen and (max-width: 768px) {
  .news-d .grid-container-12 {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .news-d .grid-row-1 {
    grid-row: 1/2;
    grid-column: 1/13;
    margin-bottom: 40px;
  }
  .news-d .grid-row-2 {
    grid-row: 2/3;
    grid-column: 1/13;
    margin-bottom: 40px;
  }
  .news-d .grid-row-3 {
    grid-row: 3/4;
    grid-column: 1/13;
    margin-bottom: 40px;
  }
  .news-d .grid-row-4 {
    grid-row: 4/5;
    grid-column: 1/13;
  }
  .news-d h2 {
    font-size: 24px;
    margin-top: 2rem;
  }
  .news-d h3 {
    font-size: 14px;
    top: 4rem;
    left: 0;
  }
  .news-d .btn {
    min-width: 100%;
  }
}

.news-e {
  padding: 100px 40px;
}
.news-e h2 {
  text-align: center;
  margin-bottom: 40px;
}
.news-e h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 100px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: relative;
  top: -115px;
  left: -50px;
}
.news-e .text-block {
  padding-left: 1rem;
}
.news-e .text-1 {
  font-size: 18px;
  margin-bottom: 1rem;
}
.news-e .img-1 {
  position: relative;
}
.news-e .img-2 {
  position: relative;
}
.news-e .img-3 {
  position: relative;
}
.news-e .img-4 {
  position: relative;
}
.news-e img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .news-e h2 {
    font-size: 24px;
    margin-top: 2rem;
  }
  .news-e h3 {
    font-size: 14px;
    top: 4rem;
    left: 0;
  }
  .news-e .text-block {
    padding-left: 0;
  }
}

.news-f {
  padding: 100px 40px;
}
.news-f h2 {
  text-align: center;
  margin-bottom: 40px;
}
.news-f h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 100px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: relative;
  top: -115px;
  left: -50px;
}
.news-f .text-block {
  padding-left: 1rem;
}
.news-f .data {
  font-size: 14px;
}
.news-f .text-1 {
  font-size: 18px;
  margin-bottom: 1rem;
}
.news-f .link a {
  text-decoration: none;
  text-align: right;
  color: #000000;
  display: block;
  height: 28px;
  background-image: url(../images/news-f/link.png);
  background-repeat: no-repeat;
  background-position: top 11px right 4rem;
  background-size: 10px 10px;
}
.news-f .link a:hover {
  opacity: 0.8;
}
.news-f .img-1 {
  position: relative;
}
.news-f .img-1::after {
  content: url(../images/news-f/label1.png);
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 1;
}
.news-f .img-2 {
  position: relative;
}
.news-f .img-2::after {
  content: url(../images/news-f/label2.png);
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 1;
}
.news-f .img-3 {
  position: relative;
}
.news-f .img-3::after {
  content: url(../images/news-f/label3.png);
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 1;
}
.news-f .img-4 {
  position: relative;
}
.news-f .img-4::after {
  content: url(../images/news-f/label4.png);
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 1;
}
.news-f img {
  width: 100%;
  height: auto;
}
.news-f .btn {
  border: 1px solid #000000;
  width: 60%;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
  text-align: center;
  display: block;
}
.news-f .btn a {
  text-decoration: none;
  color: #000000;
  display: block;
  text-align: center;
}
.news-f .btn a:hover {
  opacity: 0.8;
}
.news-f .btn::after {
  display: block;
  content: " ";
  width: 50px;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/news-f/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  right: 10px;
}
@media screen and (max-width: 768px) {
  .news-f .text-block {
    padding-left: 0;
  }
  .news-f h2 {
    font-size: 24px;
    margin-top: 2rem;
  }
  .news-f h3 {
    font-size: 14px;
    top: 4rem;
    left: 0;
  }
  .news-f .btn {
    min-width: 100%;
  }
}

.news-g {
  padding: 100px 40px;
}
.news-g h2 {
  text-align: center;
  margin-bottom: 40px;
}
.news-g h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 100px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: relative;
  top: -115px;
  left: -50px;
}
.news-g .date {
  font-size: 11.2px;
  margin-bottom: 6px;
}
.news-g .text-1 {
  font-size: 14.4px;
  margin-bottom: 1rem;
}
.news-g .link a {
  font-size: 11.2px;
  text-decoration: none;
  text-align: right;
  color: #000000;
  display: block;
  height: 28px;
  background-image: url(../images/news-f/link.png);
  background-repeat: no-repeat;
  background-position: top 5px right 3rem;
  background-size: 10px 10px;
}
.news-g .link a:hover {
  opacity: 0.8;
}
.news-g .img-1 {
  position: relative;
}
.news-g .img-1::after {
  content: url(../images/news-f/label1.png);
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 1;
}
.news-g .img-2 {
  position: relative;
}
.news-g .img-2::after {
  content: url(../images/news-f/label2.png);
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 1;
}
.news-g .img-3 {
  position: relative;
}
.news-g .img-3::after {
  content: url(../images/news-f/label3.png);
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 1;
}
.news-g .img-4 {
  position: relative;
}
.news-g .img-4::after {
  content: url(../images/news-f/label4.png);
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 1;
}
.news-g img {
  width: 100%;
  height: auto;
}
.news-g .btn {
  border: 1px solid #000000;
  width: 60%;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
  text-align: center;
  display: block;
}
.news-g .btn a {
  text-decoration: none;
  color: #000000;
  display: block;
  text-align: center;
}
.news-g .btn a:hover {
  opacity: 0.8;
}
.news-g .btn::after {
  display: block;
  content: " ";
  width: 50px;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/news-f/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  right: 10px;
}
@media screen and (max-width: 768px) {
  .news-g h2 {
    font-size: 24px;
    margin-top: 2rem;
  }
  .news-g h3 {
    font-size: 14px;
    top: 4rem;
    left: 0;
  }
  .news-g .btn {
    min-width: 100%;
  }
}

.news-h {
  padding: 100px 40px;
}
.news-h h2 {
  margin-bottom: 40px;
}
.news-h .text-block {
  padding: 2rem 0;
  border-bottom: 1px solid #cccccc;
}
.news-h .text-block:nth-child(1) {
  border-top: 1px solid #cccccc;
}
.news-h .grid-row-1 {
  width: 100%;
}
.news-h .date {
  display: inline-block;
  width: 10%;
}
.news-h .text-1 {
  display: inline-block;
  width: 86%;
}
.news-h .text-1 a {
  text-decoration: none;
  color: #000000;
}
.news-h .link {
  display: inline-block;
  width: 3%;
}
.news-h .btn {
  border: 1px solid #000000;
  width: 60%;
  margin: 40px auto 0;
  padding: 1rem;
  position: relative;
  text-align: center;
  display: block;
}
.news-h .btn a {
  text-decoration: none;
  color: #000000;
  display: block;
  text-align: center;
}
.news-h .btn a:hover {
  opacity: 0.8;
}
.news-h .btn::after {
  display: block;
  content: " ";
  width: 50px;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/news-f/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  right: 10px;
}
@media screen and (max-width: 768px) {
  .news-h .date {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
  .news-h .text-1 {
    display: inline-block;
    width: 90%;
    line-height: 1.5;
  }
  .news-h .text-1 a {
    text-decoration: none;
    color: #000000;
  }
  .news-h .link {
    display: inline-block;
    width: 5%;
    text-align: right;
  }
}

.news-i {
  padding: 100px 40px;
}
.news-i h2 {
  margin-bottom: 40px;
}
.news-i .text-block {
  padding: 2rem 0;
  border-bottom: 1px solid #cccccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-i .text-block:nth-child(1) {
  border-top: 1px solid #cccccc;
}
.news-i .icon_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25%;
}
.news-i .icon {
  display: inline-block;
  width: 50px;
  margin-right: 10px;
}
.news-i .date {
  display: inline-block;
  width: calc(100% - 60px);
}
.news-i .text-1 {
  display: inline-block;
  width: 66.6666666667%;
}
.news-i .text-1 a {
  text-decoration: none;
  color: #000000;
}
.news-i .link {
  display: inline-block;
  width: 8.3333333333%;
}
.news-i .btn {
  border: 1px solid #000000;
  width: 60%;
  margin: 40px auto 0;
  padding: 1rem;
  position: relative;
  text-align: center;
  display: block;
}
.news-i .btn a {
  text-decoration: none;
  color: #000000;
  display: block;
  text-align: center;
}
.news-i .btn a:hover {
  opacity: 0.8;
}
.news-i .btn::after {
  display: block;
  content: " ";
  width: 50px;
  height: calc(3rem + 9px);
  position: absolute;
  z-index: 1;
  background-image: url(../images/news-f/btn.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  top: 0;
  right: 10px;
}
@media screen and (max-width: 1150px) {
  .news-i .icon_block {
    width: 100%;
    margin-bottom: 20px;
  }
  .news-i .text-1 {
    width: 100%;
    margin-bottom: 1rem;
    line-height: 2;
  }
  .news-i .link {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .news-i h2 {
    font-size: 24px;
  }
  .news-i .btn {
    width: 100%;
  }
}

.news-j {
  padding: 0 30px;
}
.news-j ul {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
.news-j ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #cccccc;
}
.news-j ul li a {
  color: #000;
  text-decoration: none;
  font-size: 1.2rem;
}
.news-j ul li a:hover {
  opacity: 0.8;
}

.pagination {
  margin-top: 20px;
}
.pagination span {
  border: 1px solid #333333;
  padding: 0.3rem 0.5rem;
}
.pagination a {
  border: 1px solid #cccccc;
  padding: 0.3rem 0.5rem;
  text-decoration: none;
  color: #333333;
  background-color: #fcfcfc;
}
.pagination .current {
  border: none;
}

/* CSS Document */
/* CSS Document */
.ul-a {
  padding: 0;
}
.ul-a li {
  display: inline-block;
  width: auto;
  padding-right: 4rem;
  position: relative;
}
.ul-a li::after {
  display: inline-block;
  content: "";
  width: 30px;
  height: 1px;
  background-color: #333333;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
  position: absolute;
  top: 20px;
  right: 1rem;
}
.ul-a li:last-child {
  padding-right: 1rem;
}
.ul-a li:last-child::after {
  display: none;
}
.ul-a li a {
  text-decoration: none;
  color: #333333;
  display: block;
  text-align: center;
  font-size: 22px;
}
i .ul-a li a:hover {
  opacity: 0.8;
}
.ul-a li a span {
  display: block;
  font-size: 12px;
  text-align: center;
}

.ul-b {
  padding: 0;
}
.ul-b li a {
  text-decoration: none;
  color: #ffffff;
  display: block;
  margin-bottom: 1rem;
  font-size: 24px;
}
.ul-b li a:hover {
  opacity: 0.8;
}
.ul-b li a span {
  font-size: 0.5rem;
  margin-left: 0.5rem;
}

.ul-c {
  padding: 0;
}
.ul-c li {
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  width: 3rem;
}
.ul-c li a {
  text-decoration: none;
  color: #000000;
}
.ul-c li a:hover {
  opacity: 0.8;
}
.ul-c li a span {
  font-size: 0.5rem;
  display: block;
}

.ul-d {
  padding: 0;
}
.ul-d li {
  display: inline-block;
  width: 6rem;
  border-right: 1px solid #cccccc;
  text-align: center;
  padding: 0 10px;
}
.ul-d li a {
  text-decoration: none;
  color: #000000;
}
.ul-d li a:hover {
  opacity: 0.8;
}
.ul-d li a span {
  display: block;
  text-align: center;
}
.ul-d li a span.li-icon {
  margin-bottom: 0.5rem;
}
.ul-d li a span.li-icon img {
  width: 100%;
  height: auto;
}
.ul-d li a span.li-title {
  font-size: 1rem;
}
.ul-d li a span.li-subtitle {
  font-size: 0.5rem;
}

.ul-sns-a {
  padding: 0;
}
.ul-sns-a li {
  display: inline-block;
  margin: 0 4px;
}
.ul-sns-a li img {
  width: 40px;
  height: auto;
}
.ul-sns-a a {
  color: #ffffff;
  text-decoration: none;
}

.ul-sns-b {
  padding: 0;
}
.ul-sns-b li {
  margin-bottom: 10px;
}
.ul-sns-b li img {
  width: 30px;
  height: auto;
}

#hamburgermenu.hamburger-a .hamburger-inner {
  width: 60px;
  height: 60px;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #bc004c;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 110;
}
#hamburgermenu.hamburger-a .hamburger-inner .hamburger {
  width: 30px;
  height: 18px;
}
#hamburgermenu.hamburger-a .hamburger-inner .hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  margin-bottom: 6px;
}
#hamburgermenu.hamburger-a .hamburger-inner .hamburger span:first-child {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#hamburgermenu.hamburger-a .hamburger-inner .hamburger span:nth-child(2) {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#hamburgermenu.hamburger-a .hamburger-inner .hamburger span:nth-child(3) {
  margin-bottom: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#hamburgermenu.hamburger-a .hamburger-inner .hamburger.active span {
  display: block;
  width: 40px;
  background-color: #ffffff;
}
#hamburgermenu.hamburger-a .hamburger-inner .hamburger.active span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
  top: 8px;
  left: -4px;
}
#hamburgermenu.hamburger-a .hamburger-inner .hamburger.active span:nth-child(2) {
  display: none;
  position: relative;
  right: 100px;
}
#hamburgermenu.hamburger-a .hamburger-inner .hamburger.active span:nth-child(3) {
  margin-bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
  top: 0px;
  left: -4px;
}
#hamburgermenu.hamburger-a .hamburger-nav {
  display: none;
  width: 100%;
  height: 100vh;
  background-color: #bc004c;
  color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#hamburgermenu.hamburger-a .hamburger-nav.active {
  display: grid;
  width: 100%;
  height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tel-a {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.1;
}
.tel-a span {
  font-size: 1rem;
}
.tel-a a {
  text-decoration: none;
  color: #bc004c;
  font-size: 40px;
}
.tel-a a:hover {
  opacity: 0.8;
}
.tel-a a span {
  font-size: 25px;
}
@media screen and (max-width: 1600px) {
  .tel-a a {
    color: #ffffff;
  }
}

.footer-a {
  padding: 60px 0;
  position: relative;
}
.footer-a .gap {
  grid-column: span 2;
}
.footer-a .ul-a {
  padding: 0;
  display: inline-block;
}
.footer-a .ul-a li {
  display: inline-block;
  width: auto;
  padding-right: 2rem;
  position: relative;
}
.footer-a .ul-a li::after {
  display: none;
  content: "";
  width: 40px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 20px;
  right: 1rem;
}
.footer-a .ul-a li a {
  text-decoration: none;
  display: block;
  text-align: center;
}
.footer-a .ul-a li a:hover {
  opacity: 0.8;
}
.footer-a .ul-a li a span {
  display: block;
  font-size: 0.5rem;
  text-align: center;
}
.footer-a #totop {
  position: absolute;
  top: -100px;
  right: calc((100% - 1160px) / 2);
}
.footer-a #totop a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .footer-a {
    padding: 40px;
  }
  .footer-a .grid-container-12 {
    gap: 0;
  }
  .footer-a .grid-row-1 {
    grid-column: span 5;
  }
  .footer-a .grid-row-2 {
    grid-column: span 12;
  }
  .footer-a .grid-row-3 {
    grid-column: span 12;
  }
  .footer-a .ul-a li {
    display: block;
    margin-bottom: 0.5rem;
  }
  .footer-a .ul-a li a {
    text-align: left;
  }
  .footer-a .ul-a li a span {
    text-align: left;
  }
  .footer-a .nav-1 {
    margin-top: 3rem;
  }
  .footer-a #totop {
    position: absolute;
    width: 40px;
    height: auto;
    top: -20px;
    right: 20px;
  }
  .footer-a #totop img {
    width: 100%;
    height: auto;
  }
}

.footer-b {
  padding: 60px 0;
  background-color: #cccccc;
  position: relative;
}
.footer-b .grid-row-1 {
  max-width: 300px;
  margin: 0 auto 40px;
}
.footer-b .grid-row-2 {
  margin: 0 auto 40px;
}
.footer-b .grid-row-3 {
  margin: 0 auto;
}
.footer-b .ul-a {
  padding: 0;
  display: inline-block;
}
.footer-b .ul-a li {
  display: inline-block;
  width: auto;
  padding-right: 2rem;
  position: relative;
}
.footer-b .ul-a li::after {
  display: none;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 20px;
  right: 1rem;
}
.footer-b .ul-a li a {
  text-decoration: none;
  color: #000000;
  display: block;
  text-align: center;
}
.footer-b .ul-a li a:hover {
  opacity: 0.8;
}
.footer-b .ul-a li a span {
  display: block;
  font-size: 0.5rem;
  text-align: center;
}
.footer-b #totop {
  position: absolute;
  top: -40px;
  right: calc((100% - 1160px) / 2);
}
.footer-b #totop a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .footer-b {
    padding: 40px;
  }
  .footer-b .grid-row-1 {
    grid-column: span 12;
  }
  .footer-b .grid-row-2 {
    grid-column: span 1;
    width: 100%;
  }
  .footer-b .grid-row-3 {
    grid-column: span 12;
  }
  .footer-b .ul-a {
    width: 100%;
  }
  .footer-b .ul-a .nav-1 {
    width: 100%;
  }
  .footer-b .ul-a li {
    display: block;
    margin-bottom: 0.5rem;
    padding-right: 0;
  }
  .footer-b .ul-a li a {
    text-align: center;
    display: block;
    width: 100%;
  }
  .footer-b .ul-a li a span {
    text-align: center;
  }
  .footer-b #totop {
    position: absolute;
    width: 40px;
    height: auto;
    top: -20px;
    right: 20px;
  }
  .footer-b #totop img {
    width: 100%;
    height: auto;
  }
}

.footer-c {
  padding: 60px 0;
  background-color: #cccccc;
  position: relative;
}
.footer-c .grid-row-1 {
  margin-bottom: 20px;
}
.footer-c .grid-row-2 {
  grid-row: 2/3;
}
.footer-c .grid-row-3 {
  grid-row: 2/3;
}
.footer-c .ul-a {
  padding: 0;
  display: inline-block;
}
.footer-c .ul-a li {
  display: inline-block;
  width: auto;
  padding-right: 1rem;
  padding-left: 1rem;
  position: relative;
  border-right: 1px solid #000000;
}
.footer-c .ul-a li::after {
  display: none;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 20px;
  right: 1rem;
}
.footer-c .ul-a li a {
  text-decoration: none;
  color: #000000;
  display: block;
  text-align: center;
}
.footer-c .ul-a li a:hover {
  opacity: 0.8;
}
.footer-c .ul-a li a span {
  display: block;
  font-size: 0.5rem;
  text-align: center;
}
.footer-c #totop {
  position: absolute;
  bottom: 60px;
  right: calc((100% - 1160px) / 2);
}
.footer-c #totop a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .footer-c {
    padding: 40px;
  }
  .footer-c .grid-row-1 {
    grid-column: span 12;
  }
  .footer-c .grid-row-2 {
    grid-column: span 12;
    width: 100%;
  }
  .footer-c .grid-row-3 {
    grid-row: 3/4;
    grid-column: span 12;
  }
  .footer-c .ul-a li {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding-right: 2rem;
  }
  .footer-c .ul-a li a {
    text-align: center;
  }
  .footer-c .ul-a li a span {
    text-align: center;
  }
  .footer-c .ul-sns-a {
    margin: 0 auto;
  }
  .footer-c .ul-sns-a img {
    width: 25px;
    height: auto;
  }
  .footer-c #totop {
    position: absolute;
    width: 40px;
    height: auto;
    bottom: 40px;
    right: 20px;
  }
  .footer-c #totop img {
    width: 100%;
    height: auto;
  }
}

.footer-d {
  padding: 60px 0;
  background-color: #cccccc;
  position: relative;
}
.footer-d .grid-row-1 {
  margin-bottom: 20px;
}
.footer-d .grid-row-1 img {
  max-width: 300px;
}
.footer-d .nav-2 {
  margin-bottom: 2rem;
}
.footer-d .nav-2 img {
  width: 30px;
  height: auto;
}
.footer-d .ul-a {
  padding: 0;
  display: inline-block;
}
.footer-d .ul-a li {
  display: inline-block;
  width: auto;
  padding-right: 1rem;
  padding-left: 1rem;
  position: relative;
  border-right: 1px solid #000000;
}
.footer-d .ul-a li::after {
  display: none;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 20px;
  right: 1rem;
}
.footer-d .ul-a li a {
  text-decoration: none;
  color: #000000;
  display: block;
  text-align: center;
}
.footer-d .ul-a li a:hover {
  opacity: 0.8;
}
.footer-d .ul-a li a span {
  display: block;
  font-size: 0.5rem;
  text-align: center;
}
.footer-d .tel-a {
  margin-bottom: 20px;
}
.footer-d .tel-a a {
  font-size: 36px;
}
.footer-d .tel-a p {
  margin-bottom: 0;
  line-height: 1rem;
  font-size: 0.8rem;
}
.footer-d .footer-shopinfo table {
  width: 100%;
  margin-bottom: 2rem;
}
.footer-d .footer-shopinfo table tr td {
  padding: 0.5rem 0.5rem 0.5rem 0;
  min-width: 6rem;
}
.footer-d #totop {
  position: absolute;
  top: -40px;
  right: calc((100% - 1160px) / 2);
}
.footer-d #totop a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .footer-d {
    padding: 40px;
  }
  .footer-d .grid-container-12 {
    gap: 0;
  }
  .footer-d .grid-row-1 {
    grid-column: span 12;
  }
  .footer-d .grid-row-2 {
    grid-column: span 12;
    width: 100%;
  }
  .footer-d .grid-row-3 {
    grid-row: 3/4;
    grid-column: span 12;
  }
  .footer-d .ul-a li {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding-right: 2rem;
  }
  .footer-d .ul-a li a {
    text-align: center;
  }
  .footer-d .ul-a li a span {
    text-align: center;
  }
  .footer-d .ul-sns-a {
    margin: 0 auto;
  }
  .footer-d .ul-sns-a img {
    width: 25px;
    height: auto;
  }
  .footer-d .tel-a {
    margin-bottom: 20px;
  }
  .footer-d .tel-a a {
    font-size: 26px;
  }
  .footer-d .tel-a a span {
    display: block;
  }
  .footer-d .tel-a p {
    margin-bottom: 10px;
  }
  .footer-d #totop {
    position: absolute;
    width: 40px;
    height: auto;
    bottom: 40px;
    right: 20px;
  }
  .footer-d #totop img {
    width: 100%;
    height: auto;
  }
}

.footer-e {
  padding: 60px 0;
  background-color: #cccccc;
  position: relative;
}
.footer-e .grid-row-1 {
  margin-bottom: 20px;
}
.footer-e .grid-row-1 img {
  max-width: 300px;
}
.footer-e .nav-2 {
  margin-bottom: 2rem;
}
.footer-e .nav-2 img {
  width: 30px;
  height: auto;
}
.footer-e .ul-a {
  padding: 0;
  display: inline-block;
  margin-left: -1rem;
}
.footer-e .ul-a li {
  display: inline-block;
  width: auto;
  padding-right: 2rem;
  padding-left: 1rem;
  position: relative;
}
.footer-e .ul-a li::after {
  display: block;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 20px;
  right: -1rem;
}
.footer-e .ul-a li a {
  text-decoration: none;
  color: #000000;
  display: block;
  text-align: center;
}
.footer-e .ul-a li a:hover {
  opacity: 0.8;
}
.footer-e .ul-a li a span {
  display: block;
  font-size: 0.5rem;
  text-align: center;
}
.footer-e .tel-a {
  margin-bottom: 20px;
}
.footer-e .tel-a a {
  font-size: 36px;
}
.footer-e .tel-a p {
  margin-bottom: 0;
  line-height: 1rem;
  font-size: 0.8rem;
}
.footer-e .footer-shopinfo table {
  width: 100%;
  margin-bottom: 2rem;
}
.footer-e .footer-shopinfo table tr td {
  padding: 0.5rem 0.5rem 0.5rem 0;
  min-width: 6rem;
}
.footer-e #totop {
  position: absolute;
  top: -40px;
  right: calc((100% - 1160px) / 2);
}
.footer-e #totop a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .footer-e {
    padding: 40px;
  }
  .footer-e .grid-container-12 {
    gap: 0;
  }
  .footer-e .grid-row-1 {
    grid-column: span 12;
  }
  .footer-e .grid-row-2 {
    grid-column: span 12;
    width: 100%;
    margin-bottom: 2rem;
  }
  .footer-e .grid-row-3 {
    grid-row: 3/4;
    grid-column: span 12;
  }
  .footer-e .grid-row-4 {
    grid-row: 4/5;
    grid-column: span 12;
  }
  .footer-e .ul-a {
    margin-left: -1rem;
  }
  .footer-e .ul-a li {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .footer-e .ul-a li::after {
    -webkit-transform: rotate(-55deg);
            transform: rotate(-55deg);
    width: 30px;
  }
  .footer-e .ul-a li a {
    text-align: center;
  }
  .footer-e .ul-a li a span {
    text-align: center;
  }
  .footer-e .ul-sns-a {
    margin: 0 auto;
  }
  .footer-e .ul-sns-a img {
    width: 25px;
    height: auto;
  }
  .footer-e .tel-a {
    margin-bottom: 20px;
  }
  .footer-e .tel-a a {
    font-size: 26px;
  }
  .footer-e .tel-a a span {
    display: block;
  }
  .footer-e .tel-a p {
    margin-bottom: 10px;
  }
  .footer-e #totop {
    position: absolute;
    width: 40px;
    height: auto;
    bottom: 40px;
    right: 20px;
  }
  .footer-e #totop img {
    width: 100%;
    height: auto;
  }
}

.footer-f {
  padding: 100px 0 0;
  background-color: #cccccc;
  position: relative;
}
.footer-f .grid-wrapper {
  background-color: #333333;
  padding: 2rem 0 1rem;
}
.footer-f .grid-row-1 {
  margin-bottom: 20px;
  text-align: center;
}
.footer-f .grid-row-1 img {
  max-width: 300px;
}
.footer-f .grid-row-2 {
  margin-bottom: 20px;
}
.footer-f .tel-a {
  text-align: center;
}
.footer-f .tel-a p {
  text-align: center;
}
.footer-f .footer-shopinfo {
  width: 50%;
  margin: 0 auto 100px;
}
.footer-f .nav-2 {
  margin-bottom: 2rem;
}
.footer-f .nav-2 img {
  width: 30px;
  height: auto;
}
.footer-f .ul-a {
  padding: 0;
  display: inline-block;
  margin-left: -1rem;
}
.footer-f .ul-a li {
  display: inline-block;
  width: auto;
  padding-right: 2rem;
  padding-left: 1rem;
  position: relative;
}
.footer-f .ul-a li::after {
  display: block;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #cccccc;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
  position: absolute;
  top: 20px;
  right: -1rem;
}
.footer-f .ul-a li a {
  text-decoration: none;
  color: #cccccc;
  display: block;
  text-align: center;
}
.footer-f .ul-a li a:hover {
  opacity: 0.8;
}
.footer-f .ul-a li a span {
  display: block;
  font-size: 0.5rem;
  text-align: center;
}
.footer-f .tel-a {
  margin-bottom: 20px;
}
.footer-f .tel-a a {
  font-size: 36px;
}
.footer-f .tel-a p {
  margin-bottom: 0;
  line-height: 1rem;
  font-size: 0.8rem;
}
.footer-f .footer-shopinfo table {
  width: 100%;
  margin-bottom: 2rem;
}
.footer-f .footer-shopinfo table tr td {
  padding: 0.5rem 0.5rem 0.5rem 0;
  min-width: 6rem;
}
.footer-f #totop {
  position: absolute;
  top: -40px;
  right: calc((100% - 1160px) / 2);
}
.footer-f #totop a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .footer-f {
    padding: 40px;
  }
  .footer-f .grid-container-12 {
    gap: 0;
  }
  .footer-f .grid-row-1 {
    grid-column: span 12;
  }
  .footer-f .grid-row-2 {
    grid-column: span 12;
    width: 100%;
    margin-bottom: 2rem;
  }
  .footer-f .grid-row-3 {
    grid-row: 3/4;
    grid-column: span 12;
  }
  .footer-f .grid-row-4 {
    grid-row: 4/5;
    grid-column: span 12;
  }
  .footer-f .ul-a {
    margin-left: -1rem;
  }
  .footer-f .ul-a li {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .footer-f .ul-a li::after {
    -webkit-transform: rotate(-55deg);
            transform: rotate(-55deg);
    width: 30px;
  }
  .footer-f .ul-a li a {
    text-align: center;
  }
  .footer-f .ul-a li a span {
    text-align: center;
  }
  .footer-f .ul-sns-a {
    margin: 0 auto;
  }
  .footer-f .ul-sns-a img {
    width: 25px;
    height: auto;
  }
  .footer-f .tel-a {
    margin-bottom: 20px;
  }
  .footer-f .tel-a a {
    font-size: 26px;
  }
  .footer-f .tel-a a span {
    display: block;
  }
  .footer-f .tel-a p {
    margin-bottom: 10px;
  }
  .footer-f #totop {
    position: absolute;
    width: 40px;
    height: auto;
    bottom: 40px;
    right: 20px;
  }
  .footer-f #totop img {
    width: 100%;
    height: auto;
  }
}

.footer-g {
  padding: 100px 0;
  background-color: #cccccc;
  position: relative;
}
.footer-g .grid-row-1 {
  margin-bottom: 20px;
}
.footer-g .grid-row-1 img {
  max-width: 300px;
}
.footer-g .grid-row-2 {
  margin-bottom: 20px;
  display: block;
  -ms-flex-item-align: end;
      align-self: end;
  justify-self: end;
}
.footer-g .footer-shopinfo {
  width: 100%;
}
.footer-g .nav-2 {
  margin-bottom: 2rem;
}
.footer-g .nav-2 img {
  width: 30px;
  height: auto;
}
.footer-g .ul-a {
  padding: 0;
  display: inline-block;
  margin-left: -1rem;
}
.footer-g .ul-a li {
  display: inline-block;
  width: auto;
  padding-right: 2rem;
  padding-left: 1rem;
  position: relative;
}
.footer-g .ul-a li::after {
  display: block;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #cccccc;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
  position: absolute;
  top: 20px;
  right: -1rem;
}
.footer-g .ul-a li a {
  text-decoration: none;
  color: #cccccc;
  display: block;
  text-align: center;
}
.footer-g .ul-a li a:hover {
  opacity: 0.8;
}
.footer-g .ul-a li a span {
  display: block;
  font-size: 0.5rem;
  text-align: center;
}
.footer-g .tel-a {
  margin-bottom: 20px;
}
.footer-g .tel-a a {
  font-size: 36px;
}
.footer-g .tel-a p {
  margin-bottom: 0;
  line-height: 1rem;
  font-size: 0.8rem;
}
.footer-g .footer-shopinfo table {
  width: 100%;
  margin-bottom: 2rem;
}
.footer-g .footer-shopinfo table tr td {
  padding: 0.4rem 0.5rem 0.4rem 0;
  min-width: 4rem;
}
.footer-g #totop {
  position: absolute;
  top: -40px;
  right: calc((100% - 1160px) / 2);
}
.footer-g #totop a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .footer-g {
    padding: 40px;
  }
  .footer-g .grid-container-12 {
    gap: 0;
  }
  .footer-g .grid-row-1 {
    grid-column: span 12;
  }
  .footer-g .grid-row-2 {
    grid-column: span 12;
    width: 100%;
    margin-bottom: 2rem;
  }
  .footer-g .grid-row-3 {
    grid-row: 3/4;
    grid-column: span 12;
  }
  .footer-g .grid-row-4 {
    grid-row: 4/5;
    grid-column: span 12;
  }
  .footer-g .ul-a {
    margin-left: -1rem;
  }
  .footer-g .ul-a li {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .footer-g .ul-a li::after {
    -webkit-transform: rotate(-55deg);
            transform: rotate(-55deg);
    width: 30px;
  }
  .footer-g .ul-a li a {
    text-align: center;
  }
  .footer-g .ul-a li a span {
    text-align: center;
  }
  .footer-g .ul-sns-a {
    margin: 0 auto;
  }
  .footer-g .ul-sns-a img {
    width: 25px;
    height: auto;
  }
  .footer-g .tel-a {
    margin-bottom: 20px;
  }
  .footer-g .tel-a a {
    font-size: 26px;
  }
  .footer-g .tel-a a span {
    display: block;
  }
  .footer-g .tel-a p {
    margin-bottom: 10px;
  }
  .footer-g #totop {
    position: absolute;
    width: 40px;
    height: auto;
    bottom: 40px;
    right: 20px;
  }
  .footer-g #totop img {
    width: 100%;
    height: auto;
  }
}

/* CSS Document */
/* CSS Document */
.loading-img {
  background-color: #000000;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-rows: repeat(1, 1fr);
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  -webkit-transition: all 1s;
  transition: all 1s;
  position: fixed;
  top: 0;
  left: 0;
}
.loading-img.anime1 {
  opacity: 0;
}
.loading-img.anime2 {
  display: none;
}

.loader1,
.loader1:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loader1 {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load1 1.1s infinite linear;
  animation: load1 1.1s infinite linear;
}

@-webkit-keyframes load1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.loader2,
.loader2:before,
.loader2:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load2 1.8s infinite ease-in-out;
  animation: load2 1.8s infinite ease-in-out;
}

.loader2 {
  color: #ffffff;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader2:before,
.loader2:after {
  content: "";
  position: absolute;
  top: 0;
}

.loader2:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader2:after {
  left: 3.5em;
}

@-webkit-keyframes load2 {
  0%, 80%, 100% {
    -webkit-box-shadow: 0 2.5em 0 -1.3em;
            box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    -webkit-box-shadow: 0 2.5em 0 0;
            box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load2 {
  0%, 80%, 100% {
    -webkit-box-shadow: 0 2.5em 0 -1.3em;
            box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    -webkit-box-shadow: 0 2.5em 0 0;
            box-shadow: 0 2.5em 0 0;
  }
}
/* CSS Document */
/* CSS Document */
.firstview-a {
  width: 100%;
  overflow-x: hidden;
}
.firstview-a .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 40px 0 40px;
  background: #ffffff;
}
.firstview-a .header-logo {
  width: 30%;
  margin: 0;
  height: 40px;
}
.firstview-a .header-nav1 {
  padding: 20px 40px 0 0;
  height: 80px;
  margin-left: auto;
}
.firstview-a .header-nav1 nav ul.ul-a li {
  padding-right: 1rem;
  padding-left: 1rem;
  padding-bottom: 40px;
}
.firstview-a .header-nav1 nav ul.ul-a li::after {
  opacity: 0;
  width: 0;
  top: inherit;
  bottom: 2px;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.firstview-a .header-nav1 nav ul.ul-a li span {
  display: none;
}
.firstview-a .header-nav1 nav ul.ul-a li a {
  display: block;
}
.firstview-a .header-nav1 nav ul.ul-a li.active::after {
  opacity: 1;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  width: 100%;
  top: inherit;
  bottom: 2px;
  left: 0;
  height: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  visibility: visible;
}
.firstview-a .header-nav2 {
  height: 40px;
}
.firstview-a .header-nav2 .tel-a {
  height: 40px;
}
.firstview-a .header-nav2 .tel-a span {
  text-align: right;
  display: block;
  height: 12px;
}
.firstview-a .header-nav2 .tel-a a {
  height: 28px;
  line-height: 0;
}
.firstview-a .header-nav2 .tel-a a span {
  display: inline-block;
}
.firstview-a .grid-container-12 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: calc(100vh - 120px);
  position: relative;
}
.firstview-a .grid-container-12 p {
  text-align: center;
  color: #ffffff;
  font-weight: bold;
}
.firstview-a .news {
  position: absolute;
  bottom: 40px;
  left: 0;
  padding: 20px 40px;
  border-radius: 40px;
  border: 1px solid #ffffff;
}
.firstview-a .news p {
  padding: 0;
  margin-bottom: 0;
  color: #ffffff;
  font-weight: bold;
}
.firstview-a .icon {
  position: absolute;
  bottom: 40px;
  right: 0;
}
.firstview-a .sns {
  position: absolute;
  right: 0;
  bottom: 40px;
  padding: 10px 5px 10px 10px;
  background: #ffffff;
  border-radius: 20px 0 0 20px;
}
.firstview-a .sns .ul-sns-b {
  margin-bottom: 0;
}
.firstview-a .sns .ul-sns-b li:last-child {
  margin-bottom: 0;
}
.firstview-a .sns .ul-sns-b li a:hover {
  opacity: 0.8;
}
.firstview-a .hamburger-a {
  display: none;
}
@media screen and (max-width: 1120px) {
  .firstview-a .header {
    padding-bottom: 40px;
  }
  .firstview-a .header-nav1 {
    display: none;
  }
  .firstview-a .header-nav2 {
    margin-right: 60px;
  }
  .firstview-a .hamburger-a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .firstview-a .hamburger-a .hamburger-inner {
    left: auto;
    right: 0 !important;
    width: 60px;
    height: 60px;
  }
  .firstview-a .sns {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .firstview-a .header {
    padding: 20px;
  }
  .firstview-a .grid-container-12 {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    padding: 20px;
  }
  .firstview-a .grid-item-12 {
    width: 100%;
    padding: 20px;
  }
  .firstview-a .grid-item-12 h1 {
    text-align: center;
  }
  .firstview-a .grid-item-12 h1 img {
    max-width: 100%;
  }
  .firstview-a .ul-a {
    display: none;
  }
  .firstview-a .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .firstview-a .header-logo {
    margin-bottom: 20px;
  }
  .firstview-a .header-nav1 {
    height: auto;
  }
  .firstview-a .header-nav2 {
    margin-bottom: 20px;
    margin-right: 0;
  }
  .firstview-a .header-nav2 .tel-a span {
    text-align: left;
  }
  .firstview-a .news {
    position: relative;
    font-size: 0.6rem;
    padding: 10px 20px;
  }
  .firstview-a .icon {
    position: relative;
    width: 40%;
    margin-left: auto;
  }
  .firstview-a .icon img {
    width: 100%;
    height: auto;
  }
}

/* CSS Document */
/* CSS Document */
.firstview-b {
  width: 100%;
}
.firstview-b .grid-container-fluid {
  grid-template-columns: repeat(3, 1fr);
}
.firstview-b .inner-1 {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.firstview-b .inner-2 {
  width: 100%;
  background-color: #cccccc;
  height: 100vh;
}
.firstview-b .inner-3 {
  width: 100%;
  background-color: #aaaaaa;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.firstview-b .inner-3 p {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.firstview-b .inner-3 p span {
  background-color: #ffffff;
  padding: 5px 5px;
}
.firstview-b .inner-3 p span:nth-child(3) {
  margin-top: 1rem;
}
.firstview-b .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 80px 0 80px;
}
.firstview-b .header-logo {
  width: 30%;
  margin-bottom: 2rem;
}
.firstview-b .header-nav1 {
  padding: 20px 40px 0 0;
  margin-left: auto;
}
.firstview-b .header-nav1 nav ul.ul-a li {
  padding-bottom: 20px;
  width: 100%;
  margin-bottom: 20px;
}
.firstview-b .header-nav1 nav ul.ul-a li::after {
  opacity: 0;
  width: 0;
  top: inherit;
  bottom: 2px;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.firstview-b .header-nav1 nav ul.ul-a li span {
  text-align: left;
}
.firstview-b .header-nav1 nav ul.ul-a li a {
  display: block;
  text-align: left;
}
.firstview-b .header-nav1 nav ul.ul-a li.active::after {
  opacity: 1;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  width: 100%;
  top: inherit;
  bottom: 2px;
  left: 0;
  height: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  visibility: visible;
}
.firstview-b .header-nav2 {
  height: auto;
}
.firstview-b .header-nav2 .tel-a {
  height: auto;
  margin-bottom: 20px;
}
.firstview-b .header-nav2 .tel-a span {
  text-align: left;
  display: block;
  height: 12px;
}
.firstview-b .header-nav2 .tel-a a {
  height: 28px;
  line-height: 0;
}
.firstview-b .header-nav2 .tel-a a span {
  display: inline-block;
}
.firstview-b .header-nav3 .ul-sns-a li {
  width: 25px;
}
.firstview-b .header-nav3 .ul-sns-a li img {
  width: 100%;
}
.firstview-b .grid-container-12 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: calc(100vh - 120px);
  position: relative;
}
.firstview-b .grid-container-12 p {
  text-align: center;
  color: #ffffff;
  font-weight: bold;
}
.firstview-b .news {
  position: absolute;
  bottom: 40px;
  left: 0;
  padding: 20px 40px;
  border-radius: 40px;
  border: 1px solid #ffffff;
}
.firstview-b .news p {
  padding: 0;
  margin-bottom: 0;
  color: #ffffff;
  font-weight: bold;
}
.firstview-b .icon {
  position: absolute;
  bottom: 40px;
  left: calc(33.3333333333% - 80px);
}
.firstview-b .icon:hover {
  opacity: 0.8;
}
.firstview-b .sns {
  position: absolute;
  right: 0;
  bottom: 40px;
  padding: 10px 5px 10px 10px;
  background: #ffffff;
  border-radius: 20px 0 0 20px;
}
.firstview-b .sns .ul-sns-b {
  margin-bottom: 0;
}
.firstview-b .sns .ul-sns-b li:last-child {
  margin-bottom: 0;
}
.firstview-b .sns .ul-sns-b li a:hover {
  opacity: 0.8;
}
.firstview-b .hamburger-a {
  display: none;
}
@media screen and (max-width: 1160px) {
  .firstview-b .hamburger-a {
    display: block;
  }
  .firstview-b .inner-1 {
    display: none;
  }
  .firstview-b .inner-2 {
    grid-column: span 2;
  }
  .firstview-b .inner-3 {
    grid-column: span 1;
  }
  .firstview-b .hamburger-inner {
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .firstview-b .inner-2 {
    height: 50vh;
  }
  .firstview-b .inner-3 {
    height: 50vh;
  }
}
@media screen and (max-width: 640px) {
  .firstview-b .inner-2 {
    height: 50vh;
    grid-column: span 3;
  }
  .firstview-b .inner-3 {
    height: 50vh;
    grid-column: span 3;
  }
}

/* CSS Document */
/* CSS Document */
.firstview-c {
  width: 100%;
  overflow-x: hidden;
}
.firstview-c .inner-1 {
  width: 100%;
  height: 120px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #cccccc;
}
.firstview-c .inner-1 .tel-a {
  margin-left: auto;
  margin-right: 20px;
}
.firstview-c .inner-1 .ul-sns-a {
  margin-right: 20px;
}
.firstview-c .inner-1 .ul-sns-a li {
  width: 30px;
}
.firstview-c .inner-1 .ul-sns-a li img {
  width: 100%;
  height: auto;
}
.firstview-c .inner-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: calc(100vh - 240px);
  background-color: #3f3f3f;
}
.firstview-c .inner-3 {
  width: 100%;
  height: 120px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #cccccc;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.firstview-c .icon {
  position: absolute;
  bottom: 40px;
  right: 40px;
}
.firstview-c .hamburger-a {
  display: none;
}
.firstview-c .map a {
  text-decoration: none;
  color: #000000;
  font-size: 24px;
}
@media screen and (max-width: 1120px) {
  .firstview-c .inner-1,
  .firstview-c .inner-3 {
    display: none;
  }
  .firstview-c .hamburger-a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .firstview-c .hamburger-a .hamburger-inner {
    left: auto;
    right: 0 !important;
    width: 60px;
    height: 60px;
  }
  .firstview-c .icon {
    bottom: 200px;
  }
}
@media screen and (max-width: 768px) {
  .firstview-c .header-logo {
    padding: 0 40px;
  }
  .firstview-c .header-logo img {
    width: 100%;
    max-width: 400px;
  }
  .firstview-c .icon {
    width: 25%;
    right: 20px;
  }
  .firstview-c .icon img {
    width: 100%;
    height: auto;
  }
}

/* CSS Document */
/* CSS Document */
.firstview-d {
  width: 100%;
  overflow-x: hidden;
}
.firstview-d .inner-1 {
  width: 100%;
  height: 120px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.firstview-d .inner-1 .tel-a {
  margin-right: 20px;
}
.firstview-d .inner-1 .ul-sns-a {
  margin-left: auto;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #000000;
  height: 36px;
}
.firstview-d .inner-1 .ul-sns-a li {
  width: 30px;
}
.firstview-d .inner-1 .ul-sns-a li img {
  width: 100%;
  height: auto;
}
.firstview-d .inner-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: calc(100vh - 360px);
  padding: 40px;
}
.firstview-d .inner-2 .header-logo img {
  width: 100%;
}
.firstview-d .inner-3 {
  width: 100%;
  height: 240px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.firstview-d .inner-3 .nav1 .ul-c li {
  position: relative;
  margin-right: 15px;
}
.firstview-d .inner-3 .nav1 .ul-c li::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #9b9b9b;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: absolute;
  top: -30px;
}
.firstview-d .icon {
  position: absolute;
  bottom: 40px;
  right: 40px;
}
.firstview-d .hamburger-a {
  display: none;
}
.firstview-d .map a {
  display: block;
  text-decoration: none;
  height: 36px;
  color: #000000;
  font-size: 24px;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #000000;
}
@media screen and (max-width: 1120px) {
  .firstview-d .inner-1,
  .firstview-d .inner-3 {
    display: none;
  }
  .firstview-d .hamburger-a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .firstview-d .hamburger-a .hamburger-inner {
    left: auto;
    right: 0 !important;
    width: 60px;
    height: 60px;
  }
  .firstview-d .icon {
    bottom: 200px;
  }
}
@media screen and (max-width: 768px) {
  .firstview-d .header-logo {
    padding: 0 40px;
  }
  .firstview-d .header-logo img {
    width: 100%;
    max-width: 400px;
  }
  .firstview-d .icon {
    width: 25%;
    right: 20px;
  }
  .firstview-d .icon img {
    width: 100%;
    height: auto;
  }
}

/* CSS Document */
/* CSS Document */
.firstview-e {
  width: 100%;
  overflow-x: hidden;
}
.firstview-e .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.firstview-e .inner-1 {
  width: 50%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.firstview-e .inner-1 .header-logo img {
  width: 100%;
}
.firstview-e .inner-1 .header-logo p {
  margin-bottom: 100px;
}
.firstview-e .inner-1 .tel-a {
  text-align: center;
}
.firstview-e .inner-1 .tel-a span {
  display: block;
  text-align: center;
}
.firstview-e .inner-1 .tel-a a span {
  display: inline-block;
}
.firstview-e .inner-1 .ul-a {
  margin-bottom: 3rem;
}
.firstview-e .inner-1 .ul-a li {
  padding-right: 2rem;
}
.firstview-e .inner-1 .ul-a li::after {
  display: none;
}
.firstview-e .inner-1 .ul-sns-a {
  margin-bottom: 2rem;
  text-align: center;
}
.firstview-e .inner-1 .ul-sns-a li {
  width: 30px;
}
.firstview-e .inner-1 .ul-sns-a li img {
  width: 100%;
  height: auto;
}
.firstview-e .inner-2 {
  width: 50%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  background-color: #cccccc;
}
.firstview-e .inner-2 p {
  height: 12em;
}
.firstview-e .icon {
  position: absolute;
  bottom: 40px;
  right: 40px;
}
.firstview-e .hamburger-a {
  display: none;
}
@media screen and (max-width: 1120px) {
  .firstview-e .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .firstview-e .inner-1 {
    width: 100%;
    height: 50vh;
  }
  .firstview-e .inner-1 .header-logo p {
    margin-bottom: 0;
  }
  .firstview-e .inner-2 {
    width: 100%;
    height: 50vh;
  }
  .firstview-e .navarea {
    display: none;
  }
  .firstview-e .hamburger-a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .firstview-e .hamburger-a .hamburger-inner {
    left: auto;
    right: 0 !important;
    width: 60px;
    height: 60px;
  }
  .firstview-e .icon {
    bottom: 200px;
  }
}
@media screen and (max-width: 768px) {
  .firstview-e .header-logo {
    padding: 0 40px;
  }
  .firstview-e .header-logo img {
    width: 100%;
    max-width: 400px;
  }
  .firstview-e .icon {
    width: 25%;
    right: 20px;
  }
  .firstview-e .icon img {
    width: 100%;
    height: auto;
  }
}

/* CSS Document */
/* CSS Document */
.firstview-f {
  width: 100%;
  overflow-x: hidden;
}
.firstview-f .inner-1 {
  padding: 60px 0;
  height: 90px;
}
.firstview-f .inner-1 .ul-sns-a {
  text-align: right;
}
.firstview-f .inner-1 .ul-sns-a li {
  width: 30px;
}
.firstview-f .inner-1 .ul-sns-a li img {
  width: 100%;
  height: auto;
}
.firstview-f .inner-1 .tel-a {
  text-align: right;
}
.firstview-f .inner-2 {
  width: 1160px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.firstview-f .inner-2 .header-logo {
  width: 50%;
  position: relative;
  z-index: 1;
}
.firstview-f .inner-2 .header-logo img {
  width: 100%;
}
.firstview-f .inner-2 .ul-a li {
  padding-right: 30px;
}
.firstview-f .inner-2 .ul-a li img {
  width: 90px;
  height: auto;
  margin-bottom: 5px;
}
.firstview-f .inner-2 .ul-a li::after {
  display: none;
}
.firstview-f .inner-2 .ul-a li span {
  font-size: 14px;
}
.firstview-f .inner-2 .nav2 .ul-a li {
  padding-right: 0;
  padding-left: 30px;
}
.firstview-f .inner-3 {
  margin-top: -80px;
  position: relative;
}
.firstview-f .inner-3 #js-slider-2 {
  padding: 0;
}
.firstview-f .inner-3 .slider-2 .slick-slide {
  width: 66.6666666667vw;
  height: auto;
  margin: 0 20px;
  position: relative;
  overflow: hidden;
}
.firstview-f .inner-3 .slider-2 .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.firstview-f .inner-3 .slider-2 .slick-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 50%;
  z-index: 1;
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.firstview-f .inner-3 .slider-2 .slick-arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #09000d;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 24px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.firstview-f .inner-3 .slider-2 .slick-next {
  right: 40px;
}
.firstview-f .inner-3 .slider-2 .slick-prev {
  left: 40px;
}
.firstview-f .inner-3 .slider-2 .slick-next::before {
  left: 20px;
}
.firstview-f .inner-3 .slider-2 .slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 22px;
}
.firstview-f .inner-3 .dots-2 {
  position: relative;
}
.firstview-f .inner-3 .dots-2 .slick-dots {
  text-align: center;
  bottom: 0;
}
.firstview-f .inner-3 .dots-2 .slick-dots li {
  display: inline-block;
}
.firstview-f .inner-3 .dots-2 .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 3px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #bcbcbc;
  border-radius: 50%;
}
.firstview-f .inner-3 .dots-2 .slick-dots .slick-active button {
  background: #0a467d;
}
.firstview-f .inner-3 .slick-dots li button:before {
  display: none;
}
.firstview-f .icon {
  position: absolute;
  top: 75%;
  right: 40px;
  z-index: 1;
}
.firstview-f .hamburger-a {
  display: none;
}
@media screen and (max-width: 1240px) {
  .firstview-f .inner-1 {
    display: none;
  }
  .firstview-f .inner-2 {
    width: 100%;
  }
  .firstview-f .inner-2 .nav1,
  .firstview-f .inner-2 .nav2 {
    display: none;
  }
  .firstview-f .inner-2 .header-logo {
    width: 50%;
    margin: 0 auto;
  }
  .firstview-f .inner-3 {
    margin-top: 0;
  }
  .firstview-f .inner-3 .slider-2 .slick-slide {
    width: 75vw;
    height: auto;
    margin: 0 4px;
    position: relative;
    overflow: hidden;
  }
  .firstview-f .inner-3 .slider-2 .slick-arrow {
    width: 20px;
    height: 20px;
  }
  .firstview-f .inner-3 .slider-2 .slick-arrow::before {
    width: 6px;
    height: 6px;
    border: 1px solid #09000d;
    border-width: 1px 1px 0 0;
    top: 7px;
  }
  .firstview-f .inner-3 .slider-2 .slick-next::before {
    left: 6px;
  }
  .firstview-f .inner-3 .slider-2 .slick-prev::before {
    border-width: 0 0 1px 1px;
    right: 6px;
  }
  .firstview-f .hamburger-a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .firstview-f .hamburger-a .hamburger-inner {
    left: auto;
    right: 0 !important;
    width: 60px;
    height: 60px;
  }
  .firstview-f .icon {
    top: 55%;
  }
}
@media screen and (max-width: 768px) {
  .firstview-f .icon {
    top: 50vw;
    width: 15%;
  }
  .firstview-f .icon img {
    width: 100%;
    height: auto;
  }
}

/* CSS Document */
/* CSS Document */
.firstview-g {
  width: 100%;
  overflow-x: hidden;
  background-image: url(../images/header-g/thum1.png), url(../images/header-g/thum2.png), url(../images/header-g/thum3.png);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: left -40% top -45vh, right -20% top -20vh, left 60% bottom -20vh;
  background-size: 60%, 40%, 40%;
}
.firstview-g .grid-container-12 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}
.firstview-g .inner-1 {
  height: 100vh;
}
.firstview-g .inner-1 .tel-a {
  margin-bottom: 50px;
}
.firstview-g .inner-1 .tel-a span {
  display: block;
}
.firstview-g .inner-1 .tel-a a span {
  display: inline;
}
.firstview-g .header-logo {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.firstview-g .header-logo img {
  width: 100%;
  max-width: 40%;
}
.firstview-g .header-logo h1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.firstview-g .header-logo p {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  margin-bottom: 0;
  max-width: 40%;
}
.firstview-g .ul-b {
  margin-bottom: 30px;
}
.firstview-g .ul-sns-a {
  margin-bottom: 30px;
}
.firstview-g .ul-sns-a li {
  width: 24px;
}
.firstview-g .ul-sns-a li img {
  width: 100%;
  height: auto;
}
.firstview-g .grid-item-2 p {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  max-height: 12em;
}
.firstview-g .hamburger-a {
  display: none;
}
@media screen and (max-width: 1240px) {
  .firstview-g {
    background-position: left -40% top -25vh, right -20% top 30vh, left 10% bottom -20vh;
    background-size: 60%, 40%, 45%;
  }
  .firstview-g .inner-1 {
    padding: 0;
  }
  .firstview-g .grid-container-12 {
    padding: 40px;
  }
  .firstview-g .tel-a,
  .firstview-g .ul-b,
  .firstview-g .ul-sns-a {
    display: none;
  }
  .firstview-g .hamburger-a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .firstview-g .hamburger-a .hamburger-inner {
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .firstview-g {
    background-position: left -40% top -25vh, right -20% top 30vh, left 10% bottom -20vh;
    background-size: 80%, 40%, 60%;
  }
  .firstview-g .grid-container-12 {
    grid: 0;
    grid-template-columns: repeat(3, 1fr);
    height: 80vh;
  }
  .firstview-g .grid-item-10 {
    grid-column: span 2;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .firstview-g .grid-item-2 {
    grid-column: span 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    height: 100%;
  }
  .firstview-g .header-logo img {
    width: 100%;
    max-width: 100%;
  }
  .firstview-g .header-logo h1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .firstview-g .header-logo p {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-bottom: 0;
    max-width: 100%;
  }
}

/* CSS Document */
/* CSS Document */
.firstview-h #vegas {
  height: 100vh;
  width: 100%;
}
.firstview-h .grid-container-12 .grid-item-4 {
  background-color: #cccccc;
  padding: 60px 40px;
  min-height: 55vh;
}
.firstview-h .grid-container-12 .grid-item-4 .ul-sns-a {
  text-align: center;
}
.firstview-h .grid-container-12 .grid-item-4 .ul-sns-a li {
  width: 24px;
}
.firstview-h .grid-container-12 .grid-item-4 .ul-sns-a li img {
  width: 100%;
  height: auto;
}
.firstview-h .grid-container-12 .grid-item-4 .tel-a {
  margin-bottom: 60px;
  text-align: center;
}
.firstview-h .grid-container-12 .grid-item-4 .tel-a span {
  display: block;
  text-align: center;
}
.firstview-h .grid-container-12 .grid-item-4 .tel-a a span {
  display: inline-block;
}
.firstview-h .grid-container-12 .grid-item-8 {
  text-align: right;
  padding: 60px 0 60px 0;
}
.firstview-h .grid-container-12 .grid-item-8 .nav2 {
  display: inline-block;
  margin-left: auto;
}
.firstview-h .header-logo {
  margin-bottom: 60px;
}
.firstview-h .header-logo img {
  width: 100%;
}
.firstview-h .icon {
  position: fixed;
  top: 50%;
  right: 0;
}
.firstview-h .hamburger-a {
  display: none;
}
@media screen and (max-width: 1190px) {
  .firstview-h .nav2 {
    padding-right: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .firstview-h .grid-item-4 .tel-a,
  .firstview-h .grid-item-4 .ul-sns-a {
    display: none;
  }
  .firstview-h .grid-item-8 {
    display: none;
  }
  .firstview-h .hamburger-a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .firstview-h .hamburger-a .hamburger-inner {
    left: auto;
    right: 0;
  }
  .firstview-h .hamburger-a .ul-c {
    margin-bottom: 40px;
  }
  .firstview-h .hamburger-a .ul-sns-a {
    text-align: center;
  }
  .firstview-h .hamburger-a .ul-sns-a li {
    width: 24px;
  }
  .firstview-h .hamburger-a .ul-sns-a li img {
    width: 100%;
    height: auto;
  }
  .firstview-h .hamburger-a .tel-a {
    display: block;
    text-align: center;
  }
  .firstview-h .icon {
    top: auto;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .firstview-h .grid-container-12 {
    grid-template-columns: repeat(2, 1fr);
  }
  .firstview-h .grid-container-12 .grid-item-4 {
    min-height: auto;
  }
}

/* CSS Document */
/* CSS Document */
.firstview-i {
  width: 100%;
  overflow-x: hidden;
}
.firstview-i #vegas {
  height: 100vh;
}
.firstview-i .inner-1 {
  width: 100%;
  height: 120px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.firstview-i .inner-1 h1 {
  font-size: 14px;
}
.firstview-i .inner-1 .ul-sns-a li {
  width: 30px;
}
.firstview-i .inner-1 .ul-sns-a li img {
  width: 100%;
  height: auto;
}
.firstview-i .inner-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100vh - 340px);
}
.firstview-i .inner-2 img {
  width: 100%;
}
.firstview-i .inner-2 .header-logo {
  margin-bottom: 20px;
  width: 40%;
}
.firstview-i .inner-2 .header-logo img {
  width: 100%;
  height: auto;
}
.firstview-i .inner-2 .tel-a {
  padding: 30px 50px;
  border: 1px solid #000000;
  width: 40%;
  text-align: center;
}
.firstview-i .inner-2 .tel-a span {
  display: block;
  text-align: center;
}
.firstview-i .inner-2 .tel-a a span {
  display: inline-block;
}
.firstview-i .inner-3 {
  width: 100%;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.firstview-i .icon {
  position: absolute;
  bottom: 40px;
  right: 40px;
}
.firstview-i .hamburger-a {
  display: none;
}
.firstview-i .map {
  margin-left: auto;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #000000;
}
.firstview-i .map a {
  text-decoration: none;
  color: #000000;
  font-size: 24px;
}
@media screen and (max-width: 1120px) {
  .firstview-i .inner-1 .map {
    display: none;
  }
  .firstview-i .inner-1 .ul-sns-a {
    display: none;
  }
  .firstview-i .inner-2 .tel-a {
    display: none;
  }
  .firstview-i .inner-3 {
    display: none;
  }
  .firstview-i .hamburger-a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .firstview-i .hamburger-a .hamburger-inner {
    left: auto;
    right: 0 !important;
    width: 60px;
    height: 60px;
  }
  .firstview-i .hamburger-a .ul-b {
    margin-bottom: 40px;
  }
  .firstview-i .hamburger-a .ul-b li a {
    text-align: center;
    display: block;
  }
  .firstview-i .hamburger-a .ul-b li a span {
    text-align: center;
    display: block;
  }
  .firstview-i .hamburger-a .tel-a {
    border: 1px solid #000000;
    text-align: center;
    padding: 20px;
    margin-bottom: 40px;
  }
  .firstview-i .hamburger-a .tel-a span {
    display: block;
    text-align: center;
  }
  .firstview-i .hamburger-a .tel-a a span {
    display: inline-block;
  }
  .firstview-i .hamburger-a .ul-sns-a {
    text-align: center;
  }
  .firstview-i .icon {
    bottom: 200px;
  }
}
@media screen and (max-width: 768px) {
  .firstview-i .header-logo {
    padding: 0 40px;
  }
  .firstview-i .header-logo img {
    width: 100%;
    max-width: 400px;
  }
  .firstview-i .icon {
    width: 25%;
    right: 20px;
  }
  .firstview-i .icon img {
    width: 100%;
    height: auto;
  }
}

/* CSS Document */
/* CSS Document */
.firstview-j {
  width: 100%;
  overflow-x: hidden;
}
.firstview-j .wrapper {
  position: relative;
}
.firstview-j #vegas {
  height: 100vh;
}
.firstview-j .inner-1 {
  width: 100%;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.firstview-j .inner-1 .header-logo {
  margin-bottom: 20px;
  max-width: 20%;
}
.firstview-j .inner-1 .header-logo h1 {
  line-height: 1;
}
.firstview-j .inner-1 .header-logo img {
  width: 100%;
  height: auto;
}
.firstview-j .inner-1 .nav1 {
  margin-left: auto;
}
.firstview-j .inner-1 .nav1 .ul-a {
  margin-right: 40px;
  padding-top: 10px;
}
.firstview-j .inner-1 .tel-a span {
  display: block;
  text-align: right;
}
.firstview-j .inner-1 .tel-a a span {
  display: inline-block;
}
.firstview-j .inner-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100vh - 260px);
}
.firstview-j .inner-2 img {
  width: 100%;
}
.firstview-j .inner-3 {
  width: 100%;
  height: 120px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
}
.firstview-j .inner-3 h1 {
  font-size: 14px;
}
.firstview-j .inner-3 .ul-sns-a li {
  width: 30px;
}
.firstview-j .inner-3 .ul-sns-a li img {
  width: 100%;
  height: auto;
}
.firstview-j .icon {
  position: absolute;
  bottom: 120px;
  right: 40px;
}
.firstview-j .hamburger-a {
  display: none;
}
.firstview-j .map {
  margin-left: auto;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #000000;
}
.firstview-j .map a {
  text-decoration: none;
  color: #000000;
  font-size: 24px;
}
@media screen and (max-width: 1120px) {
  .firstview-j .inner-1 .ul-a {
    display: none;
  }
  .firstview-j .inner-1 .tel-a {
    display: none;
  }
  .firstview-j .inner-3 .map {
    display: none;
  }
  .firstview-j .inner-3 .ul-sns-a {
    display: none;
  }
  .firstview-j .hamburger-a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .firstview-j .hamburger-a .hamburger-inner {
    left: auto;
    right: 0 !important;
    width: 60px;
    height: 60px;
  }
  .firstview-j .hamburger-a .ul-b {
    margin-bottom: 40px;
  }
  .firstview-j .hamburger-a .ul-b li a {
    text-align: center;
    display: block;
  }
  .firstview-j .hamburger-a .ul-b li a span {
    text-align: center;
    display: block;
  }
  .firstview-j .hamburger-a .tel-a {
    border: 1px solid #000000;
    text-align: center;
    padding: 20px;
    margin-bottom: 40px;
  }
  .firstview-j .hamburger-a .tel-a span {
    display: block;
    text-align: center;
  }
  .firstview-j .hamburger-a .tel-a a span {
    display: inline-block;
  }
  .firstview-j .hamburger-a .ul-sns-a {
    text-align: center;
  }
  .firstview-j .icon {
    bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .firstview-j .inner-1 .header-logo {
    padding: 0;
    max-width: 100%;
  }
  .firstview-j .inner-1 .header-logo img {
    width: 100%;
    max-width: 400px;
  }
  .firstview-j .icon {
    width: 25%;
    right: auto;
    left: 40px;
    bottom: 100px;
  }
  .firstview-j .icon img {
    width: 100%;
    height: auto;
  }
}

/* CSS Document */
/* CSS Document */
.firstview-k {
  width: 100%;
  overflow-x: hidden;
}
.firstview-k * {
  font-family: "Amiri", "メイリオ", "Meiryo", sans-serif;
  font-weight: bold;
}
.firstview-k .wrapper {
  position: relative;
}
.firstview-k #vegas {
  height: 100vh;
}
.firstview-k .inner-1 {
  width: 100%;
  padding: 40px 40px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.firstview-k .inner-1 .header-logo {
  margin-bottom: 20px;
  max-width: 20%;
}
.firstview-k .inner-1 .header-logo h1 {
  line-height: 1;
}
.firstview-k .inner-1 .header-logo img {
  width: 100%;
  height: auto;
}
.firstview-k .inner-1 .nav-area1 {
  background-color: #ffffff;
  margin-left: auto;
  padding: 20px 40px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px 5px 0 0;
}
.firstview-k .inner-1 .nav1 .ul-a {
  margin-right: 40px;
  padding-top: 10px;
}
.firstview-k .inner-1 .tel-a span {
  display: block;
  text-align: right;
}
.firstview-k .inner-1 .tel-a a span {
  display: inline-block;
}
.firstview-k .inner-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100vh - 240px);
  padding: 0 40px 20px 40px;
}
.firstview-k .inner-2 .inner-2-content {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 5px 0 5px 5px;
  padding: 40px;
}
.firstview-k .inner-2 img {
  width: 100%;
}
.firstview-k .inner-3 {
  width: 100%;
  height: 60px;
  padding: 10px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.firstview-k .inner-3 h1 {
  font-size: 14px;
}
.firstview-k .inner-3 .ul-sns-a li {
  width: 30px;
}
.firstview-k .inner-3 .ul-sns-a li img {
  width: 100%;
  height: auto;
}
.firstview-k .inner-3 span {
  display: inline-block;
  padding: 14px 20px 10px;
  width: 10rem;
  text-align: center;
  background-color: #bc004c;
  border-radius: 100px;
  color: #ffffff;
  margin-right: 10px;
  font-size: 22px;
  line-height: 1;
  font-family: "メイリオ", "Meiryo", sans-serif;
}
.firstview-k .inner-3 p {
  display: inline;
  font-family: "メイリオ", "Meiryo", sans-serif;
}
.firstview-k .icon {
  position: absolute;
  bottom: 120px;
  right: 40px;
}
.firstview-k .hamburger-a {
  display: none;
}
.firstview-k .map {
  margin-left: auto;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #000000;
}
.firstview-k .map a {
  text-decoration: none;
  color: #000000;
  font-size: 24px;
}
@media screen and (max-width: 1600px) {
  .firstview-k .inner-1 {
    padding: 40px 20px 0 20px;
  }
  .firstview-k .inner-1 .ul-a {
    display: none;
  }
  .firstview-k .inner-1 .tel-a {
    display: none;
  }
  .firstview-k .inner-2 {
    padding: 0 20px 20px;
  }
  .firstview-k .inner-3 {
    padding: 0 20px;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .firstview-k .inner-3 span {
    font-size: 16px;
    padding: 8px 5px 6px;
    margin-bottom: 10px;
    width: 6rem;
    display: block;
  }
  .firstview-k .inner-3 p {
    font-size: 14px;
  }
  .firstview-k .inner-3 .map {
    display: none;
  }
  .firstview-k .inner-3 .ul-sns-a {
    display: none;
  }
  .firstview-k .hamburger-a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .firstview-k .hamburger-a .hamburger-inner {
    left: auto;
    right: 0px !important;
    top: 50px;
    width: 60px;
    height: 60px;
    background-color: transparent;
  }
  .firstview-k .hamburger-a .ul-b {
    margin-bottom: 40px;
  }
  .firstview-k .hamburger-a .ul-b li a {
    text-align: center;
    display: block;
  }
  .firstview-k .hamburger-a .ul-b li a span {
    text-align: center;
    display: block;
  }
  .firstview-k .hamburger-a .tel-a {
    border: 1px solid #000000;
    text-align: center;
    padding: 20px;
    margin-bottom: 40px;
  }
  .firstview-k .hamburger-a .tel-a span {
    display: block;
    text-align: center;
  }
  .firstview-k .hamburger-a .tel-a a span {
    display: inline-block;
  }
  .firstview-k .hamburger-a .ul-sns-a {
    text-align: center;
  }
  .firstview-k .icon {
    bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .firstview-k .inner-1 .header-logo {
    padding: 0;
    max-width: 100%;
  }
  .firstview-k .inner-1 .header-logo img {
    width: 100%;
    max-width: 400px;
  }
  .firstview-k .icon {
    width: 25%;
    right: auto;
    left: 40px;
    bottom: 100px;
  }
  .firstview-k .icon img {
    width: 100%;
    height: auto;
  }
}/*# sourceMappingURL=main.css.map */