@charset "UTF-8";
/*=============================================*/
/*Reset CSS*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
}

blockquote, body, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

li {
  list-style: none;
}

a,
a:link {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

button, input, select, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check {
  display: none;
}

i {
  font-style: normal;
}

textarea {
  resize: none;
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}

/*=============================================*/
/*Common Base*/
/*=============================================*/
html {
  font-size: 62.5%;
  overflow: auto;
}

body {
  margin: auto;
  width: auto;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  color: #323232;
  font-size: 16px;
  font-size: 1.6rem;
  background: #fff;
}

a, b, dd, dt, li, p, span, td, th {
  font-size: 1em;
  line-height: 1.2;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}
@media print, screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}
.center {
  margin: auto;
  text-align: center;
  line-height: 180%;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.txt_base {
  font-size: 1.6rem;
}
.txt_base p {
  line-height: 2;
  font-size: 1em;
}
.txt_base p:not(:last-child) {
  margin-bottom: 1em;
}
.txt_base.fs14 {
  font-size: 1.4rem;
}
.txt_base.fs15 {
  font-size: 1.5rem;
}

.mb20 {
  margin-bottom: 20px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.tel_link,
.tel_link a {
  color: inherit;
  font-size: 1em;
}

/*=============================================*/
/*  layout  Base                        */
/*=============================================*/
.main {
  padding-top: 117px;
}
@media (max-width: 768px) {
  .main {
    padding-top: 0;
  }
}

.main_width {
  width: calc(100% - 30px);
  max-width: 1100px;
  margin: auto;
}
.main_width.size850 {
  max-width: 850px;
}

section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

/*=============================================*/
/*  layout                               */
/*=============================================*/
/********************************************/
/*header */
/********************************************/
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: clamp(15px, 2.5%, 46px) clamp(15px, 2%, 40px);
  background: #fff;
  z-index: 999;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .header {
    padding: 0;
    background: none;
  }
}
.header .logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 22%;
  max-width: 420px;
  transition: all 0.3s;
  z-index: 998;
}
@media (max-width: 1024px) {
  .header .logo {
    width: 20%;
  }
}
@media (max-width: 768px) {
  .header .logo {
    width: 35%;
    max-width: 180px;
  }
}

.header.scroll_animation {
  padding: 20px 30px;
  transition: all 0.3s;
}
.header.scroll_animation .logo {
  max-width: 150px;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .header.scroll_animation .logo {
    max-width: 70px;
  }
}

