@charset 'UTF-8';
:root {
  --Blue0: #0053a4;
  --Blue1: #012b8c;
  --Blue2: #3e91c2;
  --Blue3: #bdddee;
  --Blue4: #f3fafe;
  --Green1: #016704;
  --Green2: #6cbb04;
  --Green3: #90d23a;
  --Green4: #d1e9b0;
  --Green5: #f7fcf1;
  --Green6: #b2e66f;
  --Yellow1: #e2b14e;
  --Yellow2: #f9c760;
  --Font-josefin: 'Josefin Sans','sans-serif';
  --Font-serif: 'Noto Serif JP','sans-serif';
}

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, a, address, em, img, small, strong, sub, sup, b, i, dl, dt, dd, ol, ul, li, form, label, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, figure, figcaption, footer, header, nav, section, time, audio, video {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
}

h1, h2, h3, h4, h5 {
  font-weight: 400;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}

html {
  font-size: 62.5%;
  line-height: 1.15;
}

/*************************/
@media screen and (max-width: 991px) {
  html, body {
    min-width: 100%;
    height: 100%;
  }
}

/*************************/
body {
  font-family: 'Roboto','Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  overflow: auto;
  width: 100%;
  min-width: 320px;
  margin: auto;
  letter-spacing: 0.1em;
  color: #333333;
  background: #f5fafe;

  font-feature-settings: 'palt';
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::after {
  position: fixed;
  z-index: -2;
  top: 50%;
  left: 50%;
  display: block;
  width: 100vw;
  height: calc(100vh - 120px);
  content: '';
  transform: translate(-50% ,-50%);
  opacity: 0.2;
  background: url(../images/bg.png) center center no-repeat;
  background-size: contain;

  background-blend-mode: screen;
}

/*************************/
@media screen and (max-width: 991px) {
  body {
    font-size: 1.4rem;
    font-weight: 400;
  }
}

/*************************/
a {
  transition: 0.2s ease-in-out;
  text-decoration: none;
  color: #333;
  background-color: transparent;
}

a:hover {
  color: var(--Blue2);
}

figure {
  margin: 0 0 1rem;
}

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

ol, ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

sup {
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  top: -0.5em;
  left: 0.5em;
}

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

  image-rendering: -webkit-optimize-contrast;
}

img.cover {
  height: 100%;

  object-fit: cover;
}

