:root, :host {
  --color-main: #0068B7;
  --color-sub: #48D2F5;
  --color-base: #F0FDFD;
  --color-base2: #DBF6F3;
  --color-black: black;
  --color-white: white;
  --color-gray: #505050;
  --fontfamily-mincho: "Zen Old Mincho", serif;
  --fontfamily-noto: "Noto Sans", sans-serif;
  --fontsize-14: 14px;
  --lineheight-14: 180%;
  --anim-duration: 0.5s;
}

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

* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6, ul, li {
  overflow-wrap: break-word;
  padding: 0;
  margin: 0;
}

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

article, aside, footer, header, main, section {
  display: block;
}

body {
  color: var(--color-main);
  background-color: var(--color-base);
  -webkit-font-smoothing: antialiased;
  font-family: var(--fontfamily-noto);
  position: relative;
}
body a {
  text-decoration: none;
}
body .cardVisual {
  overflow: hidden;
  pointer-events: none;
}
body .cardVisual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  body .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  body .pc {
    display: none;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  font-family: var(--fontfamily-noto);
  align-items: center;
  height: 96px;
  width: 100%;
  padding: 24px 5vw 0;
  background-color: var(--color-white);
  gap: 60px;
}
header::before {
  content: "";
  width: 100%;
  height: 24px;
  background-color: var(--color-main);
  position: absolute;
  left: 0;
  top: 0;
}
header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 596px;
  width: 100%;
  gap: 4.5vw;
}
header .nav nav {
  width: 100%;
}
header .nav ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .nav ul li a {
  color: var(--color-main);
  font-weight: bold;
  text-decoration: none;
}
header .nav .contact {
  font-size: 14px;
  color: var(--color-white);
  background-color: var(--color-sub);
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  white-space: nowrap;
}
header .bar {
  display: none;
}
@media screen and (max-width: 767px) {
  header .nav {
    position: fixed;
    padding: 24px 0 40px;
    z-index: 2;
    top: 24px;
    left: 0;
    background-color: var(--color-white);
    text-align: center;
    width: 100%;
    max-width: none;
    transform: translateX(100%);
    transition: all 0.3s;
  }
  header .nav ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: none;
    flex-direction: column;
    row-gap: 0;
  }
  header .nav ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: 0.4s all;
  }
  header .nav ul li:last-child {
    padding-bottom: 0;
  }
  header .nav ul li:hover {
    background: #ddd;
  }
  header .nav ul li a {
    width: auto;
    display: block;
    padding: 1em 0;
    text-decoration: none;
    position: relative;
  }
  header .nav ul li a::before {
    position: absolute;
    left: 14px;
    top: 14px;
  }
  header .nav .contact {
    padding: 15px 24px 17px;
    margin: 24px auto 0;
    font-size: 16px;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  header .nav.active {
    opacity: 100;
    display: block;
    transform: translateX(0%);
  }
  header .bar {
    display: block;
    position: absolute;
    z-index: 3;
    right: calc(5vw - 14px);
    bottom: 4px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    text-align: center;
  }
  header .bar span {
    display: block;
    position: absolute;
    width: 26px;
    height: 4px;
    left: 17px;
    transition: 0.3s ease-in-out;
    background-color: var(--color-main);
  }
  header .bar span:nth-child(1) {
    top: 19px;
  }
  header .bar span:nth-child(2) {
    top: 28px;
  }
  header .bar span:nth-child(3) {
    top: 37px;
  }
  header .bar.active span:nth-child(1) {
    top: 28px;
    transform: rotate(-45deg);
  }
  header .bar.active span:nth-child(2), header .bar.active span:nth-child(3) {
    top: 28px;
    transform: rotate(45deg);
  }
}

footer {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  height: 96px;
  width: 100%;
  padding: 0 5vw 24px;
  background-color: var(--color-white);
  color: var(--color-gray);
}
footer::after {
  content: "";
  width: 100%;
  height: 24px;
  background-color: var(--color-main);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  footer {
    font-size: 14px;
  }
}

