@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-size: 16px;
  color: #232526;
  /*== 背景が流れる（左から右） */
  /*hoverした際の形状*/
}
body .wrap {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
body .fl-sb {
  display: flex;
  justify-content: space-between;
}
body .fl-sa {
  display: flex;
  justify-content: space-around;
}
body .fl {
  display: flex;
}
body .reverse {
  flex-direction: row-reverse;
}
body .mpc {
  display: none;
}
@media (max-width: 1300px) {
  body .mpc {
    display: block;
  }
}
body .tab {
  display: none;
}
@media (max-width: 1075px) {
  body .tab {
    display: block;
  }
}
body .sp {
  display: none;
}
@media (max-width: 665px) {
  body .sp {
    display: block;
  }
}
body .bg-blue {
  background-color: #CEDBDB;
}
body h1 {
  font-size: 100px;
  margin-bottom: 30px;
}
@media (max-width: 1075px) {
  body h1 {
    font-size: 70px;
  }
}
@media (max-width: 665px) {
  body h1 {
    font-size: 10vw;
  }
}
@media (max-width: 480px) {
  body h1 {
    font-size: 12vw;
  }
}
body .ttl {
  margin-bottom: 35px;
}
body .ttl h2 {
  font-size: 72px;
  font-weight: 500;
}
@media (max-width: 800px) {
  body .ttl h2 {
    font-size: 60px;
    line-height: 0.9;
  }
}
@media (max-width: 480px) {
  body .ttl h2 {
    font-size: 12vw;
  }
}
body .ttl span {
  display: block;
  font-size: 18px;
  margin-top: -20px;
}
@media (max-width: 800px) {
  body .ttl span {
    margin-top: 10px;
  }
}
body h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
body h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #35A0C9;
  margin-top: 15px;
}
@media (max-width: 830px) {
  body h3 {
    font-size: 22px;
  }
}
body a {
  color: #232526;
  text-decoration: none;
}
body a i {
  transition: transform 0.3s ease;
}
body a:hover i {
  transform: translateX(10px);
}
body section {
  margin: 85px 0;
}
body header {
  margin: 10px auto 30px;
}
@media (max-width: 1023px) {
  body header {
    margin: 40px auto 30px;
  }
}
@media (max-width: 480px) {
  body header {
    margin: 15px auto 10px;
  }
}
body header .fl-sb {
  align-items: center;
}
body header .logo {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 10px;
}
body header .logo img {
  display: block;
  width: 45px;
}
body header .logo p {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 1023px) {
  body header nav {
    display: inline;
    margin-top: -12px;
  }
}
body header nav ul {
  width: 730px;
}
@media (max-width: 1155px) {
  body header nav ul {
    width: 600px;
  }
}
body header nav ul li {
  list-style: none;
}
body header nav ul li a {
  position: relative;
  padding: 0 5px 5px;
}
body header nav ul li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #35A0C9;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s;
  /*変形の時間*/
}
body header nav ul li a:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top;
  /*左から右に向かう*/
}
body header nav .menu__box {
  display: flex;
  flex-direction: row;
  list-style-type: none;
}
@media (max-width: 1023px) {
  body header nav .menu__box {
    flex-direction: column;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    margin: -600px 0 0 0;
    padding: 0.6em 0;
    text-align: center;
    background-color: #fff;
    box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition-duration: 0.5s;
  }
}
body header nav .menu__box .menu__item {
  display: flex;
  flex-direction: column;
  padding: 0 1em 0 1.9em;
  color: #2d303a;
  font-size: 14px;
}
@media (max-width: 1023px) {
  body header nav .menu__box .menu__item {
    display: block;
    padding: 12px 24px;
    color: #ffffff;
    font-size: 18px;
    transition-duration: 0.5s;
  }
}
body header nav #menu__toggle {
  opacity: 0;
}
body header nav #menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
body header nav #menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
  background: #35A0C9;
}
body header nav #menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
  background: #35A0C9;
}
body header nav #menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
  margin: 0;
}
body header nav .menu__btn {
  transition-duration: 0.25s;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  bottom: 2px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 3;
}
body header nav .menu__btn span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #232526;
}
body header nav .menu__btn span::before {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #232526;
  content: "";
  top: -8px;
  transition-duration: 0.25s;
}
body header nav .menu__btn span::after {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #232526;
  content: "";
  top: 8px;
  transition-duration: 0.25s;
}
@media screen and (min-width: 1024px) {
  body header nav .menu__btn {
    display: none;
  }
}
body .mv {
  margin: 10px 0 85px;
}
body .mv .fl {
  flex-direction: row-reverse;
}
body .mv .fl video {
  position: relative;
  box-shadow: -50px 50px 0px 0px #CEDBDB;
  width: 70vw;
}
@media (max-width: 1075px) {
  body .mv .fl video {
    width: 80vw;
  }
}
@media (max-width: 665px) {
  body .mv .fl video {
    width: 95vw;
  }
}
body .mv .fl .txt {
  position: absolute;
  z-index: 1;
  left: 5%;
  top: 55%;
  text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.97), 0px 0px 5px rgb(255, 255, 255);
}
@media (max-width: 1075px) {
  body .mv .fl .txt {
    top: 33vw;
  }
}
@media (max-width: 665px) {
  body .mv .fl .txt {
    top: 65vw;
  }
}
@media (max-width: 480px) {
  body .mv .fl .txt {
    top: 80vw;
  }
}
body .mv .fl .txt .bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body .mv .fl .txt .bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body .mv .fl .txt .bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #b2d6d6;
}
@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
body .mv .fl .txt .bgappearTrigger,
body .mv .fl .txt .bgLRextendTrigger {
  opacity: 0;
}
body .mv .fl .txt p {
  font-size: 28px;
}
@media (max-width: 1075px) {
  body .mv .fl .txt p {
    font-size: 24px;
  }
}
@media (max-width: 625px) {
  body .mv .fl .txt p {
    font-size: 5vw;
  }
}
body .news {
  padding: 80px 50px;
  margin: 200px 0 85px;
  position: relative;
}
@media (max-width: 1480px) {
  body .news {
    margin: 250px 0 85px;
  }
}
@media (max-width: 1325px) {
  body .news {
    margin: 300px 0 85px;
  }
}
@media (max-width: 1125px) {
  body .news {
    margin: 350px 0 85px;
  }
}
@media (max-width: 1075px) {
  body .news {
    margin: 250px 0 85px;
  }
}
@media (max-width: 768px) {
  body .news {
    margin: 200px 0 85px;
  }
}
@media (max-width: 665px) {
  body .news {
    padding: 40px 20px;
    margin: 300px 0 85px;
  }
}
body .news .ttl {
  text-align: center;
  position: absolute;
  z-index: 1;
  top: -70px;
  right: 0;
  left: 0;
}
@media (max-width: 480px) {
  body .news .ttl {
    top: -50px;
  }
}
body .news .news-box {
  width: 90%;
  max-width: 1080px;
  height: 200px;
  display: block;
  background-color: #fff;
  margin: 0 auto;
}
@media (max-width: 800px) {
  body .news .news-box {
    width: 100%;
  }
}
body .greetings .fl-sb {
  gap: 45px;
}
@media (max-width: 980px) {
  body .greetings .fl-sb {
    display: block;
  }
}
body .greetings .fl-sb .slick_slider img {
  width: 100%;
  /* 親要素にフィット */
  height: 360px;
  /* 親要素にフィット */
  -o-object-fit: cover;
     object-fit: cover;
  /* 画像をトリミングして埋める */
  -o-object-position: center;
     object-position: center;
  /* 中央に配置 */
}
@media (max-width: 980px) {
  body .greetings .fl-sb .slick_slider img {
    height: 50vw;
  }
}
body .greetings .fl-sb .slick_slider {
  display: flex;
  /* 必要に応じて */
  justify-content: center;
  /* 要素を中央揃え */
  align-items: center;
  overflow: hidden;
  /* 必要に応じて画像のはみ出しを防ぐ */
}
body .greetings .fl-sb .img {
  width: 50%;
  min-width: 430px;
}
@media (max-width: 980px) {
  body .greetings .fl-sb .img {
    width: 100%;
  }
}
@media (max-width: 655px) {
  body .greetings .fl-sb .img {
    min-width: auto;
  }
}
body .greetings .fl-sb .txt {
  width: 50%;
}
@media (max-width: 980px) {
  body .greetings .fl-sb .txt {
    width: 100%;
    margin-top: 30px;
  }
}
body .greetings .fl-sb .txt a {
  display: block;
  border-bottom: #232526 solid 1px;
  padding-bottom: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px 0 0 auto;
}
@media (max-width: 980px) {
  body .greetings .fl-sb .txt .mpc {
    display: none;
  }
}
body .business-contents ul {
  margin-top: 60px;
}
body .business-contents ul li {
  margin-top: 30px;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: #9f9f9f 1px solid;
  align-items: start;
}
@media (max-width: 800px) {
  body .business-contents ul li {
    display: block;
  }
}
body .business-contents ul li img {
  display: block;
}
@media (max-width: 800px) {
  body .business-contents ul li img {
    width: 80%;
    margin-bottom: 30px;
  }
}
body .business-contents ul li:last-child {
  border-bottom: none;
}
body .contact .ttl {
  margin-bottom: 0px;
}
@media (max-width: 745px) {
  body .contact .ttl {
    margin-bottom: 30px;
  }
}
body .contact .btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  display: inline-block;
  outline: none;
  /*アニメーションの指定*/
  transition: ease 0.2s;
  width: 100%;
  padding: 50px 0;
}
body .contact .btn .wrap {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
}
body .contact .btn .fl-sb {
  align-items: center;
}
@media (max-width: 1075px) {
  body .contact .btn .fl-sb {
    justify-content: space-around;
  }
}
@media (max-width: 745px) {
  body .contact .btn .fl-sb {
    display: block;
  }
}
body .bgleft:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #9f9f9f;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
body .bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
body footer nav ul {
  max-width: 775px;
  margin: 0 auto;
  width: 90%;
}
body footer nav ul li {
  list-style: none;
}
@media (max-width: 625px) {
  body footer nav ul li {
    text-align: center;
    margin-bottom: 20px;
  }
}
body footer nav ul a:hover {
  opacity: 0.6;
}
@media (max-width: 625px) {
  body footer nav .fl-sb {
    display: block;
  }
}
body footer .logo {
  margin: 80px auto 40px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
body footer .logo img {
  width: 110px;
}
body footer .info {
  max-width: 700px;
  margin: 0 auto 40px;
  width: 90%;
  align-items: start;
}
body footer .info .tel_fax {
  margin: 15px 0 0;
  gap: 2em;
}
@media (max-width: 430px) {
  body footer .info .tel_fax {
    display: block;
  }
}
body footer .info .tel_fax a {
  text-decoration: underline;
}
body footer .info .tel_fax a:hover {
  opacity: 0.6;
}
body footer .copy-right {
  text-align: center;
  font-size: 10px;
  margin: 60px 0 10px;
}
body .ttl-company {
  padding: 1em 0 45px;
  margin-top: 0;
  background: url(../img/ttl_company.jpg);
  background-position: center;
  background-size: cover;
}
body .ttl-contact {
  padding: 1em 0 45px;
  margin-top: 0;
  background: url(../img/ttl_contact.jpg);
  background-position: center;
  background-size: cover;
}
body .information ul {
  margin: 60px auto;
}
body .information ul li {
  display: flex;
  margin: 20px auto;
  width: 100%;
}
@media screen and (max-width: 780px) {
  body .information ul li {
    display: block;
  }
}
body .information ul li .label {
  min-width: 20%;
  border-bottom: #24aed2 solid 1px;
  padding: 0 0 10px;
}
@media screen and (max-width: 780px) {
  body .information ul li .label {
    border-bottom: none;
  }
}
body .information ul li .data {
  border-bottom: #bababa solid 1px;
  padding: 0 0 10px 10px;
  min-width: 80%;
}
@media screen and (max-width: 780px) {
  body .information ul li .data {
    border-bottom: #24aed2 solid 1px;
    padding: 0;
  }
}
body .information ul li .data iframe {
  width: 100%;
}
body .information ul li .data a {
  color: #000;
}
body .information ul li:last-child .label, body .information ul li:last-child .data {
  border-bottom: none;
}
@media screen and (max-width: 1330px) {
  body .features ul {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
body .features ul li {
  list-style: none;
  width: calc((100% - 120px) / 3);
}
@media screen and (max-width: 1330px) {
  body .features ul li {
    width: calc((100% - 120px) / 2);
  }
  body .features ul li:last-child {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1023px) {
  body .features ul li {
    width: 100%;
    margin-top: 60px;
  }
}
body .features ul li img {
  width: 100%;
  box-shadow: -10px 10px 0px 0px #CEDBDB;
  display: block;
  margin-bottom: 30px;
}
body .thoughts .fl-sb {
  gap: 0px;
}
@media screen and (max-width: 1023px) {
  body .thoughts .fl-sb {
    display: block;
  }
}
body .thoughts .fl-sb .txt {
  width: 70%;
}
@media screen and (max-width: 1023px) {
  body .thoughts .fl-sb .txt {
    width: 100%;
  }
}
body .thoughts .fl-sb .img {
  width: 30%;
}
@media screen and (max-width: 1023px) {
  body .thoughts .fl-sb .img {
    width: 70%;
    margin: 30px 0 0 auto;
  }
}
body .thoughts .fl-sb .img img {
  width: 100%;
}
body .contact p span {
  color: #f88716;
  font-size: 0.8em;
  top: -3px;
  position: relative;
}
body .contact form ul {
  margin: 60px auto;
}
body .contact form ul li {
  display: flex;
  margin: 20px auto;
  width: 100%;
}
@media screen and (max-width: 780px) {
  body .contact form ul li {
    display: block;
  }
}
body .contact form ul li .label {
  min-width: 25%;
  border-bottom: #24aed2 solid 1px;
  padding: 0 0 10px;
}
@media screen and (max-width: 780px) {
  body .contact form ul li .label {
    border-bottom: none;
    border-left: #24aed2 solid 3px;
    padding: 0 0px 0 5px;
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: 10px;
  }
}
body .contact form ul li .label span {
  color: #f88716;
  font-size: 0.8em;
  top: -3px;
  position: relative;
}
body .contact form ul li .data {
  border-bottom: #bababa solid 1px;
  padding: 0 0 10px 10px;
  min-width: 75%;
}
@media screen and (max-width: 780px) {
  body .contact form ul li .data {
    border-bottom: none;
    padding: 0;
  }
}
body .contact form ul li .data input,
body .contact form ul li .data textarea {
  border: solid 1px #bdbdbd;
  width: 100%;
  padding: 0.3em 0.5em;
}
body .contact form ul li:last-child .label, body .contact form ul li:last-child .data {
  border-bottom: none;
}
body .contact form ul .privacy {
  gap: 20px;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 780px) {
  body .contact form ul .privacy {
    display: flex;
  }
}
@media only screen and (max-width: 395px) {
  body .contact form ul .privacy {
    gap: 10px;
  }
}
body .contact form ul .privacy .label {
  min-width: auto;
  border-bottom: none;
  border-left: none;
  padding: 0 0 10px;
}
@media screen and (max-width: 780px) {
  body .contact form ul .privacy .label {
    border-bottom: none;
    border-left: none;
  }
}
body .contact form ul .privacy .data {
  border-bottom: none;
  border-left: none;
  padding: 0 0 10px 10px;
  min-width: auto;
}
@media screen and (max-width: 780px) {
  body .contact form ul .privacy .data {
    border-bottom: none;
    padding: 0;
  }
}
body .contact form ul .privacy .data input,
body .contact form ul .privacy .data textarea {
  border: solid 1px #bdbdbd;
  width: 100%;
  padding: 0.3em 0.5em;
  margin: 6px 0 0;
}
body .contact form .accordion-004 {
  max-width: 800px;
  width: 100%;
  margin: 20px auto 0;
  border-radius: 5px;
}
@media screen and (max-width: 780px) {
  body .contact form .accordion-004 {
    font-size: 12px;
  }
}
body .contact form .accordion-004 summary {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0em 2em;
  cursor: pointer;
  justify-content: center;
}
body .contact form .accordion-004 summary::-webkit-details-marker {
  display: none;
}
body .contact form .accordion-004 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.7019607843);
  border-right: 1px solid rgba(51, 51, 51, 0.7019607843);
  content: "";
  transition: transform 0.3s;
}
body .contact form .accordion-004[open] summary::after {
  transform: rotate(225deg);
}
body .contact form .accordion-004 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 2em 1.5em;
  color: #333333;
  transition: transform 0.5s, opacity 0.5s;
}
body .contact form .accordion-004[open] p {
  transform: none;
  opacity: 1;
}
body .contact .sub-re {
  width: 300px;
  margin: 0 auto;
}
body .contact .sub-re input {
  display: block;
  background-color: #b2d6d6;
  padding: 0.5em 1em;
  min-width: 130px;
  transition: 0.3s;
  color: #232526;
}
body .contact .sub-re input:hover {
  opacity: 0.6;
}
body .contact .sub-re .re {
  background-color: #d3d3d3;
  color: #232526;
}
body .contact .formTable {
  margin: 20px 0 60px;
  max-width: 800px;
  width: 100%;
  margin: 30px auto 60px;
}
body .contact .formTable th,
body .contact .formTable td {
  text-align: start;
  border-bottom: 1px #000 solid;
  font-size: 14px;
  padding: 2.5px;
}
body .contact .formTable th {
  background-color: #f2fafa;
}/*# sourceMappingURL=style.css.map */