@charset "UTF-8";

/*----------------------------------*\
    $CONTENTS
\*----------------------------------*/
 
/**
 * $CONTENTS
 * $ANIMATION
 * $COMMON
 *
 * $header
 * $firstview
 *
 *
 * $FOOTER
 *
 * $contact-page
 * $works
 */
 
 
 
 
 
 
 
 /*----------------------------------*\
    $ANIMATION
\*----------------------------------*/

@keyframes opacityAnimation {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fluffyAnimation {
  0% {
    transform: translateY(0); }
  5% {
    transform: translateY(0); }
  10% {
    transform: translateY(0); }
  20% {
    transform: translateY(-7px); }
  25% {
    transform: translateY(0); }
  30% {
    transform: translateY(-7px); }
  50% {
    transform: translateY(0); }
  100% {
    transform: translateY(0); }
}
 
 @keyframes fv_anime_pc {
    0% {
        opacity: 1;
		transform: translate(-1%);
    }
    33% {
        opacity: 1;
    }
    40% {
        opacity: 0;
		transform: translate(-15%);
        z-index: 10;
}
    100% {
        opacity: 0;
		transform: translate(-15%);
    }
}
 @keyframes fv_anime_sp {
    0% {
        opacity: 1;
		transform: translate(-15%);
    }
    33% {
        opacity: 1;
    }
    40% {
        opacity: 0;
		transform: translate(-45%);
        z-index: 10;
}
    100% {
        opacity: 0;
		transform: translate(-45%);
    }
}
 @keyframes fv_anime_sp_firstview2 {
    0% {
        opacity: 1;
		transform: translate(-25%);
    }
    33% {
        opacity: 1;
    }
    40% {
        opacity: 0;
		transform: translate(-50%);
        z-index: 10;
}
    100% {
        opacity: 0;
		transform: translate(-50%);
    }
}


 
 
 
 
 
 
 
/*----------------------------------*\
    $COMMON
\*----------------------------------*/
 
/**
 * (1) htmlタグ
 * (2) .ctaArea(問い合わせボタン)
 * (2.5) $ContactSection
 * (3) 見出し 
 * (4) .googleMaps
 * (5) .free_dial
 * (6) .tel-button
 * (7) .to-top(ページ上部へ戻るボタン)
 * (8) .link_button
 * (9) .common_page()
 */

/* (1) htmlタグ */
* {
	box-sizing: border-box;
}
body{
  animation-name: opacityAnimation;
  animation-duration: 1.5s;
	background-color: #fff;
	color: #222;
	font-family: 'Noto Serif JP', "游明朝", "Yu Mincho", serif;
	font-size: 16px;
	margin: 0;
}
@media screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }
}
img{ 
	border: 0;
	max-width:100%;
	vertical-align: middle;
}
a {
	background-color: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: .4s ease;
}
p {
  line-height: 26px;
}
@media screen and (max-width: 600px) {
  p {
    line-height: 24px;
  }
}


