@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, l, ul, ol, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
}

html {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 100vh;
  color: #111;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  background-color: #fcfaec;
  word-break: break-word;
  overscroll-behavior-y: none;
  -webkit-text-size-adjust: 100%;
}

header,
footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  min-height: 1px;
}

body {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
a {
  color: #111;
  text-decoration: none;
}
a:link, a:active, a:hover, a:visited {
  outline: 0 none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

img[src$=".svg"] {
  width: 100%;
}

.container {
  padding: 0 12px;
}
@media (min-width: 768px) {
  .container {
    max-width: 1076px;
    margin: 0 auto;
  }
}

.menu-fixed {
  height: 100vh;
  overflow: hidden;
}

.header {
  position: relative;
  z-index: 2;
}
.header .hum-input {
  display: none;
}
.header .hum-input:checked ~ .gnav-hum span:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
}
.header .hum-input:checked ~ .gnav-hum span:nth-child(2) {
  -webkit-transform: translateY(-4px) rotate(45deg);
          transform: translateY(-4px) rotate(45deg);
}
.header .hum-input:checked ~ .gnav-hum.change {
  border: 3px solid #faf8ea;
}
.header .hum-input:checked ~ .gnav-hum.change span {
  background-color: #faf8ea;
}
.header .hum-input:checked ~ .gnav {
  visibility: visible;
  overflow-y: auto;
  width: 100vw;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .gnav-hum {
  position: fixed;
  top: 14px;
  right: 12px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid #faf8ea;
}
@media (min-width: 1025px) {
  .header .gnav-hum {
    display: none;
  }
}
.header .gnav-hum label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.header .gnav-hum span {
  position: absolute;
  display: inline-block;
  left: 8px;
  width: 20px;
  height: 3px;
  background-color: #faf8ea;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .gnav-hum span:nth-of-type(1) {
  top: 11px;
}
.header .gnav-hum span:nth-of-type(2) {
  top: 21px;
}
.header .gnav-hum.change {
  border: 3px solid #cd3a26;
}
.header .gnav-hum.change span {
  background-color: #cd3a26;
}
.header .logo {
  position: absolute;
  top: 20px;
  left: 12px;
  width: 174px;
  height: 30px;
}
@media (min-width: 1025px) {
  .header .logo {
    top: 18px;
    left: 20px;
    width: 255px;
    height: 44px;
  }
}
.header .gnav {
  position: fixed;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  z-index: 2;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  background-color: #cd3a26;
  padding: 160px 0 50px;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (max-width: 767px) and (orientation: landscape) {
  .header .gnav {
    padding: 50px 0;
  }
}
@media (min-width: 1025px) {
  .header .gnav {
    top: 0;
    right: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    height: auto;
    background-color: transparent;
    visibility: visible;
    margin: 25px 25px 0 0;
    padding: 0;
    visibility: visible;
    overflow: visible;
    opacity: 1;
  }
}
@media (min-width: 1025px) {
  .header .gnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header .gnav ul li {
  text-align: center;
}
.header .gnav ul li:not(:last-child) {
  margin: 0 0 30px;
}
@media (min-width: 1025px) {
  .header .gnav ul li:not(:last-child) {
    margin: 0 6px 0 0;
  }
}
.header .gnav ul li a {
  position: relative;
  display: inline-block;
  color: #faf8ea;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 34px 4px 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1025px) {
  .header .gnav ul li a {
    display: block;
    background-color: #cd3a26;
  }
}
.header .gnav ul li a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(/img/arrow.svg) no-repeat;
  background-size: cover;
  margin: 1px 0 0;
}
@media (min-width: 1025px) {
  .header .gnav ul li a::after {
    width: 17px;
    height: 17px;
  }
}
@media (min-width: 1025px) {
  .header .gnav ul li a:hover {
    color: #cd3a26;
    background-color: #fff;
  }
}
.header .gnav .fb {
  display: block;
  width: 48px;
  height: 48px;
  margin: 50px auto 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1025px) {
  .header .gnav .fb {
    width: 26px;
    height: 26px;
    margin: 0 0 0 15px;
  }
}
@media (min-width: 1025px) {
  .header .gnav .fb:hover {
    opacity: 0.75;
  }
}

.footer {
  position: relative;
  background-color: #fff;
  margin: 0 0 10px;
  padding: 50px 0 20px;
}
@media (min-width: 768px) {
  .footer {
    margin: 0 0 35px;
    padding: 110px 0 50px;
  }
}
.footer::before {
  position: absolute;
  top: -12px;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 12px;
  background: url(/img/w_wave.png) center center/contain repeat-x;
}
@media (min-width: 768px) {
  .footer::before {
    top: -18px;
    height: 18px;
  }
}
.footer .ttl {
  width: 41.6vw;
  margin: 0 auto 20px;
}
@media (min-width: 768px) {
  .footer .ttl {
    width: 230px;
    margin: 0 auto 50px;
  }
}
.footer p {
  font-weight: 700;
  text-align: center;
  margin: 0 0 25px;
}
@media (min-width: 768px) {
  .footer p {
    margin: 0 0 40px;
  }
}
.footer .btn-mail {
  padding: 0 8px;
}
@media (min-width: 768px) {
  .footer .btn-mail {
    padding: 0;
  }
}
.footer .btn-mail a {
  position: relative;
  display: block;
  color: #fff;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  max-width: 485px;
  border-radius: 38px;
  border: 4px solid #000;
  background-color: #2866bf;
  -webkit-box-shadow: 0 6px 1px #000;
          box-shadow: 0 6px 1px #000;
  margin: 0 auto 24px;
  padding: 14px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .footer .btn-mail a {
    font-size: 2rem;
    margin: 0 auto 40px;
    padding: 17px 0;
  }
}
.footer .btn-mail a::after {
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(/img/arrow.svg) no-repeat;
  background-size: cover;
  margin: 1px 0 0;
}
@media (min-width: 768px) {
  .footer .btn-mail a::after {
    right: 20px;
    width: 34px;
    height: 34px;
  }
}
@media (min-width: 768px) {
  .footer .btn-mail a:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translate3d(0, 3px, 0);
            transform: translate3d(0, 3px, 0);
  }
}
.footer .copyright {
  display: block;
  font-size: 1.4rem;
  text-align: center;
}

.visible-xs {
  display: none !important;
}

.visible-sm {
  display: none !important;
}

.visible-md {
  display: none !important;
}

.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1025px) and (max-width: 1099px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1025px) and (max-width: 1099px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 1025px) and (max-width: 1099px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 1025px) and (max-width: 1099px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1100px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1100px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1100px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1100px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 1025px) and (max-width: 1099px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1100px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}
@-webkit-keyframes scrolldown {
  0% {
    -webkit-transform: translateX(50%) scale(1, 0);
            transform: translateX(50%) scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: translateX(50%) scale(1, 1);
            transform: translateX(50%) scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: translateX(50%) scale(1, 1);
            transform: translateX(50%) scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: translateX(50%) scale(1, 0);
            transform: translateX(50%) scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@keyframes scrolldown {
  0% {
    -webkit-transform: translateX(50%) scale(1, 0);
            transform: translateX(50%) scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: translateX(50%) scale(1, 1);
            transform: translateX(50%) scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: translateX(50%) scale(1, 1);
            transform: translateX(50%) scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: translateX(50%) scale(1, 0);
            transform: translateX(50%) scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
.kv {
  position: relative;
}
.kv .kv-img {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  background-color: #cd3a26;
}
.kv .scrolldown {
  position: absolute;
  bottom: 40px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  z-index: 1;
}
.kv .scrolldown::before {
  position: absolute;
  top: 33px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  content: "";
  width: 2px;
  height: 66px;
  background-color: #fff;
}
.kv .scrolldown::after {
  position: absolute;
  top: 33px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  content: "";
  width: 2px;
  height: 66px;
  background-color: #cd3a26;
  -webkit-animation: scrolldown 2s ease-in-out infinite;
          animation: scrolldown 2s ease-in-out infinite;
}
.kv .scrolldown span {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.fixed-bg {
  position: fixed;
  z-index: -1;
  width: 100%;
  max-width: 1100px;
  height: 100vh;
  background-color: #fcfaec;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .fixed-bg {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
.fixed-bg .line-left {
  position: absolute;
  top: 0;
  left: 14.1333333333vw;
  width: 14.6666666667vw;
  height: 100%;
  background-color: #cd3a26;
}
@media (min-width: 768px) {
  .fixed-bg .line-left {
    left: 3.2142857143vw;
    width: 14.7142857143vw;
  }
}
@media (min-width: 1025px) {
  .fixed-bg .line-left {
    left: 45px;
    width: 206px;
  }
}
.fixed-bg .line-center {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 14.6666666667vw;
  height: 100%;
  background-color: #cd3a26;
}
@media (min-width: 768px) {
  .fixed-bg .line-center {
    width: 14.7142857143vw;
  }
}
@media (min-width: 1025px) {
  .fixed-bg .line-center {
    width: 206px;
  }
}
.fixed-bg .line-right {
  position: absolute;
  top: 0;
  right: 14.1333333333vw;
  width: 14.6666666667vw;
  height: 100%;
  background-color: #cd3a26;
}
@media (min-width: 768px) {
  .fixed-bg .line-right {
    right: 3.2142857143vw;
    width: 14.7142857143vw;
  }
}
@media (min-width: 1025px) {
  .fixed-bg .line-right {
    right: 45px;
    width: 206px;
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateZ(0);
            transform: translate(-50%, -50%) rotateZ(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateZ(360deg);
            transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateZ(0);
            transform: translate(-50%, -50%) rotateZ(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateZ(360deg);
            transform: translate(-50%, -50%) rotateZ(360deg);
  }
}
.sec-about {
  position: relative;
  background-color: #fff;
  padding: 70px 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .sec-about {
    padding: 130px 0 240px;
  }
}
.sec-about p {
  position: relative;
  color: #cd3a26;
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin: 0 0 50px;
}
@media (min-width: 768px) {
  .sec-about p {
    font-size: 3rem;
  }
}
.sec-about .about-box {
  text-align: center;
}
.sec-about .about-box picture {
  position: relative;
  display: block;
}
.sec-about .about-box picture::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  content: "";
  background: url(/img/bg_about_cuidaore.png);
  background-size: cover;
  width: 100vw;
  height: 100vw;
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.51, 0.51, 0.52);
          animation-timing-function: cubic-bezier(0.5, 0.51, 0.51, 0.52);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@media (max-width: 767px) and (orientation: landscape) {
  .sec-about .about-box picture::before {
    -webkit-animation: none;
            animation: none;
  }
}
@media (min-width: 768px) {
  .sec-about .about-box picture::before {
    max-width: 896px;
    max-height: 896px;
  }
}
.sec-about .about-box img {
  position: relative;
  z-index: 1;
}

.sec-profile {
  position: relative;
  padding: 70px 0 80px;
}
@media (min-width: 768px) {
  .sec-profile {
    padding: 110px 0 130px;
  }
}
.sec-profile::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 12px;
  background: url(/img/w_wave.png) center center/contain repeat-x;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
@media (min-width: 768px) {
  .sec-profile::before {
    height: 18px;
  }
}
.sec-profile .ttl {
  width: 51.2vw;
  margin: 0 auto 50px;
}
@media (min-width: 768px) {
  .sec-profile .ttl {
    width: 300px;
    margin: 0 auto 60px;
  }
}
.sec-profile .timeline {
  display: block;
  max-width: 1010px;
  margin: 0 auto 60px;
}
@media (min-width: 768px) {
  .sec-profile .timeline {
    margin: 0 auto 150px;
  }
}
.sec-profile .message {
  display: block;
  text-align: center;
}

.sec-gallery {
  position: relative;
  background-color: #fcfaec;
  padding: 70px 0 50px;
}
@media (min-width: 768px) {
  .sec-gallery {
    padding: 140px 0 180px;
  }
}
.sec-gallery::before {
  position: absolute;
  top: -12px;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 12px;
  background: url(/img/c_wave.png) center center/contain repeat-x;
}
@media (min-width: 768px) {
  .sec-gallery::before {
    top: -18px;
    height: 18px;
  }
}
.sec-gallery::after {
  position: absolute;
  bottom: -12px;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 12px;
  background: url(/img/c_wave.png) center center/contain repeat-x;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
@media (min-width: 768px) {
  .sec-gallery::after {
    bottom: -18px;
    height: 18px;
  }
}
.sec-gallery .ttl {
  width: 68.2666666667vw;
  margin: 0 auto 50px;
}
@media (min-width: 768px) {
  .sec-gallery .ttl {
    width: 400px;
    margin: 0 auto 60px;
  }
}
.sec-gallery .gallery-list li:nth-child(1) {
  margin: 0 0 15px;
}
@media (min-width: 768px) {
  .sec-gallery .gallery-list li:nth-child(1) {
    margin: 0 0 20px;
  }
}
.sec-gallery .gallery-list li:nth-child(2) {
  margin: 0 0 30px;
}
@media (min-width: 768px) {
  .sec-gallery .gallery-list li:nth-child(2) {
    margin: 0 0 70px;
  }
}
.sec-gallery .gallery-list li:nth-child(3) {
  margin: 0 0 60px;
}
@media (min-width: 768px) {
  .sec-gallery .gallery-list li:nth-child(3) {
    margin: 0 0 110px;
  }
}
.sec-gallery .gallery-list li:nth-child(4) {
  margin: 0 0 40px;
}
@media (min-width: 768px) {
  .sec-gallery .gallery-list li:nth-child(4) {
    margin: 0 0 90px;
  }
}
.sec-gallery .gallery-list li:nth-child(5) {
  margin: 0 0 15px;
}
@media (min-width: 768px) {
  .sec-gallery .gallery-list li:nth-child(5) {
    margin: 0 0 60px;
  }
}
.sec-gallery .gallery-list li:nth-child(6) {
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .sec-gallery .gallery-list li:nth-child(6) {
    margin: 0 0 130px;
  }
}

.sec-sns {
  position: relative;
  padding: 50px 0;
}
@media (min-width: 768px) {
  .sec-sns {
    padding: 120px 0 140px;
  }
}
.sec-sns .ttl {
  width: 38.4vw;
  margin: 0 auto 50px;
}
@media (min-width: 768px) {
  .sec-sns .ttl {
    width: 168px;
    margin: 0 auto 60px;
  }
}
.sec-sns .sns-fb {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 22px;
}
@media (min-width: 768px) {
  .sec-sns .sns-fb {
    padding: 0;
  }
}
.sec-sns .sns-fb .pageplugin {
  border: 6px solid #f4b12a;
}
.sec-sns .sns-fb a {
  display: block;
  width: 34px;
  margin: 26px 0 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .sec-sns .sns-fb a {
    width: 48px;
  }
}
@media (min-width: 768px) {
  .sec-sns .sns-fb a:hover {
    opacity: 0.75;
  }
}