main {
  position: relative;
}
main section {
  position: relative;
}
main section h1.h1Main {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
  text-align: center;
  font-family: var(--fontfamily-mincho);
  color: var(--color-main);
  font-size: 32px;
  padding: 0 48px 6px;
  border-bottom: 3px solid var(--color-sub);
}
main section h2.h2Main {
  width: 300px;
  height: auto;
  aspect-ratio: 426/241;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  padding-top: 24px;
  color: var(--color-white);
  font-size: 14px;
  margin: 0 auto;
}
main section h3.h3Main {
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 0;
  font-family: var(--fontfamily-mincho);
  color: var(--color-main);
  font-size: 28px;
  padding: 0 48px 6px;
  border-bottom: 3px solid var(--color-sub);
}
@media screen and (max-width: 767px) {
  main section h1.h1Main {
    font-size: 28px;
  }
}

.popup {
  display: none;
}
.popup .popupBase, .popup .popupFrame {
  transition-duration: var(--anim-duration);
  opacity: 0;
}
.popup .popupBase.active, .popup .popupFrame.active {
  opacity: 1;
}
.popup.active {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup.active .popupBase {
  width: 100%;
  height: 100vh;
  background: rgba(240, 253, 253, 0.85);
  position: fixed;
  left: 0;
  top: 0;
}
.popup.active .popupFrame {
  position: relative;
  border-radius: 16px;
  background-color: var(--color-white);
  max-width: 800px;
  padding: 76px 5vw 64px;
}
.popup.active .popupFrame .popupCorner {
  position: absolute;
  right: 16px;
  top: 16px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 12px;
}
.popup.active .popupFrame .popupCorner .popupClose {
  width: 48px;
  height: auto;
  aspect-ratio: 1/1;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_close.svg);
  cursor: pointer;
}
.popup.active .popupFrame .popupCorner h5 {
  font-size: 22px;
  border-bottom: 3px solid var(--color-sub);
}
.popup.active .popupFrame h3 {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  gap: 22px;
}
.popup.active .popupFrame h3::before {
  content: "";
  width: 68px;
  height: auto;
  aspect-ratio: 1/1;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_about_town.svg);
}
.popup.active .popupFrame h3 .btn {
  position: absolute;
  right: 0;
  bottom: 15px;
  width: 180px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-sub);
  color: var(--color-base);
  border-radius: 19px;
  font-size: 20px;
  font-weight: bold;
}
.popup.active .popupFrame h3 .btn::after {
  content: "";
  position: absolute;
  width: 28px;
  height: auto;
  aspect-ratio: 1/1;
  top: 5px;
  right: 5px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_btn_arrow.svg);
}
.popup.active .popupFrame .inner {
  margin-top: 20px;
  max-height: calc(100vh - 268px);
  overflow-y: auto;
  padding-left: 90px;
}
.popup.active .popupFrame .inner h5 {
  font-size: 22px;
  font-family: var(--fontfamily-mincho);
  font-weight: 900;
  margin-top: 46px;
  transform: translateX(-2px);
}
.popup.active .popupFrame .inner h5:first-child {
  margin-top: 0;
}
.popup.active .popupFrame .inner h6 {
  font-size: 14px;
  margin-top: 12px;
  color: var(--color-sub);
}
.popup.active .popupFrame .inner p {
  color: var(--color-gray);
  margin-top: 6px;
  font-size: 14px;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .popup.active .popupFrame {
    width: calc(100% - 32px);
    padding-bottom: 24px;
  }
  .popup.active .popupFrame h3 {
    margin-bottom: 40px;
  }
  .popup.active .popupFrame h3 .btn {
    bottom: -32px;
  }
  .popup.active .popupFrame .inner {
    padding-left: 0;
  }
}