/*----------------------------------*\
    $レイアウト
\*----------------------------------*/
.page_wrapper {
  padding-top: 66px;
}
.section {
  padding: 80px 0 50px;
}
.section_gray {
  background: #f4f4f4;
  padding: 80px 0 50px;
}
.section_yellow {
  background: #ffd44b;
  padding: 60px 0 60px;
}
.wrapper {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}
.wrapper_wide {
  margin: 0;
  padding: 0;
  width: 100%;
}
.wrapper_narrow {
  margin: 0 auto;
  max-width: 750px;
  padding: 0 20px;
}
.wrapper_column {
  margin: 0 auto;
  max-width: 550px;
  padding: 0 20px;
}
@media screen and (max-width: 1050px) {
  .section {
    padding: 65px 0 40px;
  }
  .section_gray {
    padding: 65px 0 40px;
  }
  .section_yellow {
    padding: 50px 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .section {
    padding: 50px 0 30px;
  }
  .section_gray {
    padding: 50px 0 30px;
  }
  .section_yellow {
    padding: 40px 0 40px;
  }
}


/*----------------------------------*\
    $タイポグラフィー
\*----------------------------------*/
.en {
  font-family: 'Merriweather', serif;
  font-weight: 300;
}
.lead_text {
  color: #000;
  font-size: 38px;
  line-height: 1.6;
}
.ruby_text {
  color: #000;
  font-size: 24px;
}
.link_lead_text {
  font-size: 18px;
  font-weight: bold;
  line-height: 2.0;
}
.page_lead_text {
  color: #000;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 1050px) {
  .lead_text {
    font-size: 32px;
  }
  .ruby_text {
    font-size: 20px;
  }
  .page_lead_text {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .lead_text {
    font-size: 22px;
  }
  .ruby_text {
    font-size: 14px;
  }
  .link_lead_text {
    font-size: 16px;
  }
  .page_lead_text {
    font-size: 16px;
  }
}

/*----------------------------------*\
    $ユーティリティー
\*----------------------------------*/
.text_center { text-align: center; }

.w25 { width: 25%; }
.w30 { width: 30%; }
.w33 { width: 33.3333%; }
.w45 { width: 45%; }
.w50 { width: 50%; }
.w55 { width: 55%; }
.w66 { width: 66.6667%; }
.w75 { width: 75%; }
.w100 { width: 100%; }
@media screen and (max-width: 1050px) {
  .w33_md { width: 33.3333%; }
  .w66_md { width: 66.6667%; }
}
@media screen and (max-width: 600px) {
  .w100_sm { width: 100%; }
}

.h600 { height: 600px; }
.maxh_600 { max-height: 600px; }
@media screen and (max-width: 600px) {
  .maxh_none_sm { max-height: none; }
}

.mt30 { margin-top: 30px; }
.mt50 { margin-top: 50px; }
.mt70 { margin-top: 70px; }
.mt100 { margin-top: 100px; }
.mt120 { margin-top: 120px; }
.mt150 { margin-top: 150px; }
@media screen and (max-width: 1050px) {
  .mt0_md { margin-top: 0; }
  .mt10_md { margin-top: 10px; }
  .mt20_md { margin-top: 20px; }
  .mt25_md { margin-top: 25px; }
  .mt30_md { margin-top: 30px; }
  .mt40_md { margin-top: 40px; }
  .mt50_md { margin-top: 50px; }
  .mb20_md { margin-bottom: 20px; }
}
@media screen and (max-width: 600px) {
  .mt5_sm { margin-top: 5px; }
  .mt25_sm { margin-top: 25px; }
  .mt30_sm { margin-top: 30px; }
  .mt40_sm { margin-top: 40px; }
  .mt50_sm { margin-top: 50px; }
}
.pt150 { padding-top: 150px; }
.pb50 { padding-bottom: 50px;}
.pb100 { padding-bottom: 100px;}
.pb150 { padding-bottom: 150px;}
@media screen and (max-width: 1050px) {
  .pb20_md { padding-bottom: 20px;}
  .pb50_md { padding-bottom: 50px;}
}
@media screen and (max-width: 600px) {
  .pb0_sm { padding-bottom: 0;}
  .pb30_sm { padding-bottom: 30px;}
}

.relative {
  position: relative;
}

/* 画像、オーバーレイ */
.cover_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.contain_img img {
  object-fit: contain;
  width: 70%;
  height: 100%;
}
.overlay {
  position: absolute;
  background-color: rgba(0,0,0,0.4);
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Flex系ユーティリティー */
.flex { display: flex; }
.flex_column {
  display: flex;
  flex-direction: column;
}
.flex_reverse {
  display: flex;
  flex-direction: row-reverse;
}
.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex_between {
  display: flex;
  justify-content: space-between;
}
.align_center { align-items: center; }

/* WP自動挿入CSS無効化 */
.reset_align_items {
  align-items: stretch !important;
}
@media screen and (max-width: 600px) {
  .block_sm {
    display: block;
  }
}

/*----------------------------------*\
    $コンポーネント
\*----------------------------------*/

/* 見出し */
.heading_bg_circle {
  display: inline-flex;
  align-items: end;
  margin-left: 30px;
  position: relative;
  z-index: 1;
}
.heading_bg_circle::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: #ffd44b;
  border-radius: 50%;
  top: 25%;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.heading_bg_circle h1,
.heading_bg_circle h2,
.heading_bg_circle h3 {
  font-size: 34px;
}
.heading_bg_circle p {
  font-size: 16px;
  margin-left: 40px;
}
@media screen and (max-width: 1050px) {
  .heading_bg_circle::before {
    width: 50px;
    height: 50px;
  }
  .heading_bg_circle h1,
  .heading_bg_circle h2,
  .heading_bg_circle h3 {
    font-size: 26px;
  }
  .heading_bg_circle p {
    font-size: 14px;
    margin-left: 35px;
  }
}
@media screen and (max-width: 600px) {
  .heading_bg_circle {
    display: inline-block;
  }
  .heading_bg_circle::before {
    width: 30px;
    height: 30px;
    top: 20%;
  }
  .heading_bg_circle h1,
  .heading_bg_circle h2,
  .heading_bg_circle h3 {
    font-size: 20px;
  }
  .heading_bg_circle p {
    font-size: 12px;
    margin-left: 0;
    text-align: center;
  }
}
.heading_numbered h1,
.heading_numbered h2,
.heading_numbered h3 {
  font-size: 24px;
}
.heading_numbered span {
  color: #ffd44b;
  display: inline-block;
  font-size: 54px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1050px) {
  .heading_numbered h1,
  .heading_numbered h2,
  .heading_numbered h3 {
    font-size: 20px;
  }
  .heading_numbered span {
    font-size: 42px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .heading_numbered h1,
  .heading_numbered h2,
  .heading_numbered h3 {
    font-size: 16px;
  }
  .heading_numbered span {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
.heading_plain {
  font-size: 22px;
}
@media screen and (max-width: 1050px) {
  .heading_plain {
    line-height: 1.4;
  }
}

/* ボタン */
.button_yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffd44b;
  color: #444;
  font-size: 16px;
  border: none;
  border-radius: 3px;
  padding: 20px 55px;
}
.button_yellow:hover {
  background-color: #222;
  color: #fff;
}
@media screen and (max-width: 1050px) {
  .button_yellow {
    padding: 14px 38px;
  }
}
@media screen and (max-width: 600px) {
  .button_yellow {
    font-size: 14px;
    padding: 12px 32px;
  }
}
.button_black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #222;
  color: #fff;
  font-size: 16px;
  border: solid 1px #222;
  border-radius: 3px;
  padding: 20px 55px;
}
.button_black:hover {
  background-color: #ffd44b;
  color: #444;
}
@media screen and (max-width: 1050px) {
  .button_black {
    padding: 20px 20px;
  }
}
@media screen and (max-width: 600px) {
  .button_black {
    font-size: 14px;
    padding: 12px 32px;
  }
}

/* テーブル */
.table {
  line-height: 2;
}
.table tr {
  background-color: #f0f0f0;
}
.table tr:nth-child(even) {
  background-color: #fff;
}
.table tr td {
  border: none;
  width: 75%;
}
.table tr td:first-child {
  width: 25%;
}

/* googleMaps */
.googleMaps {
  position: relative;
  padding-bottom: 50%;
}
.googleMaps iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* cta */
.cta {
  height: 600px;
  text-align: center;
	position: relative;
	overflow: hidden;
}
.cta_overlay {
  background-color: rgba(255,255,255,0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
}
.cta_bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cta_text {
  font-size: 20px;
  line-height: 2;
}
@media screen and (max-width: 1050px) {
  .cta {
    height: 550px;
  }
}
@media screen and (max-width: 600px) {
  .cta {
    height: 500px;
  }
  .cta_text {
    font-size: 16px;
  }
}

/* BREAD_CRUMB */
.bread_crumb {
  display: flex;
  max-width: 1250px;
  margin: 20px auto;
  font-size: 12px;
  line-height: 22px;
}
.bread_crumb li {
  margin-left: 10px;
  text-align: center;
}
.bread_crumb li a {
  transition: .2s;
}
.bread_crumb li a:hover{
  color: #999;
}
.bread_crumb li + li:before{
  content: "\F105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 5px;
}

/* グリッド */
.grid {
  display: flex;
}
.grid h1,
.grid h2,
.grid h3 {
  align-items: center;
  background: #ffd44b;
  color: #333333;
  display: flex;
  font-size: 22px;
  font-weight: 700;
  justify-content: center;
  margin-right: 20px;
  width: 280px;
}
@media screen and (max-width: 1050px) {
  .grid h1,
  .grid h2,
  .grid h3 {
    font-size: 20px;
    width: 23%;
  }
}
@media screen and (max-width: 600px) {
  .grid {
    display: block;
  }
  .grid h1,
  .grid h2,
  .grid h3 {
    font-size: 16px;
    width: auto;
    margin-right: 0;
    padding: 10px 7px;
  }
}
.grid ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 700;
  margin-top: -15px;
  width: calc(100% - 300px);
}
.grid li {
  width: calc(100% / 3 - 10px);
  margin: 15px 15px 0 0;
  background: #fff;
  border-radius: 2px;
  border: solid 1px #666;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, .1);
  position: relative;
  transition: .2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 90px;
}
.grid li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 1050px) {
  .grid ul {
    font-size: 16px;
    width: 74%;
  }
}
@media screen and (max-width: 600px) {
  .grid ul {
    width: 100%;
    margin-top: 0;
  }
  .grid li {
    width: calc(100% / 2 - 5px);
    margin: 10px 10px 0 0;
  }
  .grid li:nth-child(3n) {
    margin-right: 10px;
  }
  .grid li:nth-child(2n) {
    margin-right: 0;
  }
}
.grid .grid_with_image {
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 700;
  margin-top: -15px;
  text-align: center;
  width: calc(100% - 300px);
}
.grid .grid_with_image .card {
  width: calc(100% / 3 - 15px);
  margin: 15px 20px 0 0;
  background: #fff;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, .1);
  position: relative;
  transition: .2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.grid .grid_with_image .card:nth-child(3n) {
  margin-right: 0;
}
.grid .grid_with_image .card img {
  height: 240px;
  object-fit: cover;
}
.grid .grid_with_image .card p {
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1050px) {
  .grid .grid_with_image {
    font-size: 16px;
    width: 74%;
  }
}
@media screen and (max-width: 600px) {
  .grid .grid_with_image {
    width: 100%;
    margin-top: 0;
  }
  .grid .grid_with_image .card {
    width: calc(100% / 2 - 5px);
    margin: 10px 10px 0 0;
  }
  .grid .grid_with_image .card:nth-child(3n) {
    margin-right: 10px;
  }
  .grid .grid_with_image .card:nth-child(2n) {
    margin-right: 0;
  }
}


/* (7) .to-top(ページ上部へ戻るボタン) */
.js-to-top {
  width: 80px;
  position: fixed;
  right: 35px;
  bottom: 40px;
  opacity: 0;
  z-index: 100;
  transition: all .4s;
}
@media screen and (max-width: 1024px) {
  .js-to-top {
    width: 60px;
    right: 25px;
    bottom: 156px;
  }
}
@media screen and (max-width: 600px) {
  .js-to-top {
    right: 25px;
    bottom: 114px;
  }
}
.js-to-top.fixed {
  opacity: 1;
}
.js-to-top.fixed:hover {
  opacity: .8;
}

.js_toTop {
	z-index: 99;
	position: fixed;
	right: 0;
	bottom: 0;
	display: none;
	animation: opacityAnimation .3s ease 0s;
}
.js_toTop.fixed  {
	display: block;
}
.js_toTop a {
display: block;
  position: relative;
  width: 60px;
  height: 60px;
  background: #333;
  color: #fff;
}
.js_toTop a:after {
position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: 600;
  content: "\F106";  
}


/* (8) .link_button */
.link_button {
	background-color: #444;
	color: #fff;
	display: inline-block;
	height: 60px;
	line-height: 60px;
	margin-top: 65px;
	width: 310px;
}









/*----------------------------------*\
    $Header
\*----------------------------------*/
.headerBar {
	color: #fff;
  position: fixed;
  top: 0;
  z-index: 100;
  height: 66px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s;
}
.headerBar.fixed,
.fixedHeader {
  box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
	background: #ffffff;
	color: #222;
  height: 66px;
}
.headerBar_inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .headerBar_inner {
    padding: 0 25px;
  }
}
.top-header__title {
  height: 100%;
}
.top-header__title.js-header_white {
  display: block;
}
.top-header__title.js-header_white.hide {
  display: none;
}
.top-header__title.js-header_green {
  display: none;
}
.top-header__title.js-header_green.show {
  display: block;
}
.top-header__logo a {
  text-align: center;
}
.top-header__logo a:hover {
  opacity: .8;
}
.top-header__logo {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.top-header__logo img {
  margin: 0 auto 0 0;
}
@media screen and (max-width: 1050px) {
  .top-header__logo img {
    height: 50px;
  }
}
@media screen and (max-width: 600px) {
  .top-header__logo img {
    height: 46px;
  }
}
.top-header__logo .logo {
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  top: 5px;
}
@media screen and (max-width: 1050px) {
  .top-header__logo .logo {
    top: 8px;
  }
}
@media screen and (max-width: 600px) {
  .top-header__logo .logo {
    top: 10px;
  }
}
.top-header__logo .logo.active {
  opacity: 1;
}



/*  */
.header_menu-pc {
  display: flex;
  height: 100%;
}
.header_menu-pc {
  display: flex;
  height: 100%;
}
@media screen and (max-width: 1050px) {
  .header_menu-pc {
    display: none;
  }
}

/* ハンバーガーメニュー PC表示 */
@media screen and (min-width: 1051px) {
  .header_menu {
    display: none;
  }
  .header_menu-list {
    display: flex;
    align-items: end;
    width: 100%;
    justify-content: center;
    height: 100%;
    line-height: 42px;
    position: relative;
  }
}
.header_menu-nav {
  /* width: 100%; */
  height: 100%;
}
.header_menu-list li {
  margin: 0;
  height: 100%;
}
.header_menu-list li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 30px;
  font-size: 14px;
  transition: .2s;
}
@media screen and (max-width: 1280px) {
	.header_menu-list li a {
	  padding: 0 15px;
	}
}
.header_menu-list li a:hover {
  /* color: #004d2d; */
  opacity: .7;
}
.header_menu-list li .icon-open:after {
  content: "\F107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  margin-top: 1px;
}


@media screen and (min-width: 1051px) {
  .sub-menu {
    background: rgba(0,0,0,.8);
    color: #fff;
    display: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    z-index: 9999;
  }
  .header_menu-list li:hover .sub-menu {
    display: block;
  }
  .sub-menu li {
    border-left: none;
  }
  .sub-menu li:last-child {
    border-right: none;
  }
  .sub-menu li a{
    display: block;
    width: 100%;
    border-top: dotted 1px gray;
    border-left: none;
    border-right: none;
    padding: 5px 15px;
  }
  .sub-menu li:first-child a {
    border: none;
  }
}

/* ハンバーガーメニュー SP表示 */
@media screen and (min-width: 1051px) {
  .menu-btn {
    display: none;
  }
}
@media screen and (max-width: 1050px) {
  .header_menu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 100%;
    z-index: 80;
    overflow-y: auto;
/*    background-color: #3584bb;*/
    background-color: #555;
    transition: ease-in-out .2s;
    display: flex;
    flex-direction: column;
  }
  .menu-btn.open ~ .header_menu {
    left: 0;
  }
  .header_menu-list {
    padding-top: 75px;
  }
  .header_menu-list .sub-menu {
    padding-left: 30px;
  }
  .header_menu-list li {
    border-bottom: solid 1px #aaa;
    border-left: none;
    list-style: none;
  }  
  .header_menu-list .sub-menu li:last-child {
    border-bottom: none;
  }  
  .header_menu-list li:last-child {
    border-right: none;
  }  
  .header_menu-list li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 15px 15px 15px 20px;
    position: relative;
    transition: .2s;
  }
  .header_menu-list li a:not([href]) {
    display: none;
  }
  .header_menu-list li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 15px;
    top: 25px;
  }
  .header_menu-list li a:hover {
    background-color: #aaa;
    color: #fff;
  }
  .menu-btn {
    position: fixed;
    top: 11px;
    right: 25px;
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
    height: 44px;
    width: 44px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #222;
    transition: .2s;
    border-radius: 3px;
  }
  .menu-btn:hover {
    background-color: #666;
  }

  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 22px;
    border-radius: 2px;
    background-color: #ffffff;
    position: absolute;
  }
  .menu-btn span:before {
    bottom: 8px;
  }
  .menu-btn span:after {
    top: 8px;
  }
}
@media screen and (max-width: 600px) {
  .menu-btn {
    top: 14px;
    height: 38px;
    width: 38px;
    border-radius: 2px;
  }
  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    width: 18px;
  }
}






