@charset "UTF-8";
#instagram .btn a, #company .btn a, #case .btn a, #about .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 270px;
  height: 70px;
  border-radius: 50px;
  background: #045cd3;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  position: relative;
  /*
  &:hover {
    background: #0b60ca;
    color: #f9f159;
  } */
}
#instagram .btn a:hover, #company .btn a:hover, #case .btn a:hover, #about .btn a:hover {
  opacity: 0.6;
}
#instagram .btn a::after, #company .btn a::after, #case .btn a::after, #about .btn a::after {
  content: "";
  background: url(../images/arrow1.webp);
  width: 8px;
  height: 11px;
  position: absolute;
  right: 30px;
}
@media (max-width: 767px) {
  #instagram .btn a, #company .btn a, #case .btn a, #about .btn a {
    width: 250px;
    height: 60px;
    font-size: 14px;
  }
}

#news h2, #instagram h2, #recruit h2, #company h2, #case h2, #business h2, #about h2 {
  color: #045cd3;
  letter-spacing: 0.08em;
  line-height: 1.5;
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 60px;
}
#news h2 small, #instagram h2 small, #recruit h2 small, #company h2 small, #case h2 small, #business h2 small, #about h2 small {
  margin-bottom: 10px;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 24px;
  color: #231815;
}
@media (max-width: 1199px) {
  #news h2, #instagram h2, #recruit h2, #company h2, #case h2, #business h2, #about h2 {
    font-size: 40px;
  }
  #news h2 small, #instagram h2 small, #recruit h2 small, #company h2 small, #case h2 small, #business h2 small, #about h2 small {
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  #news h2, #instagram h2, #recruit h2, #company h2, #case h2, #business h2, #about h2 {
    font-size: 26px;
  }
  #news h2 small, #instagram h2 small, #recruit h2 small, #company h2 small, #case h2 small, #business h2 small, #about h2 small {
    font-size: 16px;
  }
}

#news h2, #instagram h2, #recruit h2, #company h2, #case h2, #business h2, #about h2 {
  margin-bottom: 40px;
}

#instagram {
  color: #231815;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
}

#selecter .map .HTMLBlock {
  height: 100%;
}

/* ----------------------------------------------
mainimg
------------------------------------------------- */
#mainimg {
  position: relative;
  background-position: center;
  background-size: cover;
  /* 開始は大きめ → 基準1.06までゆっくり縮む（背景は常に埋まる） */
  /* 動き低減希望ユーザーへの配慮 */
}
#mainimg #mainslider {
  width: 100%;
  margin-left: auto;
  position: relative;
  overflow: hidden;
  /* 調整しやすいよう変数化 */
  --zoom-from: 1.12; /* 演出開始の拡大率 */
  --zoom-to: 1.06; /* 常時の基準拡大率 */
  /* どの構造でも効くよう両方指定（imgがスライド本体 / divラッパ＋img） */
  /* アクティブのみズームアニメ。will-changeも最小化 */
}
#mainimg #mainslider .slick-list {
  height: 100%;
}
#mainimg #mainslider .slick-track {
  display: flex !important;
}
#mainimg #mainslider .slick-slide,
#mainimg #mainslider .slick-slide img {
  width: 100%;
  height: calc(100vh - 140px);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background-color: #000;
  backface-visibility: hidden;
  transform-origin: center center;
  /* ★常時1.06を基準に保持：クラスが外れても1.00に落ちない */
  transform: scale(var(--zoom-to));
}
#mainimg #mainslider .is-zooming,
#mainimg #mainslider .is-zooming img {
  animation: shrinkZoom var(--slideDuration, 7500ms) ease-in-out both;
  will-change: transform;
}
@keyframes shrinkZoom {
  from {
    transform: scale(var(--zoom-from));
  }
  to {
    transform: scale(var(--zoom-to));
  }
}
@media (prefers-reduced-motion: reduce) {
  #mainimg #mainslider .is-zooming,
  #mainimg #mainslider .is-zooming img {
    animation: none !important;
  }
}
#mainimg .catch {
  position: absolute;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
  font-size: 200px;
  color: #ffffff;
  line-height: 0.8;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#mainimg .catch p {
  width: -moz-fit-content;
  width: fit-content;
}
#mainimg .catch span {
  margin-bottom: -0.13em;
}
@media (max-width: 1199px) {
  #mainimg #mainslider img {
    height: auto;
  }
  #mainimg .catch {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  #mainimg {
    background-size: 150%;
    height: 240px;
  }
  #mainimg #mainslider {
    height: 240px;
  }
  #mainimg #mainslider img {
    height: 240px !important;
  }
  #mainimg .catch {
    font-size: 50px;
  }
}

