@charset "UTF-8";

/*------------------------------------------------------------
  reset
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}
*{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html{
  -webkit-font-smoothing: antialiased;
}
body{
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
  display:block;
}
nav ul {
  list-style:none;
}
li {
  list-style: none;
}
blockquote, q {
  quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content:'';
  content:none;
}
/* change colours to suit your needs */
ins {
  background-color:#ff9;
  color:#000;
  text-decoration:none;
}

/* change colours to suit your needs */
mark {
  background-color:#ff9;
  color:#000; 
  font-style:italic;
  font-weight:bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom:1px dotted;
  cursor:help;
}

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

/* change border colour to suit your needs */
hr {
  display:block;
  height:1px;
  border:0;   
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}

input, select {
  vertical-align:middle;
}

/*------------------------------------------------------------
  web fonts
------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500&display=swap');
/*font-family: 'Noto Serif JP', serif;*/

/*------------------------------------------------------------
  basic layout
------------------------------------------------------------*/
html, body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  line-height:1.8;
  color:#505050;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

img {
  vertical-align: top;
  width: 100%;
}

a {
  border: none;
  text-decoration: none;
  transition: .3s;
  color: #505050;
}
@media only screen and (min-width: 769px) {
  a:hover {
    opacity: .7;
  }
}

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

/*------------------------------------------------------------
  header
------------------------------------------------------------*/
header{
  position: fixed;
  z-index: 10000;
  padding: 20px 50px;
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header h1{
  max-width: 420px;
  width: 420px;
}
header #nav-toggle {
  display: none;
}
header #navi{
  width: calc(100% - 450px);
}
header #navi nav .menu{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header #navi nav .menu li{
  margin-left: 25px;
}
header #navi nav .menu li:nth-child(1),
header #navi nav .menu li:nth-child(5){
  display: none;
}
header #navi nav .menu li a{
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  color: #000;
  padding: 5px 0;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 769px) {
  header #navi nav .menu li a:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #ecf5f5;
    height: 4px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  header #navi nav .menu li a:hover{
    opacity: 1;
  }
  header #navi nav .menu li a:hover:before, header #navi nav .menu li a:active:before,
  header #navi nav .menu li a.act:before {
    right: 0;
  }
}
header #navi nav .menu li.tel{
  text-align: right;
}
header #navi nav .menu li.tel a{
  font-size: 2.2rem;
  color: #187C7C;
  pointer-events: none;
}
header #navi nav .menu li.tel span{
  display: block;
  font-size: 1.1rem;
  line-height: 1;
}
header #navi nav .menu li.contact a{
  background-color: #187C7C;
  border: solid 1px #187C7C;
  color: #fff;
  padding: 10px 20px;
}
header #navi nav .menu li.contact a:after {
  font-family: 'Material Icons';
  content: '\e5c8';
  margin-left: 5px;
  vertical-align: bottom;
}
header #navi nav .menu li.contact a:hover{
  background-color: #fff;
  color: #187C7C;
  opacity: 1;
}
header #navi nav .menu li.contact a:before{
  display: none;
}
header #navi nav .sp-btn{
  display: none;
}
@media only screen and (max-width: 1350px) {
  header{
    padding: 20px 10px;
  }
  header h1{
    max-width: 380px;
    width: 380px;
  }
  header #navi{
    width: calc(100% - 400px);
  }
  header #navi nav .menu li{
    margin-left: 20px;
  }
  header #navi nav .menu li a{
    font-size: 1.4rem;
  }
  header #navi nav .menu li.tel a{
    font-size: 2rem;
  }
}
@media only screen and (max-width: 1110px) {
  header h1{
    max-width: 300px;
    width: 300px;
  }
  header #navi{
    width: calc(100% - 320px);
  }
  header #navi nav .menu li{
    margin-left: 15px;
  }
  header #navi nav .menu li.tel a{
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 991px) {
  header #navi nav .menu{
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  }
}
@media only screen and (max-width: 990px) {
  header{
    padding: 10px;
  }
  header h1{
    max-width: 280px;
    width: 280px;
  }
  header #navi{
    width: auto;
  }
  header nav {
    right: -100%;
    top: 0;
    background: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    text-align: center;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    overflow-y: auto;
    background-color: #187C7C;
    opacity: 0;
  }
  header #nav-toggle {
    right: 15px;
    top: 0;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 10000;
    padding: 10px;
    display: block;
    transition: .5s;
    position: relative;
  }
  header #nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #187C7C;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }
  header #nav-toggle span:nth-child(1) {
    top: 2px;
  }
  header #nav-toggle span:nth-child(2) {
    top: 11px;
  }
  header #nav-toggle span:nth-child(3) {
    top: 20px;
  }
  header .open #nav-toggle span{
    background-color: #fff;
  }
  header .open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  header .open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .open nav {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 1;
  }
  header #navi nav {
    padding-top: 50px;
  }
  header #navi nav .menu{
    border-top: dashed 1px #fff;
    display: block;
  }
  header #navi nav .menu li{
    width: 100%;
    margin: 0;
    padding: 0;
  }
  header #navi nav .menu li a{
    display: block;
    padding: 15px;
    box-sizing: border-box;
    color: #fff;
    text-align: left;
    border-bottom: dashed 1px #fff;
    position: relative;
  }
  header #navi nav .menu li a:after {
    font-family: 'Material Icons';
    content: '\e5c8';
    margin-left: 5px;
    vertical-align: bottom;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
  header #navi nav .menu li.tel,
  header #navi nav .menu li.contact{
    display: none;
  }
  header #navi nav .sp-btn{
    display: block;
    padding: 15px 10px;
  }
  header #navi nav .sp-btn a{
    display: block;
    max-width: 300px;
    width: 100%;
    margin: 0 auto 10px;
    padding: 15px 10px;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
    color: #187C7C;
    text-align: center;
    background-color: #fff;
    position: relative;
  }
  header #navi nav .sp-btn a:after{
    font-family: 'Material Icons';
    margin-left: 5px;
    vertical-align: bottom;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 3rem;
    line-height: 1;
  }
  header #navi nav .sp-btn a:nth-of-type(1):after{
    content: '\e325';
    color: #187C7C;
  }
  header #navi nav .sp-btn a:nth-of-type(2):after{
    content: '\e158';
  }
  header #navi nav .menu li a:before{
    display: none;
  }
  header #navi nav .sp-btn a.tel .txt{
    display: block;
    color: #187C7C;
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
  header #navi nav .sp-btn a.tel{
    font-size: 1.4rem;
    color: #505050;
    position: relative;
    padding: 10px;
  }
  header #navi nav .sp-btn a.tel span.time{
    font-size: 1rem;
    display: inline;
    margin-left: 5px;
  }
}
@media only screen and (max-width: 500px) {
  header h1{
    max-width: 240px;
    width: 240px;
  }
  header #nav-toggle {
    right: 5px;
  }
}

