.sailsan-str {
  height: 100%;
}

.sailthree {
  padding-top: 100px;
}

.appear.up .item {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

.appear.down .item {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.appear.left .item {
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
}

.appear.right .item {
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}

.appear .item {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 0;
}

.appear.inview .item {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.appear.inview .item:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.appear.inview .item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.appear.inview .item:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.appear.inview .item:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.appear.inview .item:nth-child(5) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.appear.inview .item:nth-child(6) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.appear.inview .item:nth-child(7) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.appear.inview .item:nth-child(8) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.appear.inview .item:nth-child(9) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.appear.inview .item:nth-child(10) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.btn {
  position: relative;
  display: inline-block;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  font-weight: 600;
  padding: 10px 40px;
  margin: 10px auto;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: black;
  text-decoration: none !important;
}

.btn.float:hover {
  background-color: black;
  color: #ffffff;
  -webkit-box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}

.btn.filled {
  background-color: #ff6600;
  color: #ffffff;
  -webkit-box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}

.btn.filled:hover {
  background-color: #edaa73d9;
  color: black;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.bg .btn.filled:hover {
  background-color: #afb4db;
}

.bg .btn.filled {
  background-color: #a09bd8;
}

.btn.letter-spacing:hover {
  background-color: black;
  letter-spacing: 3px;
  color: #ffffff;
}

.btn.shadow {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn.shadow:hover {
  -webkit-transform: translate(-2.5px, -2.5px);
          transform: translate(-2.5px, -2.5px);
  -webkit-box-shadow: 5px 5px 0 0 black;
          box-shadow: 5px 5px 0 0 black;
}

.btn.solid {
  -webkit-box-shadow: 2px 2px 0 0 black;
          box-shadow: 2px 2px 0 0 black;
  border-radius: 7px;
}

.btn.solid:hover {
  -webkit-transform: translate(2px, 2px);
          transform: translate(2px, 2px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn.slide-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn.slide-bg::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  z-index: -1;
}

.btn.slide-bg:hover {
  color: #ffffff;
}

.btn.slide-bg:hover::before {
  -webkit-transform: none;
          transform: none;
}

.btn.cover-3d {
  position: relative;
  z-index: 1;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 300px;
          perspective: 300px;
}

.btn.cover-3d::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  z-index: -1;
  opacity: 0;
}

.btn.cover-3d:hover {
  color: #ffffff;
}

.btn.cover-3d:hover::before {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

.btn-cubic {
  position: relative;
  display: inline-block;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 300px;
          perspective: 300px;
  width: 150px;
  height: 50px;
  margin: 0 auto;
  cursor: pointer;
  font-weight: 600;
}

.btn-cubic span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid black;
  line-height: 48px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform-origin: center center -25px;
          transform-origin: center center -25px;
  color: black;
}

.btn-cubic .hovering {
  background-color: black;
  color: #ffffff;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
}

.btn-cubic .default {
  background-color: #ffffff;
  color: black;
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
}

.btn-cubic:hover .hovering {
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
}

.btn-cubic:hover .default {
  -webkit-transform: rotateX(-90deg);
          transform: rotateX(-90deg);
}

.mobile-menu__bgimg {
  background-color: #edaa73d9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg .mobile-menu__bgimg {
  background-color: #afb4db;
}

.menu-open-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 60px;
  width: 300px;
}

.mobile-menu__btn {
  background-color: unset;
  border: none;
  outline: none !important;
  cursor: pointer;
}

.mobile-menu__btn > span {
  background-color: black;
  width: 35px;
  height: 2px;
  display: block;
  margin-bottom: 9px;
  -webkit-transition: -webkit-transform 0.7s;
  transition: -webkit-transform 0.7s;
  transition: transform 0.7s;
  transition: transform 0.7s, -webkit-transform 0.7s;
}

.mobile-menu__btn > span:last-child {
  margin-bottom: 0;
}

.mobile-menu__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 102, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  cursor: pointer;
  z-index: 200;
}

.bg .mobile-menu__cover {
  background-color: rgba(49, 46, 44, 0.3);
}

.mobile-menu__main {
  padding: 0;
  -webkit-perspective: 20000px;
          perspective: 20000px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.mobile-menu__item {
  list-style: none;
  -webkit-transform: translate3d(0, 0, -1000px);
          transform: translate3d(0, 0, -1000px);
  padding: 0 40px;
  -webkit-transition: opacity 0.2s,-webkit-transform 0.3s;
  transition: opacity 0.2s,-webkit-transform 0.3s;
  transition: transform 0.3s,opacity 0.2s;
  transition: transform 0.3s,opacity 0.2s,-webkit-transform 0.3s;
}

.mobile-menu__item:nth-child(1) {
  display: none;
}

.mobile-menu__link {
  display: block;
  margin-top: 30px;
  color: black;
  text-decoration: none !important;
}

.menu-open #container {
  -webkit-transform: translate(225px, 60px);
          transform: translate(225px, 60px);
  -webkit-box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
          box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
}

.menu-open .mobile-menu__cover {
  opacity: 1;
  visibility: visible;
}

.menu-open .mobile-menu__item {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

.menu-open .mobile-menu__item:nth-child(1) {
  -webkit-transition-delay: 0.07s;
          transition-delay: 0.07s;
}

.menu-open .mobile-menu__item:nth-child(2) {
  -webkit-transition-delay: 0.14s;
          transition-delay: 0.14s;
}

.menu-open .mobile-menu__item:nth-child(3) {
  -webkit-transition-delay: 0.21s;
          transition-delay: 0.21s;
}

.menu-open .mobile-menu__item:nth-child(4) {
  -webkit-transition-delay: 0.28s;
          transition-delay: 0.28s;
}

.menu-open .mobile-menu__item:nth-child(5) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}

.menu-open .mobile-menu__btn > span {
  background-color: black;
}

.menu-open .mobile-menu__btn > span:nth-child(1) {
  -webkit-transition-delay: 70ms;
          transition-delay: 70ms;
  -webkit-transform: translateY(11px) rotate(135deg);
          transform: translateY(11px) rotate(135deg);
}

.menu-open .mobile-menu__btn > span:nth-child(2) {
  -webkit-transition-delay: 0;
          transition-delay: 0;
  -webkit-transform: translateY(-18px) scaleX(0);
          transform: translateY(-18px) scaleX(0);
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.menu-open .mobile-menu__btn > span:nth-child(3) {
  -webkit-transition-delay: 140ms;
          transition-delay: 140ms;
  -webkit-transform: translateY(-11px) rotate(-135deg);
          transform: translateY(-11px) rotate(-135deg);
}

/******************************************************************
Sail3
mobile style
******************************************************************/
body {
  font-family: 'Kiwi Maru','Noto Sans JP','sans-serif';
}

.font-sm, .sub-title {
  font-size: 14px;
}

.font-md, .welcome__description, .items__text {
  font-size: 17px;
}

.font-lr, .items__content .sub-title {
  font-size: 17px;
}

.font-lg, .main-title, .items__content .title {
  font-size: 25px;
}

.mb-sm, .welcome__sub {
  margin-bottom: 16px !important;
}

.mb-lg, .welcome, .items {
  margin-bottom: 80px !important;
}

.pd-sm {
  padding-bottom: 16px !important;
}

.pd-lg, .sailthree {
  padding-bottom: 80px !important;
}

.content-width, .header__inner, .welcome, .items, .footer {
  width: 90%;
  margin: 0 auto;
  max-width: 1080px;
}

.main-title {
  font-weight: 600;
  margin-bottom: 0;
  display: block;
}

.sub-title {
  color: #535353;
}

.flex, .footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#main-content {
  position: relative;
  z-index: 0;
}

main {
  position: relative;
  z-index: -1;
}

#global-container {
  display: none;
}

#global-container.global-loaded {
  display: block;
}

#container {
  background-color: #ff6600;
  position: relative;
  z-index: 10;
  -webkit-transition: -webkit-transform 0.5s, -webkit-box-shadow 0.5s;
  transition: -webkit-transform 0.5s, -webkit-box-shadow 0.5s;
  transition: transform 0.5s, box-shadow 0.5s;
  transition: transform 0.5s, box-shadow 0.5s, -webkit-transform 0.5s, -webkit-box-shadow 0.5s;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}