.gridCase {
  margin: 64px 5vw 0;
  display: grid;
  gap: 80px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

#top {
  width: 100%;
  padding-top: 95px;
  padding-bottom: 40px;
  background-color: var(--color-white);
  font-family: var(--fontfamily-mincho);
}
#top .hero {
  width: 100%;
  height: calc(100vh + 150px);
  background-position: center top 65%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/main.webp);
  position: relative;
}
#top .hero .inner {
  height: 50%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#top .hero .inner h1 {
  margin-top: 5vh;
}
#top .hero .inner h3 {
  margin-top: 4vh;
  font-weight: 900;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-main);
}
#top .hero .inner p {
  text-align: center;
  margin-top: 2vh;
  font-size: 14px;
  font-weight: 900;
  line-height: 180%;
}
#top .scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#top .scroll .scrollCircle {
  position: absolute;
  left: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-white);
}
#top .scroll .scrollCircle::after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: -3px;
  top: -3px;
  border-radius: 50%;
  border: 1px solid var(--color-white);
}
@keyframes arrowMovePC {
  0% {
    bottom: 80px;
  }
  100% {
    bottom: 0;
  }
}
@keyframes arrowMoveSP {
  0% {
    bottom: 0;
  }
  100% {
    bottom: 80px;
  }
}
@keyframes arrowHeight {
  0% {
    height: 0px;
  }
  100% {
    height: 80px;
  }
}
@keyframes arrowMoveHide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
#top .scroll::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 80px;
  background-color: var(--color-white);
  animation: arrowHeight 1.6s ease-in-out infinite, arrowMoveHide 1.6s ease-out infinite;
}
#top .scroll span {
  display: block;
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}
#top .scroll.scrollPC {
  top: 79vh;
}
#top .scroll.scrollPC::after {
  top: -80px;
}
#top .scroll.scrollPC .scrollCircle {
  bottom: 74px;
}
#top .scroll.scrollPC span {
  width: 40px;
  height: auto;
  aspect-ratio: 49/80;
  left: -20px;
  background-image: url(../img/icon_mouse.svg);
  animation: arrowMovePC 1.6s ease-in-out infinite, arrowMoveHide 1.6s ease-out infinite;
  transform: translateY(64px);
}
#top .scroll.scrollSP {
  top: 85vh;
}
#top .scroll.scrollSP::after {
  bottom: 0;
}
#top .scroll.scrollSP .scrollCircle {
  bottom: -6px;
}
#top .scroll.scrollSP span {
  width: 40px;
  height: auto;
  aspect-ratio: 50/65;
  left: -20px;
  background-image: url(../img/icon_finger.svg);
  animation: arrowMoveSP 1.6s ease-in-out infinite, arrowMoveHide 1.6s ease-out infinite;
}
#top .wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
#top .wave span {
  position: absolute;
  width: 100%;
  left: 0;
  background-size: 2212px;
  background-repeat: repeat-x;
  background-position: left 0 bottom;
  transform-origin: center bottom;
  opacity: 0.6;
}
#top .wave span:nth-child(1) {
  opacity: 1;
  bottom: -1px;
  height: 115px;
  background-image: url(../img/wave1.svg);
  animation: headBG 240s linear 0s infinite;
}
#top .wave span:nth-child(2) {
  bottom: 45px;
  height: 115px;
  background-image: url(../img/wave2.svg);
  animation: headBG 120s linear 0s infinite;
}
#top .wave span:nth-child(3) {
  bottom: 30px;
  height: 180px;
  background-image: url(../img/wave3.svg);
  animation: headBG2 90s linear 0s infinite;
  transform: scaleY(0.6);
}
#top .wave span:nth-child(4) {
  bottom: 48px;
  height: 180px;
  background-image: url(../img/wave4.svg);
  animation: headBG2 70s linear 0s infinite;
  transform: scaleY(0.6);
}
#top .wave span:nth-child(5) {
  bottom: 10px;
  height: 250px;
  background-image: url(../img/wave5.svg);
  animation: headBG2 110s linear 0s infinite;
  transform: scaleY(0.6);
}
@keyframes headBG {
  0% {
    background-position: 0px bottom;
  }
  100% {
    background-position: -2212px bottom;
  }
}
@keyframes headBG2 {
  0% {
    background-position: 0px bottom;
    transform: scaleY(0.6);
  }
  12.5%, 37.5%, 62.5%, 87.5% {
    transform: scaleY(0.4);
  }
  25%, 50%, 75% {
    transform: scaleY(0.6);
  }
  100% {
    background-position: -2212px bottom;
    transform: scaleY(0.6);
  }
}
#top #concept {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100px);
}
#top #concept li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
#top #concept li img {
  width: 200px;
}
#top #concept li h3 {
  font-size: 21px;
}
#top::after {
  content: "";
  width: 100%;
  height: 114px;
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 2349px;
  background-image: url(../img/bg1_top.svg);
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media screen and (min-width: 768px) {
  #top h1 img {
    height: 20vh;
  }
  #top h3 {
    font-size: 24px;
  }
  #top .scrollSP {
    opacity: 0;
  }
  #top #concept li {
    width: 380px;
  }
  #top .photoCase {
    width: 100%;
    height: 300px;
    overflow-x: hidden;
    transform: translateY(-60px);
  }
  #top .photoCase .photoScroller {
    display: grid;
    grid-auto-flow: column;
    gap: 30px;
  }
  #top .photoCase .photoScroller img {
    width: 300px;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 16px;
  }
}
@media screen and (max-width: 767px) {
  #top h1 img {
    width: 46vw;
    max-width: 240px;
  }
  #top h3 {
    font-size: 19px;
  }
  #top .scrollPC {
    opacity: 0;
  }
  #top #concept {
    flex-direction: column;
    gap: 64px;
  }
  #top .photoCase {
    display: none;
  }
}

