@charset "utf-8";
/***********************
    common
***********************/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
	overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
}
body {
	font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1;
  color: #492200;
  background: #fff;
  overflow-wrap: break-word;
}
h1,h2,h3,h4,h5,h6 {
  margin: 0;
  font-weight: normal;
  font-size: 1em; 
}
p {
  line-height: 1.6;
}
li {
	list-style-type: none;
}
img {
	border: 0;
  max-width: 100%
}
/* Link */
a:link {
	color: #492200;
	text-decoration: underline;
}
a:visited {
	color: #492200;
	text-decoration: underline;
}
a:hover {
	color: #492200;
	text-decoration: underline;
  cursor: pointer;
}
a:active {
	color: #492200;
	text-decoration: underline;
}
/* other */
.mt30 {
  margin-top: 30px;
}
.mt60 {
  margin-top: 60px;
}
.mt120 {
  margin-top: 120px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb120 {
  margin-bottom: 120px;
}
.font_larger {
  font-size: 1.125em;  
}
.font_xlarger {
  font-size: 1.5em;  
}
.font_xxlarger {
  font-size: 2em;  
}
.bold {
  font-weight: 600;
}
.al_center {
  text-align: center;
}
.clear {
	clear: both;
}

/***********************
    main
***********************/
main > section {
  padding: 0 20px;
  overflow: hidden;
}
main > section.bg_pink {
  background: #F9DCDC;
}
.wave {
  position: relative;
  width: 100%;
  line-height: 0;
}
.wave.top_wave {
  margin-top: -1px;
}
.wave.bottom_wave {
  margin-bottom: -1px;
}

@media screen and (max-width: 480px) { 
/*　画面サイズが480px以下はここを読み込む　*/
  /***********************
    common
  ***********************/
  .show_pc {
    display: none;
  }
  body {
    overflow: scroll;
  }
  /***********************
    header
  ***********************/
  header {
    background: #fff;
    display: flex;
    justify-content: space-between;
  }
  header .logo_main {
    font-size: 0em;
  }
  #nav_box {
    display: flex;
  }
  #nav_box .tel {
    width: 80px;
    height: 90px;
    margin-right: 1px;
    border: 1px #492200 solid;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /*====== ハンバーガーメニュー ======*/
  #nav_box .global-navigation {
    position: relative;
  }
  #nav_box .global-navigation ul {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    display: none;
    opacity: 0;
    transition: 0.5s all linear;
    transition-brhavior: allow-discrete;
    z-index: 100;
  }
  #nav_box .global-navigation ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    text-decoration: none;
    border-bottom: 1px #492200 solid;
  }
  #nav_box .global-navigation ul li a.gaibu::before {
    content: url("../img/common/ic_gaibu.png");
    display: inline-block;
    margin: 5px 5px 0 0;
  } 
  #nav_box .global-navigation ul li:first-child a {
    border-top: 1px #492200 solid;
  }
  /* メニューが開いているとき */
  #nav_box .global-navigation.open ul {
    display: block;
    opacity: 1;
    @starting-style {
      opacity: 0;
    }
  }
  /* ボタンのスタイル */
  .hamburger {
    width: 80px;
    height: 90px;
    padding: 30px 10px;
    border: 1px #492200 solid;
    cursor: pointer;
    z-index: 10;
  }
  .hamburger span {
    display: block;
    height: 3px;
    width: 60px;
    background-color: #492200;
    transition: 0.3s;
  }
 .hamburger span:not(:first-child) {
    margin-top: 10px;
  }
  /* バツ印に変化するスタイル */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}
@media screen and (min-width: 481px) { 
/*　画面サイズが481pxからはここを読み込む　*/
  /***********************
    common
  ***********************/
  .show_sp {
    display: none;
  }
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
   }
  /***********************
    header
  ***********************/
  .global-navigation ul {
    display: flex;
    justify-content: center;
    flex-direction: row;
    max-width: 1400px;
    margin: 0 auto;
  }
  .global-navigation ul li {
    text-align: center;
    width: 14vw;
  }
  .global-navigation ul li.li_news {
    order: 1;
  }
  .global-navigation ul li.li_flow {
    order: 3;
  }
  .global-navigation ul li.li_works {
    order: 5;
  }
  .global-navigation ul li.li_staff {
    order:6 ;
  }
  .global-navigation ul li.li_access {
    order: 7;
  }
  .global-navigation ul li.li_info {
    order: 2;
  }
  .global-navigation ul li.li_logo {
    order: 4;
    width: 16vw;
    display: flex;
    align-items: flex-end;
  }
  .global-navigation ul li.li_logo h1 {
    width: 16vw;
  }
  .global-navigation ul li.li_news a::before {
    content: " ";
    background-image: url("../img/common/nav_news.png"); 
  }
  .global-navigation ul li.li_flow a::before {
    content: " ";
    background-image: url("../img/common/nav_flow.png"); 
  }
  .global-navigation ul li.li_works a::before {
    content: " ";
    background-image: url("../img/common/nav_works.png"); 
  }
  .global-navigation ul li.li_staff a::before {
    content: " ";
    background-image: url("../img/common/nav_staff.png"); 
  }
  .global-navigation ul li.li_access a::before {
    content: " ";
    background-image: url("../img/common/nav_access.png"); 
  }
  .global-navigation ul li.li_info a::before {
    content: " ";
    background-image: url("../img/common/nav_info.png"); 
  }
  .global-navigation ul li a::before {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    width: 8vw;
    height: 8vw;
    max-width: 105px;
    max-height: 91px;
    margin-bottom: 5px;
    transition: all .3s;
  }
  .global-navigation ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
    font-size: 0.6em;
    font-weight: 800;
  }
  .global-navigation ul li a:visited {
    text-decoration: none;
  }
  .global-navigation ul li a:hover::before {
    transform: translateY(-5px);
  }
  /***********************
    footer
  ***********************/
  #footer_nav_box {
    max-width: 1600px;
    margin: 0 auto 60px;
  }
  .footer-navigation ul {
    display: flex;
  }
  .footer-navigation ul li {
    flex: 1;
    text-align: center;
  }
  .footer-navigation a {
    text-decoration: none;
    font-size: 0.6em;
    position: relative;
  }
  .footer-navigation a::after {
    content: " ";
    background: #492200;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .3s;
  }
  .footer-navigation a:hover::after {
    transform: scale(1, 1);
  }
}
@media screen and (min-width: 768px) { 
/*　画面サイズが768pxからはここを読み込む　*/
  /***********************
    footer
  ***********************/
  .footer-navigation a , .footer-navigation a:visited {
    font-size: 0.8em;
  }
}
@media screen and (min-width: 961px) { 
/*　画面サイズが961pxからはここを読み込む　*/
  /***********************
    common
  ***********************/
  .mt30.responsive {
    margin-top: 60px;
  }
  .mt60.responsive {
    margin-top: 120px;
  }
  .mt120.responsive {
    margin-top: 240px;
  }
  /***********************
    header
  ***********************/
  .global-navigation ul li a {
    font-size: 1em;
  }
  /***********************
    footer
  ***********************/
  .footer-navigation a , .footer-navigation a:visited {
    font-size: 1em;
  }
}
@media screen and (min-width: 1601px) { 
/*　画面サイズが1601pxからはここを読み込む　*/
}