/*----------------------------------*\
    $firstview
\*----------------------------------*/
 
.firstview {
	position: relative;
	height: 100svh;
	overflow: hidden;
}
@media screen and (max-width: 1050px) {
	.firstview {
		height: calc(100svh - 66px);
	}
}
@media screen and (max-width: 600px) {
	.firstview {
		height: calc(100svh - 50px);
	}
}
.firstview_overlay {
  background-color: rgba(0,0,0,0.4);
  width: 100%;
  height: 100%;
  z-index: 5;
  position: absolute;
  top: 0;
}


.firstview-slider {
	width: 100%;
	position: relative;
	height: 100vh;
}
.firstview_slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease;				  
}
.firstview_slide.active {
	opacity: 1;
	z-index: 1;
}
.firstview_slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.firstview_indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.firstview_dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 50%;
  background: #aaa;
  cursor: pointer;
}
.firstview_dot.active {
  background: #fff;
}




.firstview-catch {
	color: #fff;
	font-size: 68px;
	font-weight: 400;
	position: absolute;
	left: 50%;
	top: 50%;
  text-align: center;
	text-shadow: 0px 0 5px rgb(0, 0, 0);
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	display: none;
	animation: opacityAnimation 1.5s ease 0s;
  width: 100%;
}
@media screen and (max-width: 1280px) {
	.firstview-catch {
		font-size: 38px;
	}
}
@media screen and (max-width: 1050px) {
	.firstview-catch {
		font-size: 30px;
	}
}
@media screen and (max-width: 600px) {
	.firstview-catch {
		font-size: 24px;
		width: 90%;
	}
}
.firstview-catch.fixed {
	display: block;
    z-index: 15;
}
.firstview-catch:before {
	display: none;
}