.nav_list {
  text-align: right;
}
.nav_list > li {
  display: inline-block;
  margin-right: 0.5em;
  font-size: clamp(1.3rem, 1.7vw, 1.8rem);
}
@media (max-width: 768px) {
  .nav_list > li {
    font-size: 1.7rem;
  }
}
.nav_list > li > a {
  position: relative;
  display: block;
  padding: 0.2em 0.7em;
  letter-spacing: 0.05em;
  line-height: 40px;
  font-size: 1em;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav_list > li > a:after {
  position: absolute;
  top: 100%;
  left: 0;
  content: "";
  width: 0;
  height: 2px;
  background: #323232;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav_list > li > a:hover:after {
  width: 100%;
}
.nav_list .header_contact a {
  padding: 0;
}
@media (max-width: 768px) {
  .nav_list .header_contact a {
    padding: 0.2em 0.8em;
  }
}
.nav_list .header_contact a:after {
  content: none;
}
.nav_list .header_contact a:hover {
  opacity: 0.7;
}
.nav_list .header_contact i {
  display: inline-block;
  width: 40px;
  height: 40px;
}
@media (max-width: 768px) {
  .nav_list .header_contact i {
    margin-left: 15px;
  }
}

/********************************************/
/*  Sp-menu*/
/********************************************/
.sp_menu_trigger,
.sp_nav {
  display: none;
}

/********************************************/
/*  Sp-menu btn*/
/********************************************/
@media (max-width: 768px) {
  .sp_menu_trigger,
  .sp_menu_trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    cursor: pointer;
  }
  .sp_menu_trigger {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 9999;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
  }
  .sp_menu_trigger span {
    position: absolute;
    background: #fff;
    width: 7px;
    height: 7px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 10px;
  }
  .sp_menu_trigger span:nth-of-type(1) {
    left: 5px;
  }
  .sp_menu_trigger span:nth-of-type(2) {
    left: 0;
    right: 0;
  }
  .sp_menu_trigger span:nth-of-type(3) {
    right: 5px;
  }
  .sp_menu_trigger.active span:nth-of-type(1) {
    width: 100%;
    height: 4px;
    left: 0;
    -webkit-transform: translateY(0) rotate(-315deg);
    transform: translateY(0) rotate(-315deg);
  }
  .sp_menu_trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .sp_menu_trigger.active span:nth-of-type(3) {
    width: 100%;
    height: 4px;
    right: 0;
    -webkit-transform: translateY(0) rotate(315deg);
    transform: translateY(0) rotate(315deg);
  }
}
/********************************************/
/*  Sp-menu list*/
/********************************************/
@media (max-width: 768px) {
  header .main_nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100vw;
    height: 100vh;
    -webkit-overflow-scrolling: touch;
    z-index: 9998;
    overflow-y: scroll;
    padding: 40px 20px 60px;
    box-sizing: border-box;
    text-align: left;
  }
  header .nav_list > li {
    display: block;
    padding: 1em 0;
    border-bottom: solid 1px #ccc;
    text-align: left;
  }
  header .nav_list > li a {
    color: #fff;
  }
  .nav_list {
    width: 100%;
    overflow: hidden;
  }
}
/********************************************/
/* footer */
/********************************************/
.footer {
  padding: 90px 0 30px;
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 15px;
  }
}
.footer .footer_logo {
  width: 20%;
  max-width: 120px;
  margin: 0 auto 40px;
}
.footer .footer_logo a {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .footer_logo a:hover {
  opacity: 0.7;
}
.footer .footer_insta {
  width: 32px;
  height: 32px;
  margin: 0 auto 50px;
}
.footer .footer_insta a {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .footer_insta a:hover {
  opacity: 0.7;
}

.copyright {
  display: block;
  text-align: center;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
}

/********************************************/
/* main_visual */
/********************************************/
.corp_swiper .swiper-horizontal > .swiper-pagination-bullets,
.corp_swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.corp_swiper .swiper-pagination-custom, .corp_swiper .swiper-pagination-fraction {
  bottom: 35px;
}
.corp_swiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border: solid 1px #fff;
  background: #fff;
  opacity: 1;
}
.corp_swiper .swiper-pagination-bullet:not(:last-child) {
  margin-right: 14px !important;
}
.corp_swiper .swiper-pagination-bullet-active {
  border-color: #808080;
  background: #323232;
}
.corp_swiper img {
  display: block;
  width: 100%;
}

@media (max-width: 768px) {
  .corp_swiper {
    width: 100vw;
    height: 100svh;
  }
  .corp_swiper .swiper-img {
    width: 100%;
    height: 100%;
  }
}
/********************************************/
/* news_box */
/********************************************/
.news_box {
  padding: 60px 0 90px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .news_box {
    padding: 60px 0;
    flex-flow: column;
  }
}
.news_box .left_box {
  padding-right: 20px;
}
@media (max-width: 768px) {
  .news_box .left_box {
    margin-bottom: 20px;
    padding-right: 0;
  }
}
.news_box .left_box .news_ttl {
  white-space: nowrap;
  font-size: 1.6rem;
  font-weight: 700;
}
.news_box .right_box {
  padding-left: 20px;
}
@media (max-width: 768px) {
  .news_box .right_box {
    margin-top: 20px;
    padding-left: 0;
  }
}
.news_box .right_box a {
  display: block;
  line-height: 1.5;
  white-space: nowrap;
  font-size: 1.3rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news_box .right_box a:hover {
  opacity: 0.7;
}

.news_box .news_list {
  flex-grow: 1;
  padding: 5px 20px;
  border-left: solid 1px #999;
  border-right: solid 1px #999;
}
.news_box .news_list li:not(:last-child) {
  margin-bottom: 15px;
}
.news_box .news_list a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  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;
  font-size: 1.3rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news_box .news_list a:hover {
  opacity: 0.7;
}
.news_box .news_list .ttl_box {
  width: calc(100% - 6em);
  font-size: 1em;
}
.news_box .news_list .ttl {
  line-height: 1.5;
  font-size: 1.6rem;
  word-break: break-all;
}
.news_box .news_list .date {
  width: 6em;
  padding: 0.2em 0;
  line-height: 1.5;
  text-align: right;
  font-size: 1em;
}

/********************************************/
/* top_about_block */
/********************************************/
.top_about_block {
  position: relative;
  padding: 120px 0;
  background: url(../img/top/about-bg.webp) no-repeat center/cover;
}
@media (max-width: 768px) {
  .top_about_block {
    padding: 60px 0;
  }
}
.top_about_block:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  mix-blend-mode: multiply;
  z-index: 2;
}
.top_about_block .inner {
  position: relative;
  z-index: 3;
}
.top_about_block .txt_base p {
  line-height: 2.5;
  color: #fff;
  font-size: clamp(1.5rem, 3.8vw, 2rem);
}

/********************************************/
/* top_business_block */
/********************************************/
.top_business_block {
  border-bottom: solid 1px #999;
}
.top_business_block .big_txt {
  margin-bottom: 0.7em;
  text-align: center;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
}
.top_business_block .business_list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .top_business_block .business_list {
    display: block;
  }
}
.top_business_block .business_list li {
  width: 48%;
}
@media (max-width: 768px) {
  .top_business_block .business_list li {
    width: 100%;
  }
  .top_business_block .business_list li:not(:last-child) {
    margin-bottom: 30px;
  }
}
.top_business_block .business_list li a {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top_business_block .business_list li a:hover {
  opacity: 0.7;
}
.top_business_block .business_list li .img {
  margin-bottom: 15px;
}

/********************************************/
/* top_achievement_block */
/********************************************/
.top_achievement_block {
  border-bottom: solid 1px #999;
}
.top_achievement_block .achievement_list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .top_achievement_block .achievement_list {
    display: block;
    width: 90%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}
.top_achievement_block .achievement_list li {
  width: 49%;
  max-width: 535px;
  border-bottom: solid 1px #999;
}
@media (max-width: 768px) {
  .top_achievement_block .achievement_list li {
    width: 100%;
    max-width: none;
  }
}
.top_achievement_block .achievement_list li:nth-of-type(-n+2) {
  border-top: solid 1px #999;
}
@media (max-width: 768px) {
  .top_achievement_block .achievement_list li:nth-of-type(-n+2) {
    border-top: none;
  }
  .top_achievement_block .achievement_list li:nth-of-type(-n+2):first-of-type {
    border-top: solid 1px #999;
  }
}
.top_achievement_block .achievement_list a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 25px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top_achievement_block .achievement_list a:hover {
  opacity: 0.7;
}
.top_achievement_block .achievement_list a .img {
  width: 22.5%;
}
.top_achievement_block .achievement_list a .txt_box {
  width: 72%;
}
.top_achievement_block .achievement_list a .category_box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 5px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .top_achievement_block .achievement_list a .category_box span {
    font-size: 1.2rem;
  }
}
.top_achievement_block .achievement_list a .ttl {
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  font-weight: 700;
}
.top_achievement_block .achievement_list a .area {
  margin-bottom: 10px;
  display: block;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
}
@media (max-width: 768px) {
  .top_achievement_block .achievement_list a .area {
    margin-bottom: 5px;
  }
}
.top_achievement_block .achievement_list a .genre {
  display: block;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
}

