@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
}

img {
  width: 100%;
  vertical-align: bottom;
}

/*mixin*/
.content {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 2rem 1rem;
}
.content .wp-block-heading {
  margin: 0 0 1rem 0;
}
.content H1.wp-block-heading {
  font-size: 1.75rem;
}
.content H2.wp-block-heading {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  padding: 0.25rem;
  border-bottom: #555 1px solid;
}
.content H2.wp-block-heading:before {
  content: "";
  display: block;
  width: 0.75rem;
  aspect-ratio: 1/1;
  background-color: #555;
  margin: 0.125rem 0.5rem 0 0;
}
.content p {
  padding: 0 1rem 1rem 1rem;
  font-size: 0.9rem;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #333;
}
body header {
  position: fixed;
  top: 0;
  right: 0;
  padding: 1rem;
  display: flex;
  justify-content: flex-end;
  z-index: 9999;
  color: #fff;
}
body header .pc {
  height: 3rem;
  transition: all 0.1s linear 0s;
}
body header .pc .main-menu {
  display: flex;
  padding: 0.5rem;
  transition: all 0.5s ease 0s;
}
body header .pc .main-menu .main-li:not(:last-child) {
  margin: 0 0.5rem 0 0;
}
body header .pc .main-menu .main-li a {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
}
body header .pc .main-menu .main-li a:hover {
  text-decoration: underline;
}
body header .pc .main-menu .main-li .sub-menu {
  transition: all 0.5s ease 0s;
  width: 4rem;
}
body header .pc .main-menu .main-li .sub-menu .sub-li {
  transition: all 0.2s linear 0s;
  white-space: nowrap;
}
body header .pc .main-menu .main-li .sub-menu .sub-li a {
  white-space: nowrap;
}
body header .pc .main-menu .main-li .sub-menu .sub-li:nth-child(n+2) {
  font-size: 0.7rem;
  height: 0;
  overflow: hidden;
}
body header .pc .main-menu .main-li .sub-menu .sub-li:nth-child(n+2) a {
  padding: 0 0.5rem;
}
body header .pc .main-menu .main-li .sub-menu:hover {
  width: 7.5rem;
  padding: 0 0 0 0.5rem;
  background-color: rgba(255, 255, 255, 0.3);
}
body header .pc .main-menu .main-li .sub-menu:hover > .sub-li:nth-child(n+2) {
  height: 1.5rem;
}
body header .pc .main-menu .main-li .sub-menu:hover > .sub-li:nth-child(2) {
  margin: 0.5rem 0 0 0;
}
@media screen and (max-width: 480px) {
  body header .pc {
    display: none;
  }
}
body header .pc.menu-active {
  border: #fff 2px solid;
  padding: 0 1rem;
  background-color: tomato;
}
body header .pc.menu-active .main-menu .main-li .sub-menu:hover {
  background-color: red;
  border: #fff 2px solid;
}
body header .mobile {
  display: none;
  transition: all 1s ease 0s;
}
@media screen and (max-width: 480px) {
  body header .mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    border: #fff 1px solid;
    font-size: 0.7rem;
    padding: 0.25rem;
  }
  body header .mobile.switch-active {
    background-color: tomato;
  }
}
body header #mobile-menu {
  position: fixed;
  width: 75%;
  height: 100%;
  top: 0;
  left: -100%;
  overflow-y: scroll;
  background-color: rgba(0, 0, 0, 0.7);
  background-color: rgba(99, 106, 107, 0.9);
  transition: all 0.5s ease 0s;
  padding: 1rem;
}
body header #mobile-menu.menu-open {
  left: 0;
}
body header #mobile-menu .menu-mobile .mobile-li {
  border-bottom: rgba(255, 255, 255, 0.7) 1px solid;
  margin: 0 0 0.5rem 0;
}
body header #mobile-menu .menu-mobile .mobile-li a {
  text-decoration: none;
  color: #fff;
}
body header #mobile-menu .menu-mobile .mobile-li .mobile-sub-menu {
  font-size: 0.75rem;
  padding: 0 0 0 1rem;
  max-height: 0;
  /* 初期状態で非表示 */
  overflow: hidden;
  /* コンテンツがはみ出さないようにする */
  transition: max-height 0.5s ease-out;
  /* アニメーションの設定 */
}
body header #mobile-menu .menu-mobile .mobile-li .mobile-sub-menu.open {
  max-height: 500px;
  /* 開いた状態の最大高さ */
}
body header #mobile-menu .menu-mobile .mobile-li .mobile-sub-menu .mobile-sub-li {
  margin: 0 0 0.5rem 0;
}
body header #mobile-menu .menu-mobile .mobile-li .mobile-sub-menu .mobile-sub-li:not(:last-child) {
  border-bottom: rgba(255, 255, 255, 0.7) 1px solid;
}
body header #mobile-menu .menu-mobile .mobile-li .mobile-sub-menu .mobile-sub-li:first-child {
  margin: 0.5rem 0;
}
body header #mobile-menu .menu-mobile .mobile-li .mobile-sub-menu .mobile-sub-li a {
  text-decoration: none;
  color: #fff;
}
body .head-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 250px;
  background-image: url("/wp-content/themes/dev_winglet/images/sub-head_min.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 480px) {
  body .head-box {
    min-height: 100px;
  }
}
body .head-box .title {
  color: #fff;
  font-weight: bold;
  font-size: 1.75rem;
}
body .containar {
  background-color: #eff2ff;
}
body .containar main {
  min-height: 100vh;
}
body .containar main section.key-visual {
  display: block;
  width: 100%;
  position: relative;
}
body .containar main section.key-visual .bg-layer {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
body .containar main section.key-visual .bg-layer .inner {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
body .containar main section.key-visual .bg-layer .inner.sky {
  background-image: url("/wp-content/themes/dev_winglet/images/wls_sky.png");
  background-position: center center;
  animation: zoom_bg 60s ease 0s infinite;
}
body .containar main section.key-visual .bg-layer .inner.wing {
  background-image: url("/wp-content/themes/dev_winglet/images/wls_wing.png");
  background-position: center right;
}
@media screen and (max-width: 786px) {
  body .containar main section.key-visual .bg-layer .inner.wing {
    background-size: contain;
  }
}
@media screen and (max-width: 480px) {
  body .containar main section.key-visual .bg-layer .inner.wing {
    background-size: contain;
  }
}
body .containar main section.key-visual .bg-layer .inner.home-content {
  display: grid;
  grid-template-areas: "catch .... ...." "catch info info";
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto 50%;
}
@media screen and (max-width: 480px) {
  body .containar main section.key-visual .bg-layer .inner.home-content {
    grid-template-columns: 100%;
    grid-template-areas: "catch" "info" "info";
  }
}
body .containar main section.key-visual .bg-layer .inner.home-content .copy-area {
  grid-area: catch;
  display: flex;
  justify-content: center;
  padding: 7.5vh 0 0 0;
  color: #fff;
}
body .containar main section.key-visual .bg-layer .inner.home-content .copy-area p {
  width: 1rem;
  font-size: 2.25vw;
  line-height: 2.5vw;
  font-size: calc(1rem + 1.5vw);
  line-height: calc(1rem + 1.75vw);
}
@media screen and (max-width: 786px) {
  body .containar main section.key-visual .bg-layer .inner.home-content .copy-area p {
    font-size: calc(1.25rem + 1.5vw);
    line-height: calc(1.25rem + 1.75vw);
  }
}
body .containar main section.key-visual .bg-layer .inner.home-content .info-area {
  grid-area: info;
  padding: 1rem 0 1rem 1rem;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
}
@media screen and (max-width: 480px) {
  body .containar main section.key-visual .bg-layer .inner.home-content .info-area {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
}
body .containar main section.key-visual .bg-layer .inner.home-content .info-area .company {
  width: 66%;
}
@media screen and (max-width: 786px) {
  body .containar main section.key-visual .bg-layer .inner.home-content .info-area .company {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  body .containar main section.key-visual .bg-layer .inner.home-content .info-area .company {
    width: 100%;
  }
}
body .containar main section.key-visual .bg-layer .inner.home-content .info-area .company .name-box {
  background-color: rgba(237, 116, 90, 0.8);
}
@media screen and (max-width: 480px) {
  body .containar main section.key-visual .bg-layer .inner.home-content .info-area .company .name-box {
    transform: skew(0) translateX(0);
    padding: 0;
  }
}
body .containar main section.key-visual .bg-layer .inner.home-content .info-area .company .name {
  padding: 0.25rem 1rem;
  color: #fff;
  font-size: 1.25rem;
}
@media screen and (max-width: 480px) {
  body .containar main section.key-visual .bg-layer .inner.home-content .info-area .company .name {
    font-size: 1rem;
    text-align: center;
  }
}
body .containar main section.key-visual .bg-layer .inner.home-content .info-area .company .text-box {
  padding: 0.5rem 1rem 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 0 1rem 7.5%;
}
body .containar main section.key-visual .bg-layer .inner.home-content .info-area .company .text-box .text {
  font-size: 0.9rem;
  text-align: justify;
}
@media screen and (max-width: 480px) {
  body .containar main section.key-visual .bg-layer .inner.home-content .info-area .company .text-box {
    padding: 0.5rem;
    margin: 0 0 1rem 0;
  }
}
body .containar main section.key-visual .bg-layer .inner.home-content .info-area .company .logo {
  display: block;
  margin: 0 1rem 0 auto;
  width: 25%;
}
@media screen and (max-width: 480px) {
  body .containar main section.key-visual .bg-layer .inner.home-content .info-area .company .logo {
    margin: 0 auto;
    width: 40%;
  }
}
body .containar main section.key-visual .bg-layer .inner.home-content .info-area .company .logo.wls {
  margin: 0 0 0.5rem 0;
  min-width: 180px;
  transform: translateX(-3rem);
}
@media screen and (max-width: 480px) {
  body .containar main section.key-visual .bg-layer .inner.home-content .info-area .company .logo.wls {
    margin: 0 auto 1rem auto;
    transform: translateX(0);
  }
}
body .containar main section.key-visual .bg-layer .ufo {
  position: absolute;
  top: 0;
  left: -10vw;
  display: block;
  width: 1rem;
  height: 0.25rem;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  top: 50%;
  animation: ufo_move 5s linear 120s;
}
@media screen and (max-width: 480px) {
  body .containar main section.key-visual .bg-layer .ufo {
    animation: ufo_move_mobile 3s linear 120s;
  }
}
@keyframes ufo_move {
  0% {
    top: 63%;
    left: 0;
  }
  22% {
    top: 60%;
    left: 27%;
  }
  35% {
    top: 60%;
    left: 32%;
  }
  36% {
    top: 60%;
    left: 31.9%;
  }
  60% {
    top: 60%;
    left: 31.9%;
  }
  80% {
    top: 58%;
    left: 37%;
  }
  100% {
    top: 30%;
    left: 100%;
  }
}
@keyframes ufo_move_mobile {
  0% {
    top: 63%;
    left: 0;
  }
  22% {
    top: 60%;
    left: 27%;
  }
  35% {
    top: 60%;
    left: 32%;
  }
  36% {
    top: 60%;
    left: 31.9%;
  }
  60% {
    top: 60%;
    left: 31.9%;
  }
  80% {
    top: 58%;
    left: 37%;
  }
  100% {
    top: 57%;
    left: 100%;
  }
}
body .containar main section.contents {
  width: 100%;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
body .containar main section.contents .headline {
  width: 100%;
  margin: 0 auto 1rem auto;
  max-width: 960px;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}
body .containar main section.contents .headline.large {
  padding: 0.25rem;
  border-bottom: #555 1px solid;
  font-weight: bold;
}
body .containar main section.contents .headline.large p {
  display: flex;
  align-items: center;
}
body .containar main section.contents .headline.large p:before {
  content: "";
  display: block;
  width: 0.75rem;
  aspect-ratio: 1/1;
  background-color: #555;
  margin: 0.125rem 0.5rem 0 0;
}
body .containar main section.contents .column {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 1rem 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 1rem auto;
}
body .containar main section.contents .column .head {
  text-align: justify;
  padding: 0.5rem;
}
body .containar main section.contents .column .text {
  text-align: justify;
  font-size: 0.9rem;
  padding: 0.5rem;
  line-height: 1.4rem;
  margin: 0 auto;
}
@media screen and (min-width: 787px) {
  body .containar main section.contents .column .text {
    width: 100%;
    max-width: 960px;
  }
}
body .containar main section.contents .column.two-column {
  justify-content: center;
}
@media screen and (max-width: 480px) {
  body .containar main section.contents .column.two-column {
    flex-direction: column;
  }
}
body .containar main section.contents .column.two-column .image {
  flex: 0 0 30%;
}
body .containar main section.contents .column.two-column .box {
  flex: 0 1 40%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
body .containar main section.contents .column.two-column .box .head {
  background-color: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-weight: bold;
}
body .containar main section.contents .column.two-column .box .text {
  padding: 0.5rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.1);
  border-left: rgba(0, 0, 0, 0.25) 1px solid;
  border-right: rgba(0, 0, 0, 0.25) 1px solid;
  border-bottom: rgba(0, 0, 0, 0.25) 1px solid;
}
body .containar main section.contents .column.two-column .box .link-box {
  width: 100%;
  text-align: right;
  padding: 0.5rem;
}
body .containar main section.contents .column.two-column .box .link-box a .more {
  width: 18.125%;
}
@media screen and (max-width: 480px) {
  body .containar main section.contents .column.two-column .box .link-box a .more {
    width: 24%;
  }
}
body .containar main section.contents .column.double {
  justify-content: center;
  align-items: flex-start;
}
body .containar main section.contents .column.double img {
  flex: 0 0 28%;
  aspect-ratio: 4/3;
}
body .containar main section.contents .column.double p {
  flex: 0 0 50%;
  margin: 0;
  padding: 0 0 0 0.5rem;
}
body .containar main section.contents.update, body .containar main section.contents.about {
  background-color: #f8f8ff;
}
body .containar main section.contents.products {
  background-image: url("/wp-content/themes/dev_winglet/images/sample2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
body .containar main section.contents .contents-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 3rem 0 3rem;
}
@media screen and (max-width: 480px) {
  body .containar main section.contents .contents-list {
    padding: 0;
  }
}
body .containar main section.contents .contents-list li {
  display: flex;
  flex-direction: column;
  flex: 0 0 32.5%;
  background-color: rgba(220, 220, 220, 0.8);
  padding: 1rem;
  margin: 0 0 1.5% 0;
  transition: all 0.5s ease 0s;
  aspect-ratio: 1/1.4;
}
body .containar main section.contents .contents-list li .image-frame {
  overflow: hidden;
}
body .containar main section.contents .contents-list li .image-frame img {
  transition: all 0.5s ease 0s;
}
body .containar main section.contents .contents-list li:hover {
  background-color: rgb(220, 220, 220);
}
body .containar main section.contents .contents-list li:hover .image-frame img {
  transform: scale(1.1);
}
@media screen and (max-width: 786px) {
  body .containar main section.contents .contents-list li {
    flex: 0 0 49.5%;
  }
}
@media screen and (max-width: 480px) {
  body .containar main section.contents .contents-list li {
    flex: 0 0 100%;
    margin: 0 0 1em 0;
  }
}
body .containar main section.contents .contents-list li .topic {
  flex: 0;
  border: none;
  background-color: rgba(0, 0, 0, 0.25);
  color: #fff;
  padding: 0.5rem;
  text-align: center;
  font-weight: bold;
}
body .containar main section.contents .contents-list li .text-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body .containar main section.contents .contents-list li .text-box .text {
  text-align: justify;
  padding: 1rem 0.25rem;
  font-size: 0.8rem;
}
body .containar main section.contents .contents-list li .text-box .link-box {
  text-align: right;
}
body .containar main section.contents .contents-list li .text-box .link-box a .more {
  width: 25%;
  margin: 0 0 0 auto;
}
body .containar main section.contents .achievements-list {
  margin: 0 auto 1rem auto;
  width: 100%;
  max-width: 960px;
  padding: 0 2rem;
  list-style: disc;
}
@media screen and (max-width: 480px) {
  body .containar main section.contents .achievements-list {
    padding: 0;
    list-style: none;
  }
}
body .containar main section.contents .achievements-list li p {
  text-align: justify;
}
body .containar main section.contents .achievements-list li a {
  color: #333;
}
body .containar main section.contents .achievements-list li a p {
  display: inline-block;
}
body .containar main section.contents .achievements-list li a p:hover {
  color: red;
  text-decoration: underline !important;
}
@media screen and (max-width: 480px) {
  body .containar main section.contents .achievements-list li {
    margin: 0 0 0.5rem 0;
    border-bottom: #999 2px dotted;
    padding: 0.25rem;
  }
}
body .containar main section.contents .card-list {
  margin: 0 auto 1rem auto;
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  body .containar main section.contents .card-list {
    padding: 0;
  }
}
body .containar main section.contents .card-list li {
  flex: 0 0 49%;
  padding: 1rem;
  background-color: #fff;
  margin: 0 0 2% 0;
  box-shadow: 4px 8px 8px -8px #777;
}
@media screen and (max-width: 480px) {
  body .containar main section.contents .card-list li {
    flex: 0 0 100%;
  }
}
body .containar main section.contents .card-list li .title {
  font-weight: bold;
  margin: 0 0 1rem 0;
  background-color: #698aab;
  color: #fff;
  padding: 0.5rem 0.25rem;
  font-size: 1.2rem;
}
body .containar main section.contents .card-list li table {
  width: 100%;
  border-collapse: collapse;
}
body .containar main section.contents .card-list li table tr:not(.chop) {
  border-bottom: #999 2px dotted;
}
body .containar main section.contents .card-list li table th {
  text-align: center;
  line-height: 1.2rem;
  padding: 0.25rem 0.25rem 0.25rem 0.5rem;
}
@media screen and (max-width: 480px) {
  body .containar main section.contents .card-list li table th {
    font-size: 0.8rem;
    width: 23%;
  }
}
body .containar main section.contents .card-list li table td {
  padding: 0.25rem 0.5rem 0.25rem 0.25rem;
}
body .containar main section.contents .partner-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
body .containar main section.contents .partner-list li {
  display: flex;
  align-items: center;
  justify-content: center;
}
body .containar main section.contents .partner-list li .logo,
body .containar main section.contents .partner-list li .text {
  text-align: center;
}
body .containar main section.contents .partner-list li:first-child {
  flex: 0 0 100%;
  margin: 2rem 0;
}
body .containar main section.contents .partner-list li:first-child a {
  flex: 0 0 40%;
}
@media screen and (max-width: 480px) {
  body .containar main section.contents .partner-list li:first-child a {
    flex: 0 0 100%;
  }
}
body .containar main section.contents .partner-list li:first-child a img {
  max-width: 384px;
}
body .containar main section.contents .partner-list li:nth-child(n+2) {
  flex: 0 0 20%;
  flex-direction: column;
}
@media screen and (max-width: 480px) {
  body .containar main section.contents .partner-list li:nth-child(n+2) {
    flex: 0 0 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  body .containar main section.contents .partner-list li:nth-child(n+2) .logo {
    flex: 0 0 30%;
  }
}
body .containar main section.contents .partner-list li:nth-child(n+2) a {
  text-decoration: none;
}
body .containar main section.contents .partner-list li:nth-child(n+2) a p {
  color: #333;
  font-size: 0.7rem;
}
body .containar main section.contents .contact-list {
  margin: 0 auto 1rem auto;
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
}
body .containar main section.contents .contact-list li {
  flex: 0 0 49.5%;
}
body footer {
  background-color: #f8f8ff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
body footer .link-list {
  width: 100%;
  display: flex;
  background-color: #698aab;
  display: flex;
  justify-content: center;
  align-items: center;
}
body footer .link-list li {
  margin: 0.25rem;
}
body footer .link-list li a {
  text-decoration: none;
  color: #fff;
  font-size: 0.7rem;
  transition: all 0.5s ease 0s;
}
body footer .link-list li a:hover {
  color: yellow;
}
body footer .copyright {
  padding: 1rem;
  font-size: 0.7rem;
}
body footer #gotoTop {
  position: fixed;
  right: 1rem;
  bottom: -10vh;
  border: #fff 1px solid;
  background-color: tomato;
  padding: 0.5rem;
  color: #fff;
  cursor: pointer;
  transition: all 1s linear 0s;
}
@media screen and (max-width: 480px) {
  body footer #gotoTop {
    font-size: 0.7rem;
  }
}
body footer #gotoTop.top-active {
  bottom: 1rem;
}
body .shippori {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
@keyframes zoom_bg {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}/*# sourceMappingURL=style.css.map */