/*----------------------------------*\
    $FOOTER
\*----------------------------------*/

.footer_main_columns {
  display: flex;
  justify-content: space-between;
}
.footer_message {
  width: 31%;
}
.footer_message_title {
  font-size: 16px;
}
.footer_message_text {
  font-size: 14px;
  line-height: 2.5;
  margin-top: 20px;
}
.footer_menu {
  display: flex;
  width: 50%;
}
.footer_menu_title {
  font-size: 16px;
}
.footer_menu_list {
  color: #444444;
	font-size: 14px;
  margin-top: 20px;
}
.footer_menu_list li {
  line-height: 2.5;
}
.footer_division {
  background-color: #bbb;
  height: 1px;
  margin-top: 30px;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .footer_message {
    width: 35%;
  }
}
@media screen and (max-width: 1050px) {
  .footer_message {
    width: 40%;
  }
}
@media screen and (max-width: 600px) {
  .footer_main_columns {
    display: block;
  }
  .footer_message {
    width: auto;
  }
  .footer_menu {
    display: block;
    width: auto;
  }
  .footer_menu_list {
    margin-top: 10px;
  }
}

.footer_submenu {
  margin-top: 50px;
}
.footer_submenu ul {
	display: flex;
}
.footer_submenu ul li {
	font-size: 14px;
  margin-left: 20px;
}
.footer_submenu ul li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 1050px) {
  .footer_submenu {
    margin-top: 45px;
  }
}
@media screen and (max-width: 600px) {
  .footer_submenu {
    margin-top: 40px;
  }
	.footer_submenu ul li {
		font-size: 12px;
		margin: 0 7px;
	}
}

