@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');

@font-face {
  font-family: 'NotoSerifJP';
  font-style: normal;
  font-weight: 400;
  src: url('../font/NotoSerifJP-Light.min.woff2') format('woff2');
}
*,
*::before,
*::after {
  box-sizing: border-box;
  font-style: normal;
  margin: 0;
  padding: 0;
}

.preload * {
  transition: none !important;
}

body {
  backface-visibility:hidden;
  background: #fff;
  border-top: 3px solid rgba(240,190,100,.9);
  color: #666;
  font-size: 14px;
  font-family: '游ゴシック','游ゴシック体','Yu Gothic',YuGothic,'Hiragino Kaku Gothic ProN','メイリオ',Meiryo,sans-serif;
  font-weight: normal;
  letter-spacing: .05em;
  line-height: 1;
  min-width: 1150px;
  -webkit-font-smoothing: antialiased;
}

.page_main {
  padding-top: 100px;
  transition: padding-top 1.5s cubic-bezier(0,.6,.4,1);
}

body.load .page_main {
  padding-top: 0;
}

.serif {
  font-family: 'NotoSerifJP',serif;
  letter-spacing: .15em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
  font-size: 100%;
  font-weight: normal;
}

strong {
  color: #333;
  font-weight: bold;
}

a {
  color: #F0BE64;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul {
  list-style: none;
}

br.sp,
span.sp{
  display: none;
}

p {
  font-size: 115%;
  text-align: justify;
}





/* ------------------------------ loading ------------------------------ */

#loading {
  background: #fff;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  transition: opacity 1s, visibility 1s;
  width: 100%;
  z-index: 1333;
}

#loading div {
  animation: anime1 1s ease infinite normal;
  border: 2px solid rgba(240,190,100,.1);
  border-top-color: rgba(240,190,100,.5);
  border-radius: 50%;
  height: 40px;
  left: 50%;
  position: fixed;
  top: 50%;
  margin: -20px 0 0 -20px;
  width: 40px;
}

@keyframes anime1 {
  from {
  }

  to {
    transform: rotate(360deg);
  }
}

#loading.hide {
  opacity: 0;
  visibility: hidden;
}

#loading.hide div {
  display: none;
}





#header .flex {
  display: flex;
  justify-content: space-between;
  margin: 25px auto 0;
  position: relative;
  width: 90%;
  min-width: 1100px;
  max-width: 1333px;
}

#header .flex nav {
  line-height: 30px;
  text-align: right;
  padding: 20px 0;
}

#header .flex nav li {
  display: inline-block;
}

#header .flex nav li:last-child {
  border-left: 1px solid rgba(240,190,100,.5);
  margin-left: 20px;
  padding-left: 20px;
}

#header .flex nav li a {
  color: #333;
  font-weight: bold;
  line-height: 40px;
  transition: .3s;
}

#header .flex nav li:first-child a {
  font-family: Roboto;
  font-size: 110%;
  letter-spacing: .1em;
}

#header .flex nav li a:hover {
  color: #F0BE64;
}

#header .flex nav li a span {
  color: #F0BE64;
}

#header .flex nav li a img {
  margin-right: 10px;
}

.title {
}

.title .serif {
  color: #333;
  font-size: 220%;
  letter-spacing: .75em;
}

.title a {
  color: #333;
  line-height: 70px;
}

.title .sub {
  display: inline-block;
  font-size: 90%;
  letter-spacing: .35em;
  line-height: 35px;
  margin-left: 25px;
  position: relative;
  vertical-align: top;
}

.title .sub::after {
  content: '';
  display: block;
  background: #eee;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
}

.kudan {
  display: inline-block;
  font-size: 90%;
  letter-spacing: .2em;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  min-width: 1100px;
  max-width: 1333px;
}

.kudan a {
  border-top: 3px solid #62BFCD;
  background: rgba(98,191,205,.1);
  color: #62BFCD;
  display: block;
  padding: 12px 15px 10px;
  position: absolute;
  top: 0;
  right: 0;
}