.header.triggered {
  background-color: rgba(237, 170, 115, 0.5);
  -webkit-box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
          box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
}

.header__nav {
  display: none;
}

.header__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.header__li > a {
  color: black;
  text-decoration: none !important;
  text-transform: uppercase;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sailthree {
  overflow: hidden;
  padding-top: 100px;
  text-align: center;
}

.sailthree svg {
  width: 100%;
}

#mask-line {
  stroke-dasharray: 5000px;
  -webkit-animation: sailthree-written 8s;
          animation: sailthree-written 8s;
  stroke: #ffffff;
  stroke-width: 32.5;
}

#text {
  -webkit-mask: url(#mask-sail);
          mask: url(#mask-sail);
  fill: #ff7f50 !important;
  stroke: #ffffff;
}

.bg #text {
  fill: #9ca1eb !important;
}

@-webkit-keyframes sailthree-written {
  0% {
    stroke-dashoffset: 5000px;
  }
  100% {
    stroke-dashoffset: 0px;
  }
}

@keyframes sailthree-written {
  0% {
    stroke-dashoffset: 5000px;
  }
  100% {
    stroke-dashoffset: 0px;
  }
}

.welcome__inner {
  padding: 10px;
  background-color: #edaa73d9;
  position: relative;
  z-index: 0;
  border-radius: 3px;
  border: solid 1px #ffffff;
}