/********************************************/
/* top_company_block */
/********************************************/
.top_company_block .company_table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 50px;
}
.top_company_block .company_table tr th,
.top_company_block .company_table tr td {
  padding: 1.2em 1.8em;
  line-height: 1.87;
  font-size: clamp(1.4rem, 2.5vw, 1.6rem);
  border-bottom: solid 1px #999;
}
@media (max-width: 768px) {
  .top_company_block .company_table tr th,
  .top_company_block .company_table tr td {
    padding-left: 1em;
    padding-right: 1em;
  }
}
.top_company_block .company_table tr th {
  width: 7em;
  text-align: left;
  vertical-align: top;
}
@media (max-width: 768px) {
  .top_company_block .company_table tr th {
    width: 5em;
    padding-right: 0;
  }
}
.top_company_block .company_table tr:first-child th,
.top_company_block .company_table tr:first-child td {
  border-top: solid 1px #999;
}
.top_company_block .company_table tr a {
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top_company_block .company_table tr a:hover {
  opacity: 0.7;
}

.top_company_block .sub_ttl {
  margin-bottom: 1.5em;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: clamp(1.8rem, 3vw, 2rem);
  font-weight: 700;
}
.top_company_block .media_list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
  row-gap: 20px;
}
.top_company_block .media_list:after {
  content: "";
  display: block;
  width: 31%;
}
@media (max-width: 768px) {
  .top_company_block .media_list:after {
    content: none;
  }
}
.top_company_block .media_list li {
  width: 31%;
}
@media (max-width: 768px) {
  .top_company_block .media_list li {
    width: 48%;
  }
}
.top_company_block .media_list li a {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top_company_block .media_list li a:hover {
  opacity: 0.7;
}
.top_company_block .media_list li .img {
  margin-bottom: 15px;
}
.top_company_block .media_list li .txt_base {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .top_company_block .media_list li .txt_base {
    font-size: clamp(1.4rem, 2.5vw, 1.6rem);
  }
}
.top_company_block .media_list li .txt_base p {
  line-height: 1.87;
  font-weight: 700;
}
@media (max-width: 768px) {
  .top_company_block .media_list li .txt_base p {
    line-height: 1.5;
  }
}
.top_company_block .media_list li .date {
  display: block;
  font-size: 1.3rem;
}

/********************************************/
/* top_contact_block */
/********************************************/
.top_contact_block .form_box .caution {
  margin-bottom: 40px;
  color: #ff0000;
  text-align: center;
  font-size: 1.3rem;
}
.top_contact_block .form_list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 35px;
  column-gap: 40px;
  margin-bottom: 40px;
}
.top_contact_block .form_list dl {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: solid 1px #999;
}
@media (max-width: 768px) {
  .top_contact_block .form_list dl {
    padding-bottom: 5px;
  }
}
.top_contact_block .form_list dl.name, .top_contact_block .form_list dl.email {
  width: calc(50% - 20px);
}
@media (max-width: 768px) {
  .top_contact_block .form_list dl.name, .top_contact_block .form_list dl.email {
    width: 100%;
  }
}
.top_contact_block .form_list dl dt {
  margin-bottom: 1.2em;
}
.top_contact_block .form_list dl dt.required p:after {
  content: "※";
  color: #ff0000;
  font-size: 1em;
  padding-left: 0.5em;
}

