@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif&display=swap");
/* Reset
--------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

body {
  font-size: 1.6rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 2px;
  color: #333;
  background: #fff;
}

@media only screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 480px) {
  body {
    letter-spacing: 1px;
  }
}

.none {
  display: none;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-b {
  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;
}

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

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.float-L {
  float: left;
}

.float-R {
  float: right;
}

/* Basic
--------------------------------------------------------- */
@media screen and (min-width: 481px) {
  body .sp {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  body .pc {
    display: none;
  }
  body .sp {
    display: block;
  }
}

.inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.box {
  width: 90%;
  height: 100%;
  padding: 50px 5%;
  text-align: center;
  z-index: 1;
}

.box .box-title {
  font-size: 5rem;
  margin-bottom: 50px;
}

.box .box-subtitle {
  font-size: 3rem;
  margin-bottom: 50px;
}

.box .box-text {
  font-size: 1.6rem;
  line-height: 200%;
  margin-bottom: 10px;
}

@media only screen and (max-width: 480px) {
  .box {
    width: 95%;
    height: 100%;
    padding: 10% 0%;
  }
  .box .box-title {
    font-size: 4rem;
    margin-bottom: 50px;
  }
  .box .box-subtitle {
    font-size: 2rem;
    margin-bottom: 50px;
  }
}

.column {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.column .col-title {
  margin-bottom: 10px;
}

.column .col-img {
  margin-bottom: 10px;
}

.column .col-text {
  margin-bottom: 10px;
}

.column .col2of1 {
  width: calc(96% / 2);
  margin-right: 4%;
  position: relative;
  overflow: hidden;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.column .col3of1 {
  width: calc(92% / 3);
  margin-right: 4%;
  margin-bottom: 30px;
}

.column .col4of1 {
  width: calc(88% / 4);
  margin-right: 2%;
  margin-bottom: 30px;
}

.column .col5of1 {
  width: calc(80% / 5);
  margin: 2%;
  margin-bottom: 30px;
}

.column .col2of1:nth-child(2n) {
  margin-right: 0%;
}

.column .col3of1:nth-child(3n) {
  margin-right: 0%;
}

.column .col4of1:nth-child(4n) {
  margin-right: 0%;
}

@media only screen and (max-width: 480px) {
  .column .col2of1 {
    width: 100%;
    margin-right: 0%;
  }
  .column .col4of1 {
    width: calc(96% / 2);
    margin-right: 4%;
    position: relative;
    overflow: hidden;
  }
  .column .col4of1:nth-child(2n) {
    margin-right: 0%;
  }
  .column .col5of1 {
    width: calc(88% / 2);
    margin-right: 4%;
    margin-bottom: 30px;
  }
}

.link-Center a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.link-Center a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.link-Center a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.under-line:after {
  margin: 10px auto;
  text-align: center;
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #707070;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}

.btn-Standard {
  margin-top: 50px;
}

.btn-Standard a {
  display: inline-block;
  padding: 20px 150px;
  position: relative;
  color: #1e2946;
  background: #fff;
  border: solid 1px #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn-Standard a:hover {
  color: #fff;
  background: #ffb680;
}

@media only screen and (max-width: 480px) {
  .btn-Standard a {
    padding: 10px 20px;
    position: relative;
    color: #1e2946;
    background: #fff;
  }
}

.button-radius a {
  display: inline-block;
  padding: 5px 20px;
  color: #fff;
  background: #2a779a;
  -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
  font-size: bold;
  border-radius: 100vh;
}

@-webkit-keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 2%;
  }
  100% {
    bottom: 1%;
  }
}

@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 2%;
  }
  100% {
    bottom: 1%;
  }
}

/* header
--------------------------------------------------------- */
#header {
  width: 100%;
}

#header #sns {
  position: absolute;
  left: 0;
  padding: 10px;
}

#header #sns .sns-icon {
  padding: 10px;
}

#header #nav .menu-btn {
  cursor: pointer;
  right: 5px;
  top: 15px;
  width: 60px;
  height: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
  position: fixed;
}

#header #nav span,
#header #nav span::before,
#header #nav span::after {
  width: 30px;
  height: 1.5px;
  content: "";
  display: block;
  position: absolute;
  background-color: #000;
  border-radius: 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 9999;
}

#header #nav span::before {
  bottom: 10px;
}

#header #nav span::after {
  top: 10px;
}

#header #nav #menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#header #nav #menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#header #nav #menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  width: 30px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#header #nav #menu-btn-check:checked ~ .nav-content {
  background-color: #fff;
  -webkit-transform: translateY(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

#header #nav #menu-btn-check:checked ~ #nav-close {
  display: block;
  opacity: 0.5;
}