/***********************
 共通
***********************/
main{
  padding-top: 93px;
  overflow-x: hidden;
}
@media only screen and (max-width: 1350px) {
  main{
    padding-top: 87px;
  }
}
@media only screen and (max-width: 1110px) {
  main{
    padding-top: 79px;
  }
}
@media only screen and (max-width: 990px) {
  main{
    padding-top: 55px;
  }
}
@media only screen and (max-width: 500px) {
  main{
    padding-top: 47px;
  }
}

.conts{
  padding-top: 90px;
  margin-top: -90px;
  display: block;
  position: relative;
}
@media only screen and (max-width: 1350px) {
  .conts{
    padding-top: 87px;
    margin-top: -87px;
  }
}
@media only screen and (max-width: 1110px) {
  .conts{
    padding-top: 79px;
    margin-top: -79px;
  }
}
@media only screen and (max-width: 990px) {
  .conts{
    padding-top: 55px;
    margin-top: -55px;
  }
}
@media only screen and (max-width: 500px) {
  .conts{
    padding-top: 47px;
    margin-top: -47px;
  }
}

/*** ------------------------------------------------------------------------------

フェードイン

-----------------------------------------------------------------------------  ***/
.show-cnt{
  transform: scale(1) translateY(50px);
  transition: 0.3s ease-out;
  opacity: 0;
}
.show-cnt.run{
  transform:scale(1) translateY(0);
  opacity: 1;
}

/*------------------------------------------------------------
  footer
------------------------------------------------------------*/
footer{
  background-color: #414141;
  padding: 40px 0;
  color: #fff;
}
footer .inner{
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  border-bottom: solid 1px rgba(255,255,255,.2);
  padding-bottom: 60px;
}
footer .inner h4{
  min-width: 297px;
  width: 297px;
  margin: 0 0 20px;
}
footer .inner .info{
  display: flex;
  justify-content: space-between;
}
footer .inner .info .txt1{
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
}
footer .inner .info .txt2{
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0 20px;
}
footer .inner .info .txt3{
  font-size: 1.4rem;
  line-height: 1.6;
}
footer .inner .info .txt3 strong{
  display: block;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 5px;
}
footer address{
  text-align: center;
  padding-top: 20px;
  font-size: 1.1rem;
  font-style: normal;
}
@media (max-width: 768px){
  footer{
    padding: 30px 0;
  }
  footer .inner{
    padding-bottom: 30px;
  }
  footer .inner h4{
    width: 297px;
    margin: 0 auto 20px;
  }
  footer .inner .info{
    display: block;
    text-align: center;
  }
  footer .inner .info .txt1{
    font-size: 1.4rem;
  }
  footer .inner .info .txt2{
    font-size: 1.2rem;
    margin: 20px 0;
  }
  footer address{
    padding-top: 10px;
    font-size: 1rem;
  }
}