.wrap {
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

.sp-only {
  display: none;
}

/*************************/
@media screen and (max-width: 991px) {
  .sp-only {
    display: block;
  }
}

/*************************/

.side-banner {
  margin-top: 10px;
  text-align: center;
}
/*************************/
@media screen and (max-width: 991px) {
  .side-banner {
    display: inline-block;
    margin-right: 30px;
    margin-bottom: 10px;
  }
}
/*************************/

/* =======================================================
   LOADER
======================================================== */
body {
  -webkit-animation: fadeIn 3s ease 0s 1 normal;
          animation: fadeIn 3s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


/* =======================================================
   HEADER
======================================================== */
header {
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  height: 120px;
  background: #fff;
  box-shadow: 0 1px 12px rgb(176 176 176 / 25%);
}
.header-inr {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}

.site-logo {
  padding-left: min(20px,2vw);
}

.site-logo img {
  width: min(30vw,280px);
}

.header-btn, .header-menu__item ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 60px;
}
/*************************/
@media screen and (max-width: 1024px) {
  header, .header-inr {
    height: 70px;
  }
  .header-inr {
  }
  .site-logo img {
    width: auto;
    max-width: 70vw;
    max-height: 50px;

/* height: 50px; */
    margin-top: 10px;
  }
}
/*************************/


/*======== .header-btn ==========================*/
.header-btn a {
  font-weight: 500;
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 30px;
}
.header-btn a.download {
  background: var(--Green3);
}
.header-btn a.download:hover {
  background: var(--Green6);
}
.header-btn a.contact {
  margin-left: 20px;
  color: #fff;
  background: var(--Blue0);
}
.header-btn a:hover {
  color: #fff;
  background: var(--Blue2);
}
.header-btn a i {
  font-size: 1.6rem;
  font-weight: 400;
  margin-right: 0.8rem;
}
/*************************/
@media screen and (max-width: 1024px) {
  .header-btn {
    flex-wrap: wrap;
    justify-content: center;
    order: 2;
  }
  .header-btn > a {
    min-width: 200px;
    margin: 0 10px 20px;
  }
  .header-btn a.contact {
    margin-left: 10px;
  }
}
/*************************/


/*======== header-menu ==========================*/
.header-menu {
  padding-right: min(20px,2vw);
}
.header-menu__item ul li {
  font-weight: 500;
  position: relative;
}
.header-menu__item ul li:not(:last-child)::after {
  display: inline-block;
  margin: 0 1.5rem;
  content: '/';
}
/*************************/
@media screen and (max-width: 1024px) {
  .header-menu {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    width: 100%;
    width: 100%;
    height: calc(100dvh - 70px);
    margin-top: 70px;
    padding: min(140px,10vh) min(80px,4vw);
    transition: 0.2s ease-in-out;
    pointer-events: none;
    opacity: 0;
    background: #fff;
  }
  .header-menu__item {
    position: relative;
    z-index: 9999;
    order: 1;
    width: min(800px,100%);
    margin: 0 auto min(80px,4vw);
  }
  .header-menu__item ul {
    flex-direction: column;
    height: auto;
  }
  .header-menu__item ul li:not(:last-child)::after {
    display: none;
    margin: 0;
    content: '';
  }
  .header-menu__item ul li {
    line-height: 1;
    width: 100%;
  }
  .header-menu__item ul li a {
    line-height: 1;
    position: relative;
    display: flex;
    align-items: center;

/* border:1px solid; */
    justify-content: space-between;
    margin-bottom: min(20px,5vh);
    padding-bottom: min(20px,5vh);
    border-bottom: 1px solid #ddd;
  }
  .header-menu__item ul li a::after {
    font-family: webfont;
    font-size: 1.4rem;
    content: '\f105';
  }
}
/*************************/
@media screen and (max-width: 1199px) {
  .header-menu__item ul li {
    font-size: 1.4rem;
  }
  .header-menu__item ul li:not(:last-child)::after {
    display: inline-block;
    margin: 0 0.8rem;
    content: '/';
  }
}
/*************************/

/*======== active ==========================*/
/*************************/
@media screen and (max-width: 1024px) {
  .header-menu.active {
    pointer-events: auto;
    opacity: 1;
  }
  .header-menu__item ul li:not(:last-child)::after {
    content: '';
  }
}
/*************************/




/* =======================================================
   TOGGLE
======================================================== */
.toggle {
  display: none;
}
/*************************/
@media all and (max-width: 1024px) {
  .toggle {
    position: fixed;
    z-index: 400;
    top: 0;
    right: 0;
    display: block;
    width: 70px;
    height: 70px;
    transition: 0.3s ease-in-out;
    background: #404040;
  }
  .toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 23px;
    height: 0.5px;
    transition: 0.3s ease-in-out;
    transform: translate(-50%);
    background: #fff;
  }
  .toggle span:first-child {
    top: calc(50% - 8px);
  }
  .toggle span:last-child {
    top: calc(50% + 8px);
  }

  /*  OPEN
==========================*/

  .toggle.open span {
    top: 50%;
  }
  .toggle.open span:first-child {
    transform: translate(-50%) rotate(45deg);
  }
  .toggle.open span:nth-child(2) {
    transform: translate(-50%) rotate(-45deg);
  }
  .toggle.open span:last-child {
    display: none;
  }
}
/*************************/













/* =======================================================
   PAGE-HEAD
======================================================== */
.page-head {
  display: flex;
  margin-top: 120px;
}

.page-head {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 120px);
}

.page .page-head {
  height: calc(80vh - 120px);
}

.page-head h2 {
  color: #fff;
}