#header #nav .nav-content {
  left: 0%;
  color: #fff;
  width: 100%;
  height: 90%;
  position: fixed;
  overflow: scroll;
  top: 0;
  z-index: 80;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translate(0, -100%);
  transform: translate(0%, -100%);
}

#header #nav .nav-content ul {
  padding: 100px 10px 0;
}

#header #nav .nav-content ul li {
  margin-bottom: 35px;
  border-bottom: solid 1px #000;
}

#header #nav .nav-content ul li a {
  font-size: 2rem;
  padding: 0 0 10px 0;
  text-align: center;
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

#header #nav .nav-content ul li a p:nth-child(1) {
  font-size: 1rem;
}

#header #nav .nav-content ul .flex-c {
  padding: 0;
  margin: 0;
}

#header #nav .nav-content ul .flex-c li {
  border-bottom: none;
}

#header #nav .nav-content ul .flex-c .sns {
  padding: 10px;
}

#header #nav .nav-content ul li:nth-child(6),
#header #nav .nav-content ul li:nth-child(7) {
  border-bottom: none;
}

@media only screen and (max-width: 480px) {
  #header {
    height: 60px;
  }
  #header #sns {
    padding: 5px;
  }
  #header #sns .sns-icon {
    padding: 5px;
  }
  #header .header-logo {
    width: 50%;
  }
  #header #nav .menu-btn {
    right: 5px;
    top: 15px;
  }
}

/* Footer
--------------------------------------------------------- */
#footer .box {
  position: relative;
  width: 100%;
  padding: 0;
}

#footer .box .recruit {
  padding-top: 5%;
  vertical-align: bottom;
}

#footer .box .column {
  position: absolute;
  bottom: calc(0vw - -10%);
}

@media only screen and (max-width: 480px) {
  #footer .box .column {
    bottom: 20px;
  }
}

@media only screen and (max-width: 480px) {
  #footer .box .column img {
    width: 30px;
  }
}

#footer .copyright {
  padding: 5px 0;
}

#footer .copyright p {
  font-size: 1.4rem;
  text-align: center;
}

@media only screen and (max-width: 480px) {
  #footer .col2of1 {
    width: 40%;
  }
}

/* TOP
--------------------------------------------------------- */
#TOP #sec00 {
  margin-bottom: 5rem;
  width: 100%;
  position: relative;
}

#TOP #sec00 .eye-img {
  width: 100%;
  z-index: -99;
}

#TOP #sec00 .scrolldown {
  padding: -10px;
  position: absolute;
  bottom: 1%;
  right: 50%;
  -webkit-animation: arrowmove 2s ease-in-out infinite;
          animation: arrowmove 2s ease-in-out infinite;
}

#TOP #sec00 .scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #eee;
  -webkit-transform: skewX(-31deg);
          transform: skewX(-31deg);
}

#TOP #sec00 .scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 50px;
  background: #eee;
}

#TOP #sec00 .scrolldown span {
  cursor: pointer;
  padding: 20px;
  position: absolute;
  left: -20px;
  bottom: 10px;
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

@media only screen and (max-width: 480px) {
  #TOP #sec00 .scrolldown {
    display: none;
  }
}

#TOP #sec02 .box-subtitle span,
#TOP #sec03 .box-subtitle span,
#TOP #sec04 .box-subtitle span {
  position: relative;
}

#TOP #sec02 .box-subtitle span::before,
#TOP #sec03 .box-subtitle span::before,
#TOP #sec04 .box-subtitle span::before {
  content: "";
  width: 100px;
  height: 100px;
  opacity: 0.2;
  background: url(../img/logo_mark.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  bottom: -20px;
  left: -100px;
}

@media only screen and (max-width: 480px) {
  #TOP #sec02 .box-subtitle span::before,
  #TOP #sec03 .box-subtitle span::before,
  #TOP #sec04 .box-subtitle span::before {
    width: 50px;
    height: 50px;
    bottom: -8px;
    left: -50px;
  }
}

#TOP #sec02 .col-text {
  padding: 0 3rem;
  line-height: 2.5rem;
}

#TOP .bg {
  position: absolute;
  top: -300px;
}

#TOP #sec03 {
  -webkit-clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 90%);
  clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 90%);
  background-color: #ffb680;
  padding: 100px 0;
}

#TOP #sec03 .col-text {
  padding: 0 3rem;
  line-height: 2.5rem;
}

#TOP #sec04 .col-text {
  padding: 0 3rem;
  line-height: 2.5rem;
}

#TOP #sec04 .arrow {
  margin-top: 3rem;
}