/* ----------------------------------------------
about
------------------------------------------------- */
#about {
  padding-top: 66px;
  padding-bottom: 100px;
  background-color: #faf8f4;
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
#about::before {
  content: "";
  position: absolute;
  width: 840px;
  aspect-ratio: 11/10;
  background-color: #ffffff;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  z-index: 1;
  top: 0;
  right: 0;
}
#about .inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  position: relative;
  z-index: 2;
}
#about h3 {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 40px;
  color: #045cd3;
  line-height: 1.5;
  margin-bottom: 40px;
}
#about .text {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  margin-bottom: 50px;
}
#about .image-box {
  position: absolute;
  right: -50px;
  margin-top: 20px;
  transition: all 0.5s ease-out;
  pointer-events: none;
}
#about .image-box .image1 {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  z-index: -1;
  margin-right: 40px;
  display: none;
}
#about .image-box .image2 {
  position: relative;
  display: block;
  margin-top: 180px;
  z-index: -2;
  display: flex;
  align-items: end;
  width: min(100%, 689px);
  margin-left: auto;
}
#about .image-box .image2 .img:first-child {
  max-width: min(100%, 394px);
}
#about .image-box .image2 .img:last-child {
  max-width: min(100%, 512px);
  margin-left: -31.4949201742%;
}
#about .image-box .image2 .img:last-child img {
  transform: translateX(calc(100% + max((100vw - 1180px) / 2, 10px)));
  transition: transform 10s ease-out;
}
#about .image-box .image2.in .img:last-child img {
  transform: translateX(22.4609375%);
}
@media (max-width: 1320px) {
  #about .image-box {
    right: 0;
  }
}
@media (max-width: 1199px) {
  #about::before {
    content: "";
    position: absolute;
    width: calc(100% - 500px);
    z-index: 1;
    top: 0;
    right: 0;
  }
  #about .image-box {
    width: 50%;
    bottom: -9vw;
  }
  #about .image-box .image1 {
    width: 57%;
  }
  #about h3 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  #about {
    padding-top: 50px;
    padding-bottom: 0;
  }
  #about::before {
    content: "";
    height: 170px;
    width: 170px;
    background-color: #ffffff;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    z-index: 1;
    top: 0;
    right: 0;
  }
  #about .inner {
    flex-direction: column-reverse;
    padding-bottom: 114px;
  }
  #about .image-box {
    /* bottom: unset;
    top: -60px;
    width: 45%;
    margin-left: auto;
    margin-right: auto; */
    bottom: -45px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    right: unset;
  }
  #about .image-box .image1 {
    width: 70%;
    margin-right: 10px;
    display: none;
  }
  #about .image-box .image2 {
    margin-top: 0;
  }
  #about .image-box .image2 .img:first-child {
    max-width: 120px !important;
  }
  #about .image-box .image2 .img:last-child {
    margin-left: max(-31.4949201742%, -60px);
  }
  #about .image-box .image2 .img:last-child img {
    max-width: 190px;
    transform: translateX(calc(100vw - 120px));
  }
  #about h2 {
    margin-bottom: 30px;
  }
  #about h3 {
    font-size: 19px;
    margin-bottom: 30px;
  }
  #about .text {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