.page-head::before {
  position: fixed;
  z-index: 0;
  top: 50%;
  left: 50%;
  display: block;
  overflow: hidden;
  width: 100vw;
  height: calc(100vh - 120px);
  content: '';
  transform: translate(-50% ,-50%);
  opacity: 0.5;
  background: url(../images/bg-w.png) center center no-repeat;
  background-size: contain;
}
.page .page-head::before {
  height: calc(100vh - 120px);
}

.page-head::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: var(--Blue0);
}

.page-head > div {
  width: 50%;
}

.page-head .text-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.page-head .text-box h2 {
  font-size: clamp(2rem,2.502vw,4rem);
  text-align: center;
}

.page-head .text-box p {
  font-size: clamp(1.6rem,1.953vw,2rem);
  padding-top: clamp(15px,2.93vw,30px);
  color: #fff;
  border-top: 1px solid var(--Blue3);
}

.page-head .img-box {
  position: relative;
}
.page-head .img-box img {
  width: 100%;
}

/*************************/
@media screen and (max-width: 1024px) {
  .page-head {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 70px;
  }
  .page-head > div {
    width: 100%;
  }
  .page-head .text-box {
    margin: 30px 0;
  }
  .page-head .img-box {
    flex-shrink: 2;
    height: 100%;
    min-height: 0;
  }
  .page-head::before {
    top: 0;
    transform: translate(-50%,0);
  }
}
/*************************/




/* =======================================================
   cts
======================================================== */
.cts {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
}

.cts-w {
  max-width: 1270px;
  margin-right: auto;
  margin-left: auto;
}

.cts-f {
  max-width: 100%;
}


.bg-w {
  padding-top: 120px;
  background: #fff;
}
/*************************/
@media screen and (max-width: 1310px) {
  .cts {
    padding-top: max(9.16vw,60px);
    padding-bottom: max(9.16vw,60px);
  }
  .cts-pd {
    padding-right: max(2vw,20px);
    padding-left: max(2vw,20px);
  }
  .bg-w {
    padding-top: max(9.16vw,60px);
  }
  .cts.bg-w {
    padding-top: max(9.16vw,60px);
  }
}
/*************************/




/* =======================================================
   btm-contact
======================================================== */

.cts.sec_btm-contact {
  margin-top: 0;
  padding-top: 80px;
}
/*************************/
@media screen and (max-width: 1310px) {
  .cts.sec_btm-contact {
    padding-top: max(6.107vw,60px);
    padding-bottom: max(6.107vw,60px);
  }
}
/*************************/

.sec_btm-contact {
  position: relative;
  color: #fff;
  background: url(../images/btm-contact.jpg) no-repeat;
  background-size: cover;
}

.sec_btm-contact::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  opacity: 0.7;
  background: #000;
  ;
}

.btm-contact {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
}

.btm-contact__head {
  width: 100%;
  text-align: center;
}

.btm-contact__head h3 {
  font-family: var(--Font-josefin);
  font-size: clamp(2.8rem,3.516vw,3.6rem);
  letter-spacing: 0.5rem;
}

.btm-contact__head p, .btm-contact__left span {
  font-size: clamp(1.4rem,1.221vw,1.6rem);
}

