@charset "UTF-8";
/*=============================================*/
/*import */
/*=============================================*/
/*=============================================*/
/*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: 'Noto Sans JP', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  color: #000;
  font-size: 15px;
  font-size: 1.5rem;
}

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

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.5rem;
}

.txt_base p {
  line-height: 2;
  font-size: 1em;
}

.txt_base p:not(:last-child) {
  margin-bottom: 1em;
}

.txt_base.fs13 {
  font-size: 1.3rem;
}

.txt_base.fs14 {
  font-size: 1.4rem;
}

.txt_base.fs18 {
  font-size: 1.8rem;
}

@media (max-width: 768px) {
  .txt_base.fs18 {
    font-size: 1.6rem;
  }
}

.txt_base.lh_150 p {
  line-height: 1.5;
}

.txt_base.lh_250 p {
  line-height: 2.5;
}

@media (max-width: 768px) {
  .txt_base.lh_250 p {
    line-height: 2.2;
  }
}

.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_width {
  width: calc(100% - 30px);
  max-width: 1300px;
  margin: auto;
}

.main_width.size900 {
  max-width: 900px;
}

section {
  padding: 110px 0;
}

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

/********************************************/
/* body fixed*/
/********************************************/
@media (max-width: 768px) {
  body {
    width: 100%;
  }
  body.fixed {
    position: fixed;
    width: 100%;
  }
}

/*=============================================*/
/*  layout                               */
/*=============================================*/
/********************************************/
/*header */
/********************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  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;
  width: 100%;
  padding: 36px 40px;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  z-index: 9990;
}

@media (max-width: 768px) {
  .header {
    min-height: 65px;
    padding: 19px 17px;
  }
}

.header .logo {
  width: 30%;
  max-width: 260px;
  margin-right: 5%;
}

@media (max-width: 1024px) {
  .header .logo {
    width: 20%;
  }
}

@media (max-width: 768px) {
  .header .logo {
    width: 50%;
    max-width: 150px;
  }
}

.header .logo img {
  display: block;
}

.header .logo a {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header .logo a:hover {
  opacity: .7;
}

@media (max-width: 768px) {
  .header .main_nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #314e52;
    width: 100vw;
    height: 100vh;
    -webkit-overflow-scrolling: touch;
    z-index: 9998;
    overflow-y: scroll;
    padding: 110px 80px 60px;
    box-sizing: border-box;
    text-align: left;
  }
}

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

@media (max-width: 768px) {
  .nav_list {
    display: block;
  }
}

.nav_list > li:not(:last-child) {
  margin-right: 2em;
}

@media (max-width: 768px) {
  .nav_list > li:not(:last-child) {
    margin-right: auto;
    margin-bottom: 2em;
  }
}

.nav_list > li > a {
  position: relative;
  display: block;
  padding: 0.3em 0.2em;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  font-family: "Cinzel", serif;
  font-weight: 500;
}

@media (max-width: 768px) {
  .nav_list > li > a {
    color: #fff;
  }
}

.nav_list > li > a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background: #314e52;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav_list > li > a:hover {
  color: #314e52;
}

.nav_list > li > a:hover:after {
  width: 100%;
}

@media (max-width: 768px) {
  .nav_list > li > a:hover {
    color: inherit;
  }
  .nav_list > li > a:hover:after {
    content: none;
  }
}

/********************************************/
/*  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 .4s;
    box-sizing: border-box;
    cursor: pointer;
  }
  .sp_menu_trigger {
    position: fixed;
    top: 0;
    right: 0;
    width: 65px;
    height: 65px;
    z-index: 9999;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .sp_menu_trigger span {
    position: absolute;
    background: #000;
    width: 30px;
    height: 1px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .sp_menu_trigger span:nth-of-type(1) {
    top: 25px;
  }
  .sp_menu_trigger span:nth-of-type(2) {
    top: 0;
    bottom: 0;
  }
  .sp_menu_trigger span:nth-of-type(3) {
    bottom: 25px;
  }
  .sp_menu_trigger.nogap {
    top: 0;
    right: 0;
  }
  .sp_menu_trigger.active span {
    background: #fff;
  }
  .sp_menu_trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(7px) rotate(-315deg);
    transform: translateY(7px) rotate(-315deg);
  }
  .sp_menu_trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .sp_menu_trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-7px) rotate(315deg);
    transform: translateY(-7px) rotate(315deg);
  }
}

/********************************************/
/*  Sp-menu list*/
/********************************************/
@media (max-width: 768px) {
  header .main_nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #314e52;
    width: 100vw;
    height: 100vh;
    -webkit-overflow-scrolling: touch;
    z-index: 9998;
    overflow-y: scroll;
    padding: 110px 80px 60px;
    box-sizing: border-box;
    text-align: left;
  }
  header .nav_list > li {
    display: block;
    padding: 1em 0;
  }
  header .nav_list > li a {
    color: #fff;
  }
  .nav_list {
    width: 100%;
    overflow: hidden;
  }
}