/* ----------------------------------------------
business
------------------------------------------------- */
#business {
  background: url(../images/business-bg.webp);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
  padding-top: 205px;
  padding-bottom: 150px;
  overflow: hidden;
}
#business::before {
  position: absolute;
  content: "";
  width: calc(100% - 800px);
  height: 880px;
  top: 0;
  background-color: #faf8f4;
  z-index: 0;
}
#business::after {
  content: "";
  background-color: #faf8f4;
  position: absolute;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  top: 0;
  right: -80px;
  width: 880px;
  aspect-ratio: 10/10;
}
#business .head-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.5s ease-out;
}
#business .inner {
  position: relative;
  z-index: 1;
}
#business h2 {
  text-align: center;
  margin-bottom: 50px;
}
#business .contents {
  display: flex;
  gap: 0 5px;
  margin-bottom: 110px;
}
#business .block {
  background-color: #0032af;
  width: calc((100% - 10px) / 3);
  position: relative;
  padding: 50px 25px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
}
#business .block:nth-child(2) .title-bg {
  line-height: 0.7;
}
#business .title-bg {
  position: absolute;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.4);
  top: -0.07em;
  left: 0;
  line-height: 1.19;
  display: inline;
  vertical-align: bottom;
  z-index: 1;
}
#business h3 {
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
  font-size: 40px;
  color: #ffffff;
  display: block;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  margin-bottom: 30px;
}
#business h3 small {
  font-size: inherit;
  display: block;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
}
#business .image {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  z-index: 3;
  max-width: 460px;
  margin-bottom: 60px;
  margin-top: auto;
}
#business .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 460/280;
}
#business .contents-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
#business .contents-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 56px;
  border-radius: 50px;
  background: #ffffff;
  color: #045cd3;
  text-decoration: none;
  transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  font-size: 14px;
  letter-spacing: 0.08em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  position: relative;
}
#business .contents-btn a:hover {
  opacity: 0.6;
}
#business .contents-btn a::after {
  content: "";
  background: url(../images/arrow2.webp);
  width: 6px;
  height: 9px;
  position: absolute;
  right: 30px;
}
#business .btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
#business .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 90px;
  border-radius: 50px;
  background: #ffffff;
  color: #045cd3;
  text-decoration: none;
  transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  font-size: 18px;
  letter-spacing: 0.08em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  position: relative;
}
#business .btn a:hover {
  opacity: 0.6;
}
#business .btn a::after {
  content: "";
  background: url(../images/arrow3.webp);
  width: 10px;
  height: 15px;
  position: absolute;
  right: 30px;
}
@media (max-width: 1599px) {
  #business .head-image {
    width: 37%;
    top: calc(-13vw + 240px);
  }
  #business h3 {
    font-size: 29px;
  }
}
@media (max-width: 1199px) {
  #business {
    padding-top: 100px;
  }
  #business::before {
    width: calc(100% - 577px);
    height: 659px;
    top: 0;
  }
  #business::after {
    top: 0;
    width: 660px;
  }
  #business .head-image {
    margin-top: -70px;
  }
  #business .block {
    padding: 40px 15px;
    padding-bottom: 60px;
  }
  #business h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  #business .title-bg {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  #business {
    background-size: 125%;
    background-repeat: repeat-y;
    background-position: 0 0;
    padding-bottom: 80px;
    padding-top: 90px;
  }
  #business::before {
    width: calc(100% - 180px);
    height: 16%;
    top: 0;
  }
  #business::after {
    top: 0;
    width: 280px;
    height: 16%;
    right: -100px;
  }
  #business .head-image {
    margin-top: -90px;
  }
  #business .contents {
    display: block;
    gap: unset;
    margin-bottom: 50px;
  }
  #business .block {
    width: 100%;
    padding: 25px 15px;
    padding-bottom: 40px;
  }
  #business .block:not(:last-child) {
    margin-bottom: 10px;
  }
  #business .image {
    max-width: 300px;
    margin-bottom: 45px;
  }
  #business h2 {
    margin-bottom: 40px;
  }
  #business h3 {
    font-size: 18px;
  }
  #business .title-bg {
    font-size: 35px;
  }
  #business .btn a {
    width: 260px;
    height: 60px;
    font-size: 14px;
  }
  #business .btn a::after {
    content: "";
    width: 8px;
    height: 11px;
    position: absolute;
    right: 30px;
    background-size: 100%;
  }
}

/* ----------------------------------------------
case
------------------------------------------------- */
#case {
  background-color: #faf8f4;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