@media only screen and (max-width: 768px) {
  #TOP #sec04 .arrow {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 480px) {
  #TOP #sec04 .col2of1 {
    width: 40%;
    padding: 10px;
  }
}

#TOP #sec04 .box-text {
  margin-bottom: 50px;
}

#TOP #sec05 {
  background-color: #ffb680;
  margin: 0;
}

#TOP #sec05 .box {
  padding: 3%;
}

#TOP #sec05 .box .box-title {
  margin-bottom: 0;
  font-weight: 700;
}

#TOP #sec05 .box .box-text p:nth-child(4) {
  padding-top: 2rem;
}

#TOP #sec06 {
  background-color: #f4f2f2;
}

#TOP #sec06 .box-title {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 50px;
  background: url(../img/sec06/sec06-bg-01.png) no-repeat center/cover;
  padding: 5rem 0;
}

@media only screen and (max-width: 480px) {
  #TOP #sec06 .box-title {
    font-size: 4rem;
    margin-bottom: 50px;
  }
}

#TOP #sec06 .box {
  position: relative;
  padding-top: 0;
}

#TOP #sec06 .column {
  position: relative;
}

#TOP #sec06 .column .col-title {
  padding-bottom: 3rem;
}

#TOP #sec06 .column .col-text {
  padding: 0 5rem;
}

@media only screen and (max-width: 480px) {
  #TOP #sec06 .col2of1 {
    width: 50%;
  }
  #TOP #sec06 .column {
    padding-bottom: 3rem;
  }
  #TOP #sec06 .column .col-title {
    padding-bottom: 2rem;
  }
  #TOP #sec06 .column .col-text {
    padding: 0 2rem;
  }
  #TOP #sec06 .bg-text {
    z-index: 999;
  }
}

#TOP #sec08 .box-text + .box-text {
  margin-bottom: 50px;
}

#TOP #sec08 .col-text {
  padding-bottom: 30px;
}

#TOP #sec08 iframe {
  width: 100%;
  height: 300px;
}

#TOP #sec08 .map {
  position: relative;
  overflow: visible;
}

#TOP #sec08 .map .btn-Standard {
  position: absolute;
  bottom: -25px;
  -webkit-transform: translate(5%, 0%);
          transform: translate(5%, 0%);
}

#TOP #sec08 .map a {
  padding: 15px 50px;
  color: #fff;
  background: #000;
  border: solid 2px #000;
}

#TOP #sec08 .map a:hover {
  color: #000;
  background: #fff;
}

@media only screen and (max-width: 480px) {
  #TOP #sec08 .col-text {
    padding-bottom: 0;
  }
}

#TOP #sec09 .col-text {
  margin-bottom: 30px;
}

@media only screen and (max-width: 480px) {
  #TOP #sec09 {
    /*ドットナビゲーションの設定*/
  }
  #TOP #sec09 .column .col3of1 {
    width: 100%;
    margin: 0 auto;
  }
  #TOP #sec09 .slick-prev,
  #TOP #sec09 .slick-next {
    position: absolute;
    top: 42%;
    cursor: pointer;
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;
    /*矢印の色*/
    border-right: 2px solid #666;
    /*矢印の色*/
    height: 15px;
    width: 15px;
    z-index: 99;
  }
  #TOP #sec09 .slick-prev:before,
  #TOP #sec09 .slick-next:before {
    content: none;
  }
  #TOP #sec09 .slick-prev {
    /*戻る矢印の位置と形状*/
    left: 5%;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  #TOP #sec09 .slick-next {
    /*次へ矢印の位置と形状*/
    right: 5%;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #TOP #sec09 .slick-dots {
    text-align: center;
    margin: 20px 0 0 0;
  }
  #TOP #sec09 .slick-dots li {
    display: inline-block;
    margin: 0 5px;
  }
  #TOP #sec09 .slick-dots button {
    color: transparent;
    outline: none;
    width: 8px;
    /*ドットボタンのサイズ*/
    height: 8px;
    /*ドットボタンのサイズ*/
    display: block;
    border-radius: 50%;
    background: #ccc;
    /*ドットボタンの色*/
  }
  #TOP #sec09 .slick-dots .slick-active button {
    background: #333;
    /*ドットボタンの現在地表示の色*/
  }
}

#TOP #sec10 {
  background-color: #ffb680;
}

#TOP #sec10 .box {
  padding: 3%;
}

#TOP #sec10 .box .box-title {
  font-weight: bold;
  margin-bottom: 0;
}

/* 下層ページ 共通css
--------------------------------------------------------- */
/*# sourceMappingURL=style.css.map */