.btm-contact__left, .btm-contact__right {
  width: 50%;
  margin-top: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.btm-contact__left {
  border-right: 1px solid #ccc;
}

.btm-contact__left .phone {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}
.btm-contact__left .phone a {
  font-family: var(--Font-josefin);
  font-size: clamp(2.8rem,3.516vw,3.6rem);
  letter-spacing: 0.3rem;
  color: #fff;
}
.btm-contact__left .phone i {
  font-size: 2.1rem;
  position: relative;
  top: -2px;
  display: inline-block;
  margin-right: 15px;
  transform: rotate(96deg);
}

/*************************/
@media screen and (max-width: 767px) {
  .btm-contact__head {
    position: relative;
  }
  .btm-contact__head::after {
    position: absolute;
    bottom: -20px;
    left: 50%;
    display: block;
    width: 30rem;
    height: 1px;
    content: '';
    transform: translateX(-50%);
    background: #939393;
  }
  .btm-contact__left, .btm-contact__right {
    width: 100%;
  }
  .btm-contact__left {
    margin-top: 0;
    padding-top: 50px;
  }
  .btm-contact__right {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}
/*************************/

/*======== contact-btn ==========================*/
.more-btn.contact-btn a {
  font-family: 'Roboto','Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  width: clamp(30rem,30.534vw,40rem);
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 10px;
}
.more-btn.contact-btn a i {
  font-size: 2rem;
  position: relative;
  top: 0.5px;
  margin-right: 15px;
}




/* =======================================================
   FOOTER
======================================================== */
.footer-head {
  display: flex;
  align-items: center;
  padding-top: 60px;
}
.footer-head img {
  max-width: 280px;
  margin-right: 60px;
}

.footer-navi > ul {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.footer-navi {
  position: relative;
  z-index: 1;
}
.footer-navi__page > a {
  font-weight: 500;
}
.footer-navi__page ul {
  font-size: 1.4rem;
  padding-top: 20px;
}
.footer-navi__page ul li a {
  position: relative;
  display: block;
  padding-left: 1rem;
  text-indent: -1rem;
}
.footer-navi__page ul li a::before {
  content: '- ';
}
.footer-navi__page ul li + li a {
  margin-top: 1.6rem;
}
.footer-navi__page.has-page ul li a {
  font-size: 1.5rem;
  font-weight: 500;
}
.footer-navi__page.has-page ul li a::before {
  content: '';
}

.footer-bottom {
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #ddd;
}
/*************************/
@media screen and (max-width: 1024px) {
  .footer-navi {
    display: none;
  }
}
/*************************/
@media screen and (max-width: 899px) {
  .footer-head {
    flex-direction: column;
  }
  .footer-head a {
    margin-bottom: 20px;
  }
  .footer-bottom {
    margin-top: max(6.674vw,20px);
  }
  .footer-head img {
    margin-right: 0;
  }
}
/*************************/
@media screen and (max-width: 499px) {
  .footer-bottom {
    align-items: center;
    flex-direction: column;
  }
  .footer-bottom a {
    margin-bottom: 10px;
  }
}
/*************************/


/* =======================================================
   head
======================================================== */
.head {
  font-family: var(--Font-josefin);
  font-size: clamp(2.4rem,3.516vw,3.6rem);
  font-weight: 500;
  position: relative;
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: 0.5rem;
}

.head::before {
  position: relative;
  top: 0;
  left: 50%;
  display: block;
  width: 70px;
  height: 2px;
  margin-bottom: 30px;
  content: '';
  transform: translateX(-50%);
  background: var(--Blue2);
}
/*************************/
@media screen and (max-width: 1024px) {
  .head {
    margin-bottom: max(5.859vw,30px);
  }
  .head::before {
    margin-bottom: max(2.93vw,15px);
  }
}
/*************************/


/* =======================================================
   head02
======================================================== */
.head02 {
  line-height: 1.4;
  text-align: center;
}
.head02 span {
  display: block;
}
.head02 .ja {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}
.head02 .en {
  font-family: var(--Font-josefin);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 20px;
  color: #ccc;
}



/* =======================================================
   more-btn
======================================================== */
.more-btn a {
  font-family: var(--Font-josefin);
  font-size: 1.4rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  margin-left: auto;
  padding: 14px 10px 8px 10px;
  color: #fff;
  background: var(--Blue2);
}

.more-btn a i {
  font-size: 1.4rem;
  position: relative;
  top: -1px;
  display: inline-block;
  margin-left: 20px;
}

.more-btn a span {
  position: relative;
}

.more-btn a::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  transition: 0.2s ease-in-out;
  background: var(--Blue2);
  background: linear-gradient(90deg, var(--Blue1) 35%, var(--Blue2) 100%);
}

.more-btn a:hover::before {
  opacity: 0;
}


/* =======================================================
   access
======================================================== */
.access {
  display: flex;
}

.access-map {
  width: 55%;
  /* height: 400px; */
}
.access-map iframe {
  width: 100%;
  height: 100%;
}

.access-text {
  width: 45%;
  padding-left: 4%;
}
.access-text h4 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.access-text p:first-of-type {
  margin-bottom: 20px;
}
.access-root {
  position: relative;
  margin-top: 60px;
}
.access-root::before {
  display: block;
  width: 70px;
  height: 1px;
  margin-bottom: 20px;
  content: '';
  border-top: 1px dashed var(--Blue2);
}
.access-root i {
  font-size: 0.8rem;
  position: relative;
  top: -2px;
  margin-right: 5px;
  color: var(--Blue0);
}
/*************************/
@media screen and (max-width: 899px) {
  .access {
    flex-direction: column;
  }
  .access-map, .access-text {
    width: 100%;
  }
  .access-map {
    height: max(40dvh,300px);
    margin-bottom: max(4.449vw,30px);
  }
  .access-root {
    margin-top: max(6.674vw,20px);
  }
}
/*************************/


/* =======================================================
   MARGIN,PADDIN
======================================================== */
.mt_20 {
  margin-top: 20px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_60 {
  margin-top: 60px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_60 {
  margin-bottom: 60px;
}

.mb_80 {
  margin-bottom: 80px;
}

.pb_120 {
  padding-bottom: 120px;
}

/*************************/
@media screen and (max-width: 1310px) {
  .mt_20 {
    margin-top: 1.527vw;
  }

  .mt_40 {
    margin-top: 3.053vw;
  }

  .mt_60 {
    margin-top: 4.58vw;
  }

  .mb_40 {
    margin-bottom: 3.053vw;
  }

  .mb_60 {
    margin-bottom: 4.58vw;
  }

  .mb_80 {
    margin-bottom: 6.107vw;
  }
  .pb_120 {
    padding-bottom: max(9.16vw,60px);
  }
}

/*************************/
/* =======================================================
   TEXT-ALIGN
======================================================== */
.center {
  text-align: center;
}
.left {
  text-align: left !important;
}
.right {
  text-align: right;
}

/* =======================================================
   LINE-HEIGHT
======================================================== */
.lh-14 {
  line-height: 1.4;
}

/* =======================================================
   FONT=SIZE
======================================================== */
.ft-small {
  font-size: 90%;
}

.fs_20 {
  font-size: 2rem;
}

/* =======================================================
   COLOR
======================================================== */
.bg-brown {
  background: #c3b09d;
}

.ft_red {
  color: var(--Red);
}

.ft_orange {
  color: var(--Orange);
}

.ft_brown {
  color: #8c2d00;
}

/* =======================================================
   DISPLAY
======================================================== */
.dp-bk {
  display: block;
}

/* =======================================================
   only
======================================================== */
.pc-only_767 {
  display: block;
}

/*************************/
@media screen and (max-width: 767px) {
  .pc-only_767 {
    display: none;
  }
}

/*************************/
.sp-only_767 {
  display: none;
}

/*************************/
@media screen and (max-width: 767px) {
  .sp-only_767 {
    display: block;
  }
}

/*************************/
/* =======================================================
   WEB-FONT
======================================================== */
@font-face {
  font-family: 'webfont';
  font-weight: normal;
  font-style: normal;

  src: url('fonts/webfont.eot?txxr3j');
  src: url('fonts/webfont.eot?txxr3j#iefix') format('embedded-opentype'), url('fonts/webfont.ttf?txxr3j') format('truetype'), url('fonts/webfont.woff?txxr3j') format('woff'), url('fonts/webfont.svg?txxr3j#webfont') format('svg');
  font-display: block;
}

[class^='icon-'], [class*=' icon-'] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'webfont' !important;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;

  speak: never;

/* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-phone:before {
  content: '\f095';
}
.icon-arrow:before {
  content: '\e900';
}
.icon-download:before {
  content: '\e901';
}
.icon-mail4:before {
  content: '\e902';
}
.icon-angle-right:before {
  content: '\f105';
}
.icon-circle:before {
  content: '\f111';
}
.icon-dot-circle:before {
  content: '\f192';
}