#case .inner {
  display: flex;
  overflow: clip;
}
#case .left {
  width: 48%;
  position: relative;
  padding-left: 10px;
}
#case .contents {
  position: sticky;
  top: 0;
  padding-top: 100px;
  padding-bottom: 100px;
}
#case .contents::before {
  content: "";
  background-color: #ffffff;
  position: absolute;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  top: 0px;
  left: -10px;
  width: 880px;
  width: 55vw;
  aspect-ratio: 10/10;
  display: block;
  z-index: 0;
}
#case .text-box {
  width: -moz-fit-content;
  width: fit-content;
  padding-left: calc((100vw - 1180px) / 2);
  position: relative;
  z-index: 2;
}
#case .text {
  font-size: 18px;
  letter-spacing: 0.08em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  margin-bottom: 50px;
  z-index: 2;
}
#case h2 {
  margin-bottom: 45px;
}
#case .image-box {
  width: 52%;
}
#case .image {
  width: 100%;
  position: sticky;
  top: 0;
  margin: unset;
}
#case .image figcaption {
  background-color: #ffffff;
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 18px;
  letter-spacing: 0.08em;
  border-radius: 50px;
  padding: 20px 25px;
  line-height: 1.6;
}
#case .image:not(:first-child) {
  border-top: 1px #faf8f4 solid;
}
#case .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 84/60;
}
@media (max-width: 1199px) {
  #case .image-box {
    width: calc(100% - 380px);
  }
  #case .image img {
    height: 100vh;
  }
  #case .image figcaption {
    top: 25px;
    left: 25px;
    font-size: 16px;
    padding: 15px 20px;
  }
}
@media (max-width: 767px) {
  #case .inner {
    display: block;
  }
  #case .contents {
    padding-top: 70px;
    padding-bottom: 40px;
  }
  #case .contents::before {
    width: 107vw;
  }
  #case .image-box {
    width: 100%;
  }
  #case .image img {
    height: unset;
    max-height: 300px;
  }
  #case .image:not(:first-child) {
    border-top: unset;
  }
  #case .image figcaption {
    top: 18px;
    left: 18px;
    font-size: 14px;
    padding: 15px 20px;
  }
  #case .left {
    width: 100%;
    padding-right: 10px;
  }
  #case .text-box {
    margin-left: auto;
    margin-right: auto;
  }
  #case h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  #case .text {
    font-size: 14px;
    margin-bottom: 40px;
  }
  #case .btn {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ----------------------------------------------
company
------------------------------------------------- */
#company {
  position: relative;
  z-index: 3;
  font-family: "Noto Sans JP", sans-serif;
  z-index: 0;
}
#company .inner {
  display: flex;
}
#company .contents {
  width: 44%;
  padding-top: 85px;
  padding-bottom: 120px;
  padding-left: 20px;
  padding-right: 20px;
}
#company h2 {
  text-align: center;
  margin-bottom: 30px;
}
#company h3 {
  font-size: 46px;
  letter-spacing: 0.08em;
  color: #045cd3;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  padding-left: 0.6em;
}
#company .text {
  max-width: 545px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  letter-spacing: 0.08em;
  font-weight: 500;
  line-height: 1.8888888889;
  margin-bottom: 80px;
}
#company .btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
#company .image1, #company .image2 {
  width: 28%;
}
#company .image1 img, #company .image2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#company .image1 img {
  -o-object-position: left;
     object-position: left;
}
#company .image2 img {
  -o-object-position: right;
     object-position: right;
}
@media (max-width: 1400px) {
  #company .contents {
    width: 616px;
  }
}
@media (max-width: 1199px) {
  #company .image1, #company .image2 {
    display: none;
  }
  #company .image1 img, #company .image2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #company .contents {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  #company h3 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  #company h2 {
    margin-bottom: 20px;
  }
  #company h3 {
    font-size: 21px;
  }
  #company .contents {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  #company .text {
    font-size: 14px;
    max-width: 460px;
    margin-bottom: 40px;
  }
}

/* ----------------------------------------------
recruit
------------------------------------------------- */
#recruit {
  background: url(../images/recruit-bg.webp);
  background-size: cover;
  background-position: center;
  height: 500px;
  position: relative;
  z-index: 0;
}
#recruit::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(26, 44, 81, 0.35);
  z-index: 1;
}
#recruit .inner {
  z-index: 3;
  height: 100%;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
#recruit h2 {
  font-size: 30px;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 30px;
}
#recruit h2 small {
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #ffffff;
}
#recruit h3 {
  color: #ffffff;
  letter-spacing: 0.08em;
  line-height: 1.5;
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 60px;
}
#recruit .btn a {
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
}
#recruit .btn a:hover {
  opacity: 0.6;
}
#recruit .btn a::after {
  content: "";
  display: block;
  background: url(../images/recruit-arrow.webp);
  width: 40px;
  height: 40px;
  margin-left: 10px;
}
@media (max-width: 1199px) {
  #recruit {
    height: 450px;
  }
}
@media (max-width: 767px) {
  #recruit {
    height: unset;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #recruit .inner {
    flex-direction: column-reverse;
  }
  #recruit h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 25px;
  }
  #recruit h2 small {
    font-size: 16px;
  }
  #recruit h3 {
    font-size: 33px;
    margin-top: 30px;
  }
  #recruit .btn {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  #recruit .btn a::after {
    width: 30px;
    height: 30px;
    background-size: 100%;
  }
}