/* form */
.form_box input[type=tel],
.form_box input[type=email],
.form_box input[type=text],
.form_box textarea {
  width: 100%;
  max-height: 70px;
  padding: 0.57em 0;
  font-size: clamp(1.6rem, 1.5vw, 1.4rem);
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  -webkit-transform-origin: 0 0;
  -webkit-transform: scale(1, 1.01);
  -moz-transform-origin: 0 0;
  -moz-transform: scale(1, 1.01);
  -ms-transform-origin: 0 0;
  -ms-transform: scale(1, 1.02);
  -o-transform-origin: 0 0;
  -o-transform: scale(1, 1.01);
}
.form_box input[type=tel]::placeholder,
.form_box input[type=email]::placeholder,
.form_box input[type=text]::placeholder,
.form_box textarea::placeholder {
  color: #808080;
}
@media (max-width: 768px) {
  .form_box textarea {
    height: 8em;
  }
}
.form_box .error {
  padding-top: 10px;
}

.submit_btn {
  margin-bottom: 30px;
  text-align: center;
}
.submit_btn input {
  padding: 0.9em 1em;
  font-size: 1.6rem;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  -webkit-transform-origin: 0 0;
  -webkit-transform: scale(1, 1.01);
  -moz-transform-origin: 0 0;
  -moz-transform: scale(1, 1.01);
  -ms-transform-origin: 0 0;
  -ms-transform: scale(1, 1.02);
  -o-transform-origin: 0 0;
  -o-transform: scale(1, 1.01);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #000;
}
.submit_btn input:hover {
  opacity: 0.7;
}
.submit_btn .wpcf7-spinner {
  display: none;
}

.form_box .policy a {
  font-size: 1.4rem;
}/*# sourceMappingURL=style.css.map */