.footer_copyright {
  background-color: #222;
  text-align: left;
}
.footer_copyright p {
  color: #d5d5d5;
  margin: 0 auto;
  line-height: 90px;
  max-width: 1200px;
}
@media screen and (max-width: 1050px) {
  .footer_copyright p {
    line-height: 80px;
  }
}
@media screen and (max-width: 600px) {
  .footer_copyright p {
    line-height: 70px;
  }
}







 

 

/*----------------------------------*\
    $contact_form
\*----------------------------------*/
.contact .p-country-name {
  display: none;
}
.contact_form {
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  table-layout: auto;
  width: 100%;
}
@media screen and (max-width: 650px) {
  .contact_form {
    margin: 0 0 10px 0;
    border-bottom: 1px solid #bbb;
  }
}
.contact_form th,
.contact_form td {
  border: 1px solid #bbb;
  line-height: 1.5;
  padding: 0.7rem;
  text-align: left;
  vertical-align: middle;
  word-break: break-all;
}
.contact_form th {
  background: #eee;
  font-weight: normal;
  width: 25%;
}
@media screen and (max-width: 650px) {
  .contact_form th, 
  .contact_form td {
    border-bottom: none;
    display: block;
    padding: 0.8em;
    width: 100%;
  }
}
.contact_form input[type="text"],
.contact_form input[type="email"],
.contact_form textarea {
  border: solid 1px #bbb;
  padding: 0.2rem;
  width: 100%;
}
.contact_form .required {
  color: red;
  font-size: 80%;
}
.contact_form .optional {
  font-size: 80%;
}