/* ----------------------------------------------
instagram
------------------------------------------------- */
#instagram {
  margin-top: 80px;
  margin-bottom: 110px;
}
#instagram .inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
#instagram .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#instagram .btn a::before {
  content: "";
  display: block;
  background: url(../images/insta-icon.webp);
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
#instagram .contents {
  display: flex;
  flex-wrap: wrap;
}
#instagram .block {
  position: relative;
  width: 22.5%;
}
#instagram .block:nth-child(n+5) {
  margin-top: 40px;
}
#instagram .block:not(:nth-child(4n+1)) {
  margin-left: 3.3333333333%;
}
#instagram .block:first-child {
  margin-left: 0;
}
#instagram .block a {
  text-decoration: none;
  color: #fff;
}
#instagram .block a:hover .txtbox {
  opacity: 1;
}
#instagram .block .image {
  width: 100%;
  padding-top: 83%;
  position: relative;
}
#instagram .block .image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
#instagram .block .txtbox {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease-out;
  opacity: 0;
}
#instagram .block .text {
  font-size: 12px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  #instagram {
    margin-top: 60px;
    margin-bottom: 80px;
  }
  #instagram .head {
    display: block;
    margin-bottom: 40px;
  }
  #instagram .head .btn {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  #instagram .block {
    width: 48%;
  }
  #instagram .block:not(:first-child) {
    margin-left: 0;
  }
  #instagram .block:nth-child(even) {
    margin-left: 4%;
  }
  #instagram .block:nth-child(n+3) {
    margin-top: 15px;
  }
}

/* ----------------------------------------------
news
------------------------------------------------- */
#news {
  margin-bottom: 70px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  /* //画像あり
  article {
    display: flex;
    padding: 0 20px 20px 20px;
    border-bottom: solid 1px #f3f3f3;
    & + article {
      margin-top: 40px;
    }
    .image {
      flex-shrink: 0;
      width: 60px;
      height: 60px;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        font-family: "object-fit: cover;";
        border-radius: 50%;
      }
    }
    time {
      margin: 15px 30px 0 20px;
      display: block;
      flex-shrink: 0;
      font-size: 14px;
      @include lh(14, 30);
      font-weight: 700;
      color: #fabe00;
    }
    .text {
      margin-top: 15px;
      font-size: 16px;
      @include lh(16, 30);
      font-weight: 700;
      a {
        @include opacity();
        text-decoration: none;
        color: #101010;
      }
    }
  }
   */
}
#news .inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
#news article {
  display: flex;
  padding: 0 20px 10px 20px;
  border-bottom: solid 1px #f3f3f3;
  /*  カテゴリーあり
  .cate {
     margin-right: 30px;
     flex-shrink: 0;
     width: 100px;
     height: 20px;
     background-color: #3c8bd6;
     @include flex-center();
     a {
       @include flex-center();
       width: 100%;
       height: 100%;
       text-decoration: none;
       @include opacity();
     }
   }
   */
}
#news article + article {
  margin-top: 45px;
}
#news article time {
  display: block;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 2.1428571429;
  margin-right: 50px;
  font-weight: 700;
  color: #fabe00;
}
#news article .text {
  font-size: 16px;
  line-height: 1.875;
  font-weight: 700;
}
@media (max-width: 767px) {
  #news {
    /* //画像あり
    article {
      flex-wrap: wrap;
       padding: 0 10px 5px 10px;
       & + article {
         margin-top: 30px;
       }
       time {
         margin-right: 0px;
       }
       .text {
         margin-top: 10px;
         width: 100%;
         font-size: 14px;
       }
     }
     */
  }
  #news article {
    display: block;
    padding: 0 10px 5px 10px;
    /* カテゴリーあり
    flex-wrap: wrap;
    .cate {
      margin-right: 0px;
    }
     */
  }
  #news article + article {
    margin-top: 30px;
  }
  #news article time {
    margin-right: 0px;
  }
  #news article .text {
    font-size: 14px;
  }
}

/* ----------------------------------------------

------------------------------------------------- */
/* ----------------------------------------------

------------------------------------------------- */
/* ----------------------------------------------

------------------------------------------------- */
/* ----------------------------------------------

------------------------------------------------- *//*# sourceMappingURL=index.css.map */