#about {
  padding-bottom: 40px;
}
#about h2 {
  background-image: url(../img/h2_about.svg);
}
#about .box {
  padding-left: 90px;
  position: relative;
  color: var(--color-gray);
  padding-bottom: 54px;
}
#about .box h4 {
  font-size: 22px;
}
#about .box p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 200%;
}
#about .box .popupShow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 90px);
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-sub);
  color: var(--color-base);
  border-radius: 19px;
  font-size: 20px;
  font-weight: bold;
}
#about .box .popupShow::after {
  content: "";
  position: absolute;
  width: 28px;
  height: auto;
  aspect-ratio: 1/1;
  top: 5px;
  right: 5px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_btn_zoom.svg);
}
#about .box::before {
  content: "";
  position: absolute;
  width: 68px;
  height: auto;
  aspect-ratio: 1/1;
  top: 0;
  left: 0;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_about_town.svg);
}

#news {
  background-color: var(--color-white);
  padding: 180px 0 240px;
}
#news h2 {
  background-image: url(../img/h2_news.svg);
}
#news .gridCase {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}
#news .box {
  display: flex;
  gap: 30px;
  color: var(--color-gray);
}
#news .box .boxImg {
  width: 200px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 16px;
}
#news .box .cardBody {
  width: calc(100% - 230px);
  font-size: 14px;
  padding-bottom: 54px;
  position: relative;
}
#news .box .cardBody h4 {
  font-size: 20px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6px;
}
#news .box .cardBody p {
  margin-top: 6px;
  line-height: 200%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
#news .box .cardBody .btn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-sub);
  color: var(--color-base);
  border-radius: 19px;
  font-size: 20px;
  font-weight: bold;
}
#news .box .cardBody .btn::after {
  content: "";
  position: absolute;
  width: 28px;
  height: auto;
  aspect-ratio: 1/1;
  top: 5px;
  right: 5px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_btn_arrow.svg);
}
#news::before {
  content: "";
  width: 100%;
  height: 114px;
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 2349px;
  background-image: url(../img/bg1_bottom.svg);
  position: absolute;
  left: 0;
  top: -1px;
}
#news::after {
  content: "";
  width: 100%;
  height: 114px;
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 2349px;
  background-image: url(../img/bg2_top.svg);
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media screen and (max-width: 767px) {
  #news .gridCase {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  #news .box {
    flex-direction: column;
  }
  #news .box .cardBody {
    width: 100%;
  }
  #news .box .boxImg {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}

#faq {
  background-color: var(--color-base2);
  padding-bottom: 60px;
}
#faq h2 {
  background-image: url(../img/h2_faq.svg);
}
#faq a {
  text-decoration: underline;
  color: var(--color-sub);
}
#faq .gridCase {
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
}
#faq .gridCase .faqCase {
  background-color: var(--color-white);
  padding: 36px 28px;
  border-radius: 16px;
  height: -moz-fit-content;
  height: fit-content;
}
#faq .gridCase .faqCase .faqHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#faq .gridCase .faqCase .faqHeader h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 22px;
  color: var(--color-gray);
  gap: 20px;
}
#faq .gridCase .faqCase .faqHeader h3::before {
  content: "";
  width: 68px;
  height: auto;
  aspect-ratio: 1/1;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