#gnavi {
  background: #fff;
  border-bottom: 1px solid rgba(240,190,100,.5);
  position: relative;
  width: 100%;
  transition: .5s;
}

#gnavi ul {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  transition: .5s;
  width: 90%;
  max-width: 1333px;
  min-width: 1100px;
}

#gnavi li {
  line-height: 100px;
  transition: .5s;
  font-size: 105%;
}

#gnavi li:nth-child(n+2) {
  font-weight: bold;
}

#gnavi li:last-child {
  display: none;
}

#gnavi a {
  color: #333;
  transition: color .3s;
}

#gnavi a:hover {
  color: #F0BE64;
}

#gnavi .title_s {
  font-size: 125%;
  left: 50%;
  letter-spacing: .5em;
  line-height: 50px;
  opacity: 0;
  position: absolute;
  text-indent: .5em;
  top: 10px;
  transform: translateX(-50%);
  transition: .5s;
  visibility: hidden;
}

.gnavi_s #gnavi {
  left: 0;
  position: fixed;
  top: 0;
  z-index: 100;
}

.gnavi_s #gnavi .title_s {
  /*opacity: 1;
  visibility: visible;*/
}

.gnavi_s #gnavi ul {
}

.gnavi_s #gnavi li:nth-child(n+2) {
  line-height: 50px;
}

.home.gnavi_s #main {
  padding-top: 100px;
}

.page.gnavi_s {
  padding-top: 80px;
}

@media screen and (min-width:769px) {

  .gnavi_s #gnavi {
    background: rgba(240,190,100,0.9);
    border-bottom: 1px solid rgba(240,190,100,0);
  }
  .gnavi_s #gnavi a {
    color: #fff;
  }
  
}





h2.line {
 line-height: 1;
  text-align: center;
}

h2.line::before {
  background: rgba(240,190,100,.5);
  content: '';
  display: block;
  height: 1px;
  margin: 0 auto 70px;
  width: 50px;
}

h2.line .serif {
  color: #333;
  font-size: 185%;
  display: block;
  letter-spacing: .2em;
  text-indent: .2em;
}

h2.line .en {
  color: #F0BE64;
  display: block;
  font-size: 90%;
  font-family: Roboto;
  letter-spacing: .2em;
  margin: 20px 0 80px;
}

.lead .line {
  border-bottom: 1px solid rgba(240,190,100,.5);
}





section {
  opacity: 0;
  transform: translateY(100px);
  transition: 1.5s cubic-bezier(0,.6,.4,1);
}

section.show {
  opacity: 1;
  transform: translateY(0);
}





.related {
  margin-top: 230px;
}

.related ul {
  justify-content: space-between;
  margin: 0 auto;
  width: 90%;
  max-width: 1333px;
}

.related li:nth-child(n+2) {
  margin-top: 100px;
}

.related li a {
  color: #666;
  display: block;
  font-size: 115%;
  line-height: 2;
  transition: .3s;
}

.related li img {
  display: block;
  margin-bottom: 20px;
  transition: opacity .5s;
}

.related li h3 {
  color: #F0BE64;
  font-size: 150%;
  letter-spacing: .3em;
  margin-bottom: 10px;
}

.related li a:hover  img {
  opacity: .5;
}





.contact {
  margin-top: 180px;
}

.contact .lead {
  letter-spacing: .2em;
  line-height: 2;
  text-align: center;
  text-indent: .2em;
}

.contact ul {
  display: flex;
  justify-content: space-between;
  margin: 50px auto 0;
  width: 90%;
  max-width: 1150px;
}

.contact li {
  border: 1px solid rgba(240,190,100,.5);
  padding: 30px 0;
  text-align: center;
  width: 32%;
}

.contact li a {
  color: #333;
  display: inline-block;
  font-size: 128.6%;
  font-weight: bold;
  line-height: 40px;
  margin-top: 30px;
  transition: .3s;
}