/********************************************/
/* contact_block */
/********************************************/
.contact_block {
  position: relative;
  padding-top: 70px;
  padding-bottom: 76px;
  background: #f7f6e7;
  z-index: 2;
}

@media (max-width: 768px) {
  .contact_block {
    padding-top: 117px;
  }
}

.contact_block .txt_base {
  margin-bottom: 50px !important;
}

.contact_block:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 60%;
  max-width: 1029px;
  height: 100%;
  background: url(../img/common/contact-bg.jpg) no-repeat right top/cover;
  z-index: -1;
}

@media (max-width: 768px) {
  .contact_block:before {
    width: 100%;
    height: 137px;
    background: url(../img/common/contact-bg-sp.jpg) no-repeat left bottom/cover;
  }
}

/********************************************/
/* footer */
/********************************************/
.footer {
  padding: 64px 0;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 25px;
  }
}

.footer .logo {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .footer .logo {
    width: 50%;
  }
}

.footer .logo a {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer .logo a:hover {
  opacity: .7;
}

.footer .txt_base {
  margin-bottom: 17px;
}

@media (max-width: 768px) {
  .footer .txt_base {
    margin-bottom: 45px;
  }
}

.footer .txt_base p {
  color: #fff;
}

.footer .copyright {
  display: block;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: right;
  font-size: 1.2rem;
  font-family: "Cinzel", serif;
  font-weight: 400;
}

@media (max-width: 768px) {
  .footer .copyright {
    text-align: center;
  }
}

.footer_link {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.footer_link li {
  margin-left: 30px;
}

.footer_link li:first-child {
  margin-left: 0;
}

.footer_link li a {
  display: block;
  color: #fff;
  font-family: "Cinzel", serif;
  font-weight: 400;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer_link li a:hover {
  opacity: .7;
}

/********************************************/
/* loading */
/********************************************/
.loading {
  /*ローディング画面の縦横幅を画面いっぱいになるように指定*/
  width: 100vw;
  height: 100vh;
  /*ローディング画面の表示位置を固定*/
  position: fixed;
  top: 0;
  left: 0;
  background: #f7f6e7;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /*ローディング画面を0.5秒かけて非表示にする*/
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 9999;
}

.loading .img {
  width: 150px;
  animation: opacity 0.5s linear;
}

@media (max-width: 1024px) {
  .loading .img {
    width: 100px;
  }
}

/* アニメーションの設定 */
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*ローディング画面を非表示にする*/
.loading.loaded {
  /*0.5秒かけてopacityを0にする*/
  opacity: 0;
  visibility: hidden;
}

/********************************************/
/* main_visual */
/********************************************/
.main_visual {
  position: relative;
  padding-top: 120px;
}

@media (max-width: 1024px) {
  .main_visual {
    padding-top: 100px;
  }
}

@media (max-width: 768px) {
  .main_visual {
    padding-top: 65px;
    padding-bottom: 20px;
  }
}

.main_visual .main_txt {
  position: absolute;
  bottom: 37px;
  right: 5%;
  text-align: right;
}

@media (max-width: 1024px) {
  .main_visual .main_txt {
    right: 2%;
  }
}

@media (max-width: 768px) {
  .main_visual .main_txt {
    position: relative;
    bottom: auto;
    top: -15px;
    right: 0;
  }
}

.main_visual .main_txt span {
  display: inline-block;
}

.main_visual .main_txt span.en {
  margin-bottom: 16px;
  line-height: 1;
  font-size: clamp(3rem, 3.2vw, 5rem);
  font-family: "Cinzel", serif;
  font-weight: 400;
}

.main_visual .main_txt span.jp {
  padding: 0.35em 0.65em 0.35em 0.8em;
  background: #fff;
  letter-spacing: 0.15em;
  line-height: 1.5;
  font-size: clamp(1.5rem, 1.5vw, 2rem);
}

@media (max-width: 768px) {
  .main_visual .main_txt span.jp {
    padding: 0.35em 0.65em 0.35em 0.8em;
    padding-left: 1em;
    padding-right: 0.85em;
  }
}

.main_visual .main_txt span span {
  display: inline-block;
  padding: 0.2em 0.3em 0.1em 0.4em;
  background: #fff;
  line-height: inherit;
  font-size: 1em;
}

@media (max-width: 768px) {
  .main_visual .main_txt span span:not(:last-of-type) {
    margin-bottom: 5px;
  }
}

@media (max-width: 768px) {
  .main_visual {
    position: relative;
  }
  .main_visual:after {
    position: absolute;
    bottom: 0;
    left: 15%;
    content: "";
    width: 75%;
    height: 100%;
    background: #f7f6e7;
    z-index: -1;
  }
}

/********************************************/
/* top_news_block */
/********************************************/
.top_news_block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .top_news_block {
    display: block;
  }
}

.top_news_block .en_big_ttl {
  margin-right: 50px;
}

.top_news_block .news_list {
  width: 100%;
  max-width: 1006px;
}

.top_news_block .news_list li:not(:last-child) {
  margin-bottom: 20px;
}

.news_list li a {
  display: inline-block;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news_list li a:hover {
  opacity: .7;
}

.news_list li .date {
  display: block;
  margin-bottom: 1em;
  font-size: 1.4rem;
}

.news_list li .ttl {
  margin-bottom: 0.8em;
  line-height: 1.5;
  font-size: 1.8rem;
}

/********************************************/
/* 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;
  margin-bottom: 70px;
}

@media (max-width: 768px) {
  .business_list {
    display: block;
  }
}

.business_list:after {
  display: inline-block;
  content: "";
  width: 31%;
}

@media (max-width: 768px) {
  .business_list:after {
    content: none;
  }
}

.business_list li {
  width: 31%;
}

@media (max-width: 768px) {
  .business_list li {
    width: 100%;
  }
  .business_list li:not(:last-child) {
    margin-bottom: 60px;
  }
}

.business_list .img {
  margin-bottom: 30px;
}

.business_list .ttl {
  margin-bottom: 1em;
  line-height: 1.5;
  font-size: 2.0rem;
}

.business_list p {
  color: #636363;
}

/********************************************/
/* top_company_block */
/********************************************/
.top_company_block .flexbox {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-flow: row-reverse;
}

@media (max-width: 768px) {
  .top_company_block .flexbox {
    display: block;
  }
}

.top_company_block .flexbox .img {
  width: 44%;
  text-align: center;
}

@media (max-width: 768px) {
  .top_company_block .flexbox .img {
    margin-bottom: 10px;
  }
}

.top_company_block .flexbox .txt_box {
  width: 55%;
  padding-top: 25px;
}

@media (max-width: 768px) {
  .top_company_block .flexbox .txt_box {
    width: 100%;
  }
}

/*=============================================*/
/*media query    Tablet */
/*=============================================*/
/*=============================================*/
/*media query    Tablet ipad 5.7inch */
/*=============================================*/
/*=============================================*/
/*media query    SmartPhone */
/*=============================================*/

/*# sourceMappingURL=style.css.map */