#faq .gridCase .faqCase .faqHeader span {
  width: 48px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-sub);
  position: relative;
  cursor: pointer;
}
#faq .gridCase .faqCase .faqHeader span::before, #faq .gridCase .faqCase .faqHeader span::after {
  content: "";
  width: 24px;
  height: 6px;
  position: absolute;
  background-color: var(--color-white);
  left: 12px;
  top: 21px;
  transform-origin: center center;
  transition-duration: 0.5s;
}
#faq .gridCase .faqCase .faqHeader.active span::after {
  transform: rotate(90deg);
}
#faq .gridCase .faqCase .faqHeader.faqHeaderProgram h3::before {
  background-image: url(../img/icon_faq_program.svg);
}
#faq .gridCase .faqCase .faqHeader.faqHeaderPayment h3::before {
  background-image: url(../img/icon_faq_payment.svg);
}
#faq .gridCase .faqCase .faqHeader.faqHeaderApplication h3::before {
  background-image: url(../img/icon_faq_appli.svg);
}
#faq .gridCase .faqCase .faqHeader.faqHeaderOperation h3::before {
  background-image: url(../img/icon_faq_operation.svg);
}
#faq .gridCase .faqCase .faqBody {
  padding-left: 88px;
  margin-top: 34px;
}
#faq .gridCase .faqCase .faqBody .box {
  border-top: 1px solid var(--color-sub);
  padding: 32px 0;
}
#faq .gridCase .faqCase .faqBody .box .faqQ, #faq .gridCase .faqCase .faqBody .box .faqA {
  padding: 4px 0 30px 70px;
  font-size: 14px;
  line-height: 200%;
  color: var(--color-gray);
  position: relative;
}
#faq .gridCase .faqCase .faqBody .box .faqQ::before, #faq .gridCase .faqCase .faqBody .box .faqA::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 44px;
  font-weight: 900;
}
#faq .gridCase .faqCase .faqBody .box .faqQ::before {
  content: "Q.";
  color: var(--color-main);
}
#faq .gridCase .faqCase .faqBody .box .faqA::before {
  content: "A.";
  color: var(--color-sub);
}
#faq .gridCase .faqCase .faqBody .box:last-child {
  padding-bottom: 0;
}
#faq .gridCase .faqCase .faqBody .box:last-child .faqA {
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  #faq .gridCase {
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  #faq .gridCase .faqCase {
    padding: 18px 14px;
  }
  #faq .gridCase .faqCase .faqHeader h3 {
    font-size: 18px;
    color: var(--color-gray);
    gap: 8px;
  }
  #faq .gridCase .faqCase .faqHeader h3::before {
    width: 48px;
  }
  #faq .gridCase .faqCase .faqHeader span {
    width: 32px;
  }
  #faq .gridCase .faqCase .faqHeader span::before, #faq .gridCase .faqCase .faqHeader span::after {
    width: 20px;
    height: 4px;
    left: 6px;
    top: 14px;
  }
  #faq .gridCase .faqCase .faqBody {
    margin-top: 18px;
    padding-left: 0;
  }
  #faq .gridCase .faqCase .faqBody .box {
    padding: 32px 0 0;
  }
  #faq .gridCase .faqCase .faqBody .box .faqQ, #faq .gridCase .faqCase .faqBody .box .faqA {
    padding-top: 1px;
    padding-left: 46px;
  }
  #faq .gridCase .faqCase .faqBody .box .faqQ::before, #faq .gridCase .faqCase .faqBody .box .faqA::before {
    font-size: 36px;
  }
}

#contact {
  background-color: var(--color-white);
  padding: 200px 0;
}
#contact .inner {
  margin: 0 5vw;
}
#contact .inner a {
  width: 100%;
  height: 100px;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  border-radius: 16px;
  color: var(--color-white);
  background-color: var(--color-sub);
  text-align: center;
}
#contact .inner a span {
  display: block;
  font-size: 14px;
  font-weight: 500;
}
#contact .inner a::after {
  content: "";
  position: absolute;
  width: 36px;
  height: auto;
  aspect-ratio: 1/1;
  top: 32px;
  right: 22px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_btn_arrow.svg);
}
#contact::before {
  content: "";
  width: 100%;
  height: 114px;
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 2349px;
  background-image: url(../img/bg2_bottom.svg);
  position: absolute;
  left: 0;
  top: -1px;
}
#contact::after {
  content: "";
  width: 100%;
  height: 114px;
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 2349px;
  background-image: url(../img/bg1_top.svg);
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media screen and (max-width: 767px) {
  #contact .inner a {
    font-size: 20px;
    padding-right: 60px;
  }
  #contact .inner a::after {
    right: 12px;
  }
}

#project {
  padding: 60px 0 200px;
}
#project .inner {
  margin: 0 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#project .inner img {
  margin-top: 170px;
}
#project .inner a {
  color: var(--color-sub);
  text-decoration: underline;
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  #project {
    padding-bottom: 120px;
  }
  #project .inner img {
    margin-top: 85px;
  }
  #project .inner a {
    margin-top: 18px;
    font-size: 14px;
  }
}