.contact li:first-child a {
  font-family: Roboto;
  font-size: 145%;
  letter-spacing: .1em;
}

.contact li a:hover {
  color: #F0BE64;
}

.contact li a img {
  margin-right: 10px;
}





/* page */

.page #header .flex {
  margin-bottom: 0;
}

.page #gnavi li {
  line-height: 80px;
}

.page_main {
  margin: 50px auto 0;
  padding-left: 65px;
  position: relative;
  width: 90%;
  max-width: 1680px;
}

.page_title {
  background: rgba(240,190,100,.9);
  bottom: 65px;
  color: #fff;
  display: inline-block;
  font-size: 200%;
  left: 0;
  letter-spacing: .5em;
  line-height: 1.8;
  padding: 1.4em;
  position: absolute;
  transition: .5s;
}

@media screen and (max-width:1350px) {
  .page_title {
    left: 35px;
  }
}

.page_main .vertical {
  color: #aaa;
  font-size: 80%;
  font-family: Roboto;
  left: 1em;
  letter-spacing: .12em;
  position: absolute;
  top: -1em;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: left bottom;
}

.page_main img {
  width: 100%;
}

.page_lead {
  text-align: center;
}

.page_lead h2 {
  color: #333;
  font-size: 190.5%;
  display: inline-block;
  letter-spacing: .2em;
  line-height: 2;
  margin: 140px 0;
  text-indent: .2em;
}
.page_lead h2 .attent {
  font-size: 60%;
  display:inline;
  line-height:0.8;
}




#footer {
  line-height: 50px;
  margin: 180px 0 50px;
  position: relative;
  text-align: center;
}

#footer .copyright {
  color: #aaa;
  font-size: 75.7%;
  letter-spacing: .12em;
  text-align: center;
}

#pagetop {
  bottom: 50px;
  opacity: 0;
  position: fixed;
  right: 0;
  transition: .5s;
  visibility: hidden;
}

#pagetop.show {
  opacity: 1;
  visibility: visible;
}

#pagetop a {
  background: rgba(240,190,100,.9);
  display: block;
  height: 50px;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  width: 50px;
}

#pagetop a::after {
  border: 1px solid #fff;
  border-width: 1px 1px 0 0;
  content: '';
  display: block;
  height: 10px;
  width: 10px;
  position: absolute;
  left: 20px;
  top: 23px;
  transform: rotate(-45deg);
}









@media screen and (max-width:768px) {
body {
  font-size: 12px;
  min-width: inherit;
}
  
p {
  font-size: 105%;
}

br.sp,
span.sp {
  display: inline;
}

br.pc {
  display: none;
}



#header .flex {
  display: block;
  margin: 15px auto 25px;
  min-width: inherit;
  width: 80%;
}

#header .flex nav {
  display: none;
}

.title {
  text-align: center;
}

.title .serif {
  display: block;
  font-size: 180%;
  letter-spacing: .5em;
  text-indent: .5em;
}

.title .sub {
  border: 0;
  display: inline-block;
  font-size: 95%;
  padding: 0 0 0 .35em;
  letter-spacing: .35em;
  margin: -10px 0 0;
  text-indent: 0;
}
  
  .kudan {
    display: none;
  }

#gnavi,
.gnavi_s #gnavi {
  border-bottom: 0;
  left: 0;
  overflow: auto;
  padding: 20px 40px 0;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
}

.gnavi_open #gnavi,
.gnavi_open .gnavi_s #gnavi {
  opacity: 1;
  visibility: visible;
}

#gnavi ul {
  display: block;
  overflow: hidden;
  width: 100%;
  min-width: inherit;
}

#gnavi li,
#gnavi li:last-child {
  display: block;
  line-height: 45px;
  float: left;
  width: 100%;
}

#gnavi a {
  display: block;
}

#gnavi a span {
  color: #F0BE64;
}

#gnavi li:nth-child(n+2) a {
  border-bottom: 1px solid #eee;
}