.mw_wp_form_confirm .confirm-hidden {
  display: none;
} 
.contact .privacy {
  margin: 40px auto 0;
}
.contact .privacy .privacy_content {
  border: solid 1px #bbb;
  width: 800px;
  margin: 25px auto 35px;
  padding: 20px 10px;
  height: 250px;
  overflow-y: scroll;
  background-color: #f8f8f8;
}
@media screen and (max-width: 800px) {
  .contact .privacy .privacy_content {
    width: 95%;
    margin: 0px auto 15px;
  }
}
p.privacy_ttl {
  font-weight: bold;
}
p.privacy_text {
  margin: 0 15px 20px;
}
@media screen and (max-width: 800px) {
  .privacy_text {
    margin: 0 10px;
  }
}

.contact .submit {
  padding: 18px 50px;
  font-size: 18px;
  background-color: #ffd44b;
  color: #444;
  transition: 0.2s;
  border-radius: 3px;
  margin: 60px 10px 10px
}
@media screen and (max-width: 650px) {
  .contact .submit {
    margin: 20px auto 0;
  }
}
.contact .submit:hover {
  background-color: #222;
  color: #fff;
}
.contact .submit.back {
  background-color: #555;
  color: #fff;
  padding: 18px 50px;
}
.contact .submit.back:hover {
  opacity: .7;
}
.mw_wp_form .contact .error {
  display: inline-block;
  background: #ffe6f1;
  margin-top: 10px;
  padding: 2px 10px;
}
.mw_wp_form .error_message {
  display: none;
}
.mw_wp_form_error .error_message {
  background-color: #ffe6f1;
  color: #B70000;
  display: block;
  line-height: 3;
  margin: 60px 0 40px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .mw_wp_form_error .error_message {
    margin-left: 15px;
    margin-right: 15px;
  }
}
 p.complete_message {
  border: solid 1px black;
  padding: 25px;
  width: 600px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 650px) {
   p.complete_message {
    padding: 15px;
    width: 95%;
    font-size: 14px;
  }
}


 
 
 