body.news #news::before, body.news #news::after {
  display: none;
}

main#primary .inner {
  margin: 0 auto;
  box-sizing: border-box;
  max-width: calc(840px + 10vw);
  padding: 0 5vw;
  font-family: var(--fontfamily-noto);
  color: var(--color-black);
}
main#primary #newsTitle {
  background-color: var(--color-white);
  padding-top: 140px;
  padding-bottom: 150px;
}
main#primary #newsTitle h2 {
  width: 200px;
  padding-top: 12px;
  background-image: url(../img/h2_news.svg);
}
main#primary #newsTitle::after {
  content: "";
  width: 100%;
  height: 114px;
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 2349px;
  background-image: url(../img/bg1_top.svg);
  position: absolute;
  left: 0;
  bottom: -1px;
}
main#primary #newsConts {
  padding: 60px 0;
  text-align: left;
}
main#primary #newsConts .newsThumb {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
main#primary #newsConts .newsThumb img {
  border-radius: 16px;
  width: 100%;
  max-width: 600px;
}
main#primary #newsConts h1.h1Main {
  color: var(--color-black);
  text-align: left;
  font-family: var(--fontfamily-noto);
  padding: 0;
  margin: 0 0 40px;
  border: none;
}
main#primary #newsConts h2 {
  color: var(--color-black);
  margin-top: 36px;
  padding-bottom: 4px;
  font-weight: 500;
}
main#primary #newsConts h3 {
  margin-top: 24px;
  font-weight: 700;
  font-size: 19px;
  display: flex;
  gap: 10px;
}
main#primary #newsConts h3::before {
  content: "";
  height: 28px;
  width: 6px;
  background-color: var(--color-sub);
}
main#primary #newsConts h4 {
  margin-top: 12px;
  font-weight: 700;
  font-size: 19px;
  color: var(--color-gray);
}
main#primary #newsConts h5 {
  margin-top: 6px;
  font-weight: 700;
  font-size: 16px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color-main);
  color: var(--color-white);
  padding: 4px 10px;
  border-radius: 8px;
}
main#primary #newsConts h6 {
  margin-top: 6px;
  font-weight: 700;
  font-size: 16px;
}
main#primary #newsConts p {
  margin: 28px 0;
  line-height: normal;
}
main#primary #newsConts .wp-block-image {
  margin: 28px 0;
}
main#primary #newsConts .wp-element-caption {
  text-align: center;
}
main#primary #newsConts ul {
  margin-top: 24px;
}
main#primary #newsConts ul li {
  padding-left: 12px;
  position: relative;
}
main#primary #newsConts ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: var(--color-sub);
  position: absolute;
  left: 0;
  top: 10px;
}
main#primary #newsConts blockquote {
  margin-top: 36px;
  background-color: var(--color-base2);
  padding: 12px 3vw;
  border-radius: 16px;
}
main#primary #newsConts a {
  color: var(--color-sub);
  text-decoration: underline;
}
main#primary #newsConts .size-full {
  width: 100%;
}
main#primary #newsConts .alignleft {
  text-align: left;
  float: none;
}
main#primary #newsConts .alignleft .wp-element-caption {
  text-align: left;
}
main#primary #newsConts .alignRight {
  text-align: right;
  float: none;
}
main#primary #newsConts .alignRight .wp-element-caption {
  text-align: right;
}
main#primary #newsLink {
  background-color: var(--color-white);
  padding: 200px 0 100px;
}
main#primary #newsLink a {
  width: 100%;
  height: 80px;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 16px;
  color: var(--color-white);
  background-color: var(--color-sub);
}
main#primary #newsLink a::after {
  content: "";
  position: absolute;
  width: 36px;
  height: auto;
  aspect-ratio: 1/1;
  top: 22px;
  right: 22px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_btn_arrow.svg);
}
main#primary #newsLink::before {
  content: "";
  width: 100%;
  height: 114px;
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 2349px;
  background-image: url(../img/bg1_bottom.svg);
  position: absolute;
  left: 0;
  top: -1px;
}
@media screen and (max-width: 767px) {
  main#primary #newsLink a {
    font-size: 20px;
    padding-right: 40px;
  }
}/*# sourceMappingURL=common.css.map */