@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");

body {
  font-family: "Noto Sans JP", sans-serif;
}

img {
  border-style: none;
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
  height: auto;
}

article {
  background-image: url(../images/background-color.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.contents-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #ff4880;
}

.contents-subtitle {
  font-size: 14px;
  padding-top: 15px;
  color: gray;
  font-weight: 700;
}

.link-button {
  display: inline;
  font-weight: bold;
  border: 1.5px solid #ff4880;
  padding: 10px 30px;
  transition: 0.75s;
  border-radius: 15px;
  background: #fff;
  color: #ff4880;
}

.link-button:hover {
  color: #fff;
  background: #ff4880;
  border: 1.5px solid #ff4880;
}

.section-header {
  margin-top: 80px;
}

.section-header-wrapper {
  width: 1100px;
  margin: 0 auto;
  height: 300px;
  position: relative;
}

.section-header-img {
  text-align: center;
}

.section-header-img img {
  height: 280px;
  width: auto;
  z-index: -1;
}

.section-header-title {
  color: #333;
  font-size: 40px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/**************************/
/* HEADER */
/**************************/

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  white-space: nowrap;
  background: #fff;
  transition: all 0.2s ease-in;
}

.header-innner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 130px;
  height: auto;
  display: block;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4vw;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #ff4880;
}

.nav-box {
  line-height: 1;
}

.nav-eng {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.nav-jap {
  font-size: 11px;
}

/**************************/
/* MAIN */
/**************************/

.main-view {
  padding-top: 80px;
}

.main-view-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  height: 1000px;
  position: relative;
}

.main-lead {
  position: absolute;
  left: 0;
  top: 30%;
  z-index: 3;
}

.main-lead-title {
  font-size: 40px;
  font-weight: 700;
}

.main-lead-sub {
  margin-top: 50px;
  font-size: 18px;
  line-height: 1.8;
}

.gray-img {
  position: absolute;
  left: 10%;
  top: 0;
  z-index: 1;
}

.gray-img img {
  height: 100vh;
  width: auto;
}

.diver-line {
  position: absolute;
  bottom: 0;
  left: 30%;
  z-index: 2;
}

.diver-line img {
  width: 60vw;
  height: auto;
}

/**************************/
/* SERVICE */
/**************************/

.service {
  /* background: #fff; */
  padding: 100px 0;
  padding-bottom: 100px;
}

.service-wrap {
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}

.service-lead-tl {
  display: inline-block;
  font-weight: bold;
  font-size: 25px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.service-lead-txt {
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-contents {
  margin-top: 50px;
  height: 100%;
  margin: auto;
  background: #fff;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.16));
  display: flex;
  flex-wrap: wrap;
  position: relative;
  border-radius: 15px;
}

.contents-img {
  width: 60%;
  border-radius: 15px 0 0 15px;
  overflow: hidden;
}

.contents-img2 {
  width: 60%;
  border-radius: 0 15px 15px 0;
  overflow: hidden;
}

.contents-text {
  width: 40%;
  padding: 5% 50px;
  text-align: left;
}

.contents-caption {
  margin-top: 10px;
  margin-bottom: 50px;
}

.service-kensakit {
  margin: 70px 0;
}

.service-title {
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  color: #ff4880;
}

.divider {
  width: 100%;
  background-color: #ff4880;
  border: none;
  height: 2px;
  margin: 20px 0;
}

/**************************/
/* NEWS */
/**************************/

.news {
  padding: 100px 0;
  padding-bottom: 100px;
}

.news-wrapper {
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}

.newslist-wrapper {
  max-width: 1080px;
  margin: 0 auto;
}

.news-list {
  max-width: 950px;
  margin: 0 auto;
  margin-top: 70px;
}

.news-list li a {
  display: flex;
  padding: 20px 20px;
  border-radius: 15px;
  background-color: #fff;
  align-items: center;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.16));
  margin-bottom: 30px;
}

.news-item {
  display: flex;
  align-items: center;
}

.news-date {
  font-size: 14px;
  font-weight: bold;
  margin-right: 30px;
  margin-left: 20px;
}

.news-category {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  background-color: #c0c0c0;
  border-radius: 50px;
  margin-right: 70px;
  padding: 5px 15px;
}

.news-title {
  font-weight: bold;
}

/**************************/
/* COMPANY,CONTACT */
/**************************/

.cac-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  padding: 100px 0;
}

.contents-txt {
  margin-top: 20px;
  margin-bottom: 50px;
  font-weight: bold;
  font-size: 16px;
}

.contents-wrapper {
  background-color: #fff;
  padding: 60px 80px;
  border-radius: 15px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.16));
}

/**************************/
/* FOOTER */
/**************************/
.footer {
  text-align: center;
  background: #222;
  padding: 30px 0;
  color: #fff;
}

.footer-wrapper {
  text-align: center;
  position: relative;
  margin: 0 auto;
}

.footer-logo {
  display: inline-block;
  width: 150px;
  height: auto;
  margin: 0 auto;
  padding: 20px 0;
}

.company-name {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.company-address {
  font-size: 12px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 40px;
  gap: 4vw;
}

.footer-nav-item {
  font-weight: bold;
}

.footer-nav-item:hover {
  color: #ff4880;
}

.footer-copyright {
  font-size: 11px;
}

/**************************/
/* COMPANY-PAGE */
/**************************/

.corporate-vision-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.vision-wrapper {
  text-align: center;
  padding-top: 100px;
}

.vision-title {
  margin-top: 70px;
  font-size: 25px;
  text-align: center;
  line-height: 1.8;
}

.vision-txt {
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.8;
  color: gray;
}

.corporate-profile {
  padding: 150px 0;
}

.profile-table {
  margin: auto;
}

.corporate-profile-table {
  margin-top: 80px;
  padding: 80px 0;
  border-radius: 15px;
  background-color: #fff;
}

.corporate-profile-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.profile-header {
  padding: 50px 0 50px 30px;
  color: gray;
  text-align: left;
  width: 250px;
  border-bottom: 1px solid #ddd;
}

.profile-content {
  padding: 50px 20px 50px 20px;
  text-align: left;
  color: #333;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
}

/**************************/
/* CONTACT-PAGE */
/**************************/
.contact-form {
  padding: 100px 0;
}

.contact-form-wrapper {
  text-align: center;
}

.contact-contents {
  max-width: 1080px;
  margin: 0 auto;
  margin-top: 80px;
}

.contact-lead {
  line-height: 2;
}

.dl-mail {
  width: 500px;
  margin: 70px auto;
  background-color: #fff;
  padding: 30px 30px;
  border-radius: 15px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.16));
}

.dl-mail-lead {
  font-size: 20px;
  color: #ff4880;
  font-weight: bold;
  margin-bottom: 20px;
}

.dl-mail-contents {
  margin-bottom: 50px;
  line-height: 2;
}

.dl-mail-address {
  font-size: 18px;
}

/**************************/
/* NEWS-PAGE */
/**************************/
.section-news {
  padding: 100px 0;
}