#gnavi .title_s {
  font-size: 150%;
  left: auto;
  letter-spacing: .5em;
  margin-bottom: 15px;
  opacity: 1;
  position: static;
  top: auto;
  text-indent: 0;
  transform: translateX(0);
  transition: .5s;
  visibility: visible;
}

#gnavi li:nth-child(n+2),
.gnavi_s #gnavi li:nth-child(n+2) {
  font-size: 100%;
  line-height: 45px;
}

.home.gnavi_s #main {
  padding-top: 0;
}

.page.gnavi_s {
  padding-top: 0;
}

.page #gnavi li {
  line-height: 45px;
}

#gnavi_btn {
  height: 80px;
  right: 0;
  position: fixed;
  top: 13px;
  transition: all .5s cubic-bezier(.3,0,.15,1);
  width: 80px;
  z-index: 101;
}

#gnavi_btn span {
  background: #F0BE64;
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  transition: all .4s cubic-bezier(.3,0,.15,1);
  width: 30px;
}

#gnavi_btn span::before,
#gnavi_btn span::after {
  background: #F0BE64;
  bottom: 0;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: -6px;
  transition: all .5s cubic-bezier(.3,0,.15,1);
  width: 100%;
}

#gnavi_btn span::after {
  top: 6px;
}

#gnavi_btn.x {
  top: 0;
}

#gnavi_btn.x span {
  background: rgba(0,0,0,0);
}

#gnavi_btn.x span::before {
  background: #ccc;
  top: 0;
  transform: rotate(45deg);
}

#gnavi_btn.x span::after {
  background: #ccc;
  top: 0;
  transform: rotate(-45deg);
  width: 100%;
}





h2.line::before {
  margin: 0 auto 30px;
  width: 30px;
}

h2.line .serif {
  font-size: 144%;
}

h2.line .en {
  margin: 15px 0 40px;
}





.contact {
  margin-top: 100px;
}

.contact .lead {
  letter-spacing: .1em;
  line-height: 2;
  padding: 0 10%;
  text-align: left;
  text-indent: 0;
}


.contact ul {
  display: block;
  margin: 20px auto 0;
  width: 80%;
}

.contact li {
  padding: 25px 0 15px;
  width: 100%;
}

.contact li:nth-child(n+2) {
  margin-top: 15px;
}

.contact li a {
  font-size: 120%;
  margin-top: 10px;
  line-height: 30px;
}

.contact li a img {
  margin-right: 6px;
  width: 30px;
}





.page #header .flex {
  margin-bottom: 0;
}

.page #gnavi li {
  line-height: 45px;
}

.page_main {
  margin-top: 40px;
  padding-left: 0;
  width: 100%;
}

.page_title {
  bottom: auto;
  font-size: 140%;
  left: auto;
  letter-spacing: .2em;
  line-height: 1.75;
  margin: -15px 0 0 10%;
  padding: .75em 1em;
  position: relative;
  z-index: 99;
  transition: .5s;
}

.page_main .vertical {
  display: none;
}

.page_lead h2 {
  font-size: 150%;
  margin: 80px 0 100px;
}
.page_lead h2 .attent {
  font-size: 70%;
  display:inline;
  line-height:0.8;
}





.related {
  margin-top: 100px;
}

.related ul {
  width: 80%;
}

.related li:nth-child(n+2) {
  margin-top: 60px;
}

.related li a {
  font-size: 110%;
  line-height: 1.85;
}

.related li img {
  margin-bottom: 15px;
  transition: opacity .5s;
}

.related li h3 {
  font-size: 125%;
  margin-bottom: 5px;
}
  
  
  
  
  
  #footer {
  line-height: 2;
  margin: 100px 0 30px;
}

#footer .copyright {
  font-family: Roboto;
  letter-spacing: .1em;
}
}






@media screen and (max-width:360px) {
.title .serif {
    font-size: 170%;
    letter-spacing: .5em;
}
  
  .title .sub {
    font-size: 95%;
    letter-spacing: .4em;
}
}