.welcome__title {
  position: relative;
}

.welcome__title .logo__sail {
  text-shadow: 0.9px 0.9px 1px black;
  -webkit-transition: text-shadow 5s ease 10s;
  transition: text-shadow 5s ease 10s;
}

.welcome__description {
  font-weight: 600;
  line-height: 1.7;
}

.items__inner {
  position: relative;
  z-index: 0;
  border-radius: 3px;
}

.items__content {
  padding: 10px;
  word-wrap: break-word;
  min-width: 0;
}

.items__content .title {
  font-weight: 600;
}

.items__content:nth-child(1) {
  border: solid 1px #ffffff;
  background-color: #edaa73d9;
  border-radius: 10px;
  margin-bottom: 80px;
}

.items__content:nth-child(2) {
  border: solid 1px #ffffff;
  background-color: #edaa73d9;
  border-radius: 10px;
  margin-bottom: 80px;
}

.items__content:nth-child(3) {
  border: solid 1px #ffffff;
  background-color: #edaa73d9;
  border-radius: 10px;
  margin-bottom: 80px;
}

.items__content:nth-child(4) {
  border: solid 1px #ffffff;
  background-color: #edaa73d9;
  border-radius: 10px;
  margin-bottom: 80px;
}

.items__content:nth-child(5) {
  border: solid 1px #ffffff;
  background-color: #edaa73d9;
  border-radius: 10px;
  margin-bottom: 80px;
}

.items__text {
  font-weight: 600;
  line-height: 1.7;
}

.items__text > p {
  margin: 0;
}

.items__text ul {
  position: relative;
  list-style-type: none;
  padding-left: 2rem;
}

.items__text ul li::before {
  font-family: 'Font Awesome 5 Free';
  content: '\f138';
  position: absolute;
  color: #ff6600;
  left: -0.1em;
}

.bg .items__text ul li::before {
  color: #a09bd8;
}

.items__text .skill_paragraph {
  text-align: center;
}

.items__box {
  height: 100%;
  margin-top: 10px;
}

.items__page {
  margin-top: 10px;
  position: relative;
  -webkit-perspective: 200px;
          perspective: 200px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  border: 1px solid #ffffff;
  padding: 2em 0.3em;
  border-radius: 10px;
}

.items__page .page_link {
  color: black;
}

.logo {
  font-size: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.logo__sail {
  color: #ff6600;
}

.bg .logo__sail {
  color: #9ca1eb;
}

.footer {
  padding: 80px 0;
}

.footer__nav {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.modal__position {
  position: relative;
}

.modal__window {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  height: 100%;
  width: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.modal__window.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.modal__content {
  position: absolute;
  left: 50%;
  top: 40%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(255, 108, 0, 0.8);
  width: 80%;
  height: 30%;
  max-width: 600px;
  -webkit-box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
          box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
  -webkit-animation-name: modal;
          animation-name: modal;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  z-index: 3;
  border-radius: 10px;
  border: 1px #ffffff solid;
}

.bg .modal__content {
  background-color: #afb4db;
}

.modal__header {
  padding: 20px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal__close {
  font-size: 2rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 10%;
  height: 10%;
  text-align: center;
}

.modal__close:hover {
  cursor: pointer;
}

.modal__body {
  padding: 10px 20px;
}

@-webkit-keyframes modal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes modal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.overlay__modal {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
  cursor: pointer;
}

.bg .header.triggered {
  background-color: rgba(175, 180, 219, 0.5);
}

.bg #container {
  background-color: #a09bd8;
}

.bg .welcome__inner {
  background-color: #afb4db;
}

.bg .items__content:nth-child(1) {
  background-color: #afb4db;
}

.bg .items__content:nth-child(2) {
  background-color: #afb4db;
}

.bg .items__content:nth-child(3) {
  background-color: #afb4db;
}

.bg .items__content:nth-child(4) {
  background-color: #afb4db;
}

.bg .items__content:nth-child(5) {
  background-color: #afb4db;
}

.desktop-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (min-width: 480px) {
  /******************************************************************
Sail3
Stylesheet: 480
******************************************************************/
}

@media (min-width: 600px) {
  /******************************************************************
Sail3
Stylesheet: 600
******************************************************************/
}

@media (min-width: 960px) {
  /******************************************************************
Sail3
Stylesheet: 960
******************************************************************/
  .header__nav {
    display: block;
  }
  .mobile-menu__btn {
    display: none;
  }
  .items__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .items__content.list01 {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
  .items__content.list02 {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
  .items__content.list03 {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
  .items__content.list04 {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
  .items__content.list05 {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
  .items__text .skill_paragraph {
    padding-top: 3em;
  }
  .modal__body {
    font-size: 20px;
  }
}

@media (min-width: 1280px) {
  /******************************************************************
Sail3
Stylesheet: 1280
******************************************************************/
}
/*# sourceMappingURL=style.css.map */