#contact-box{
  background: url(../../imgs/home/contact-bg.jpg) no-repeat center center / cover;
  padding: 80px 20px;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
}
#contact-box .txt1{
  font-size: 2.8rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}
#contact-box .in{
  border: solid 1px #fff;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  box-sizing: border-box;
  padding: 35px;
}
#contact-box .in li{
  width: 380px;
  margin: 0 10px;
  display: flex;
}
#contact-box .in li a{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
#contact-box .in li a.btn{
  background-color: #187C7C;
  color: #fff;
  border: solid 1px #187C7C;
  font-size: 2rem;
  line-height: 1;
  padding: 25px 10px;
  position: relative;
}
#contact-box .in li a.btn:after {
  font-family: 'Material Icons';
  content: '\e5c8';
  margin-left: 5px;
  vertical-align: bottom;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
#contact-box .in li a.btn:hover{
  opacity: 1;
  background-color: #fff;
  color: #187C7C;
}
#contact-box .in li a.tel{
  pointer-events: none;
  background-color: #fff;
  color: #187C7C;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  padding: 10px;
}
#contact-box .in li a.tel span{
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: #000;
}
#contact-box .in li a.tel span.time{
  font-size: 1.1rem;
  color: #666;
}
#contact-box .in li.sp{
  display: none;
}
@media (max-width: 920px){
  #contact-box .in li{
    width: 300px;
  }
}
@media (max-width: 768px){
  #contact-box{
    padding: 30px 10px;
    font-family: 'Noto Serif JP', serif;
  }
  #contact-box .txt1{
    font-size: 1.8rem;
  }
  #contact-box .in{
    display: block;
    padding: 15px;
  }
  #contact-box .in li{
    max-width: 400px;
    width: 100%;
    margin: 5px auto;
  }
  #contact-box .in li a.btn{
    font-size: 1.6rem;
    padding: 20px 10px;
  }
  #contact-box .in li a.btn:after {
    right: 10px;
  }
  #contact-box .in li a.tel{
    pointer-events: auto;
    font-size: 3rem;
  }
  #contact-box .in li a.tel span{
    font-size: 1.3rem;
  }
  #contact-box .in li a.tel span.time{
    font-size: 1rem;
  }
  #contact-box .in li.pc{
    display: none;
  }
  #contact-box .in li.sp{
    display: block;
  }
  #contact-box .in li.sp a{
    display: block;
  }
  #contact-box .in li.sp .txt{
    display: block;
    color: #187C7C;
    font-size: 1.6rem;
  }
  #contact-box .in li.sp a.tel{
    font-size: 1.6rem;
    color: #505050;
    position: relative;
  }
  #contact-box .in li.sp a.tel span.time{
    font-size: 1rem;
    display: inline;
  }
  #contact-box .in li.sp a:before {
    font-family: 'Material Icons';
    margin-left: 5px;
    vertical-align: bottom;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 2rem;
    content: '\e325';
    line-height: 1;
    color: #187C7C;
  }
}
#group:after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background-color: #F5F6F8;
}
#group ul{
  display: flex;
  justify-content: flex-start;
  flex-flow: wrap;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
#group ul li{
  width: calc(100% / 3 - 10px);
  margin: 0 15px 20px 0;
}
#group ul li:nth-child(3n){
  margin-right: 0;
}
#group ul li a{
  display: block;
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 12px rgba(0,0,0,.06);
}
#group ul li a:after{
  font-family: 'Material Icons';
  content: '\e879';
  vertical-align: bottom;
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #187C7C;
  font-size: 1.6vw;
  line-height: 1;
}
#group ul li a:hover{
  opacity: 1;
  box-shadow: 0 0 2px rgba(0,0,0,.2);
}
@media (max-width: 768px){
  #group:after{
    height: 40%;
  }
  #group ul{
    margin-top: 20px;
    display: block;
  }
  #group ul li{
    max-width: 300px;
    width: 100%;
    margin: 0 auto 10px;
  }
  #group ul li:nth-child(3n){
    margin: 0 auto 10px;
  }
  #group ul li a{
    box-shadow: 0 0 8px rgba(0,0,0,.06);
  }
}
#sec4 iframe{
  width: 100%;
  height: 500px!important;
  vertical-align: bottom;
}
@media (max-width: 768px){
  #sec4 iframe{
    height: 300px!important;
  }
}

.pankuzu{
  max-width: 1200px;
  width: 90%;
  margin: 10px auto;
  display: flex;
  justify-content: flex-start;
  position: relative;
  z-index: 10;
}
.pankuzu li{
  font-size: 1.1rem;
  left: 1;
}
.pankuzu li a{
  font-weight: bold;
  color: #187C7C;
  margin-right: 10px;
  padding-right: 15px;
  position: relative;
}
.pankuzu li a:after{
  content: '\03e';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}