@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&family=Langar&display=swap');


/* ----------------------------------------------------------
 Reset,Base CSS
---------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  border-style:none;
  box-sizing: border-box !important;
}
html {
  color: #000000;
  background-color: #ffffff;
  font-family: 'Sawarabi Mincho', sans-serif;
  font-size : 1rem;
  line-height: 1.75em;
  text-align: left;
  -webkit-font-smoothing: subpixel-antialiased;
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size-adjust: none;
  -webkit-font-size-adjust: none;
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
  position: relative;
}
html,body,#wrapper { height: 100%; }
main { display: block; }
section { margin: 0; }
figure img { width: 100%; }
h1,h2,h3,h4,h5,h6 {
  margin: 0;
  padding: 0;
  font-size: 1.1rem;
  font-weight: normal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  color: #000000;
  text-decoration : none;
  border: none;
  outline: none;
  transition: 0.6s;
}
* a {
  display: block;
}
a:hover {
  transition: 0.6s;
  opacity: 0.5;
}
a[href^="tel:"] { cursor: default; }
ul, ol {
  margin: 0;
  padding: 0;
  list-style : none;
}
ul li {
  font-size: 1rem;
  line-height: 1.85em;
}
figure {
  margin: 0;
  padding: 0;
  min-height: 0% !important;
  line-height: 0;
}
img {
  margin: 0;
  padding: 0;
  min-height: 0;
  line-height: 0;
}
p {
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: 1.85em;
}
.clearfix:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: " ";
  font-size: 0;
}

/* ----------------------------------------------------------
 Responsive Settings
---------------------------------------------------------- */
.wrapper { overflow: hidden; }

@media print, screen and (min-width : 767px) { /* PC */
  .wrapper {
    min-width: 1200px;
    margin: 0 auto;
  }
  .pcoff {
    display: none !important;
  }
  .wrap {
    width: 80%;
    min-width: 1100px;
    max-width: 1400px;
    margin: 0 auto;
  }
}

@media screen and (max-width : 768px) { /* Smart Phone*/
  .smpoff {
    display: none !important;
  }
  html,p {
    font-size: 4.5vw;
    line-height: 1.75em;
  }
}


/* ----------------------------------------------------------
 Header
---------------------------------------------------------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  width: 100%;
}

/*　ヘッダー、ナビゲーション
--------------------------------------------- */
#nav-toggle {
  cursor: pointer;
  margin-left: auto;
  z-index: 10000;
}
#nav-toggle div {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  transition: 0.6s;
  background-color: #d7000f;
}
#nav-toggle div:hover {
  opacity: 0.7;
  transition: 0.6s;
}
#nav-toggle div span {
  width: 45%;
  height: 2px;
  left: 27.5%;
  display: block;
  background: #ffffff;
  position: absolute;
  transition: transform .6s ease-in-out, top .5s ease;
}
#nav-toggle div span:nth-child(1) { top: 22px; }
#nav-toggle div span:nth-child(2) { top: 28px; }
#nav-toggle div span:nth-child(3) { top: 34px; }

.open #nav-toggle span { background: #fff; }
.open #nav-toggle span:nth-child(1) {
  top: 28px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 28px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 28px;
  transform: rotate(-45deg);
}

#gloval-nav {
  background: rgba(215,0,15,0.9);
  color: #fff;
  position: fixed;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
}
#gloval-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color .6s ease;
}
#gloval-nav a { color: #fff; }
#gloval-nav h2 {
  opacity: 0;
  transition:  transform .6s ease, opacity .2s ease;
  transform: translateX(200px);
  transition-delay: .45s;
  font-size: 2rem;
  margin-bottom: 2rem;
  width: 15%;
  margin: 0 auto 2rem auto;
}
#gloval-nav h2 img {
  width: 100%;
}
#gloval-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin: 0 auto;
}
#gloval-nav ul li {
  width: 100%;
  margin: 0 2%;
  padding: 0.5rem;
  opacity: 0;
  transform: translateX(200px);
  transition:  transform .6s ease, opacity .2s ease;
  border-bottom: 1px dotted #ffffff;
}
#gloval-nav ul li:nth-child(2) { transition-delay: .15s; }
#gloval-nav ul li:nth-child(3) { transition-delay: .25s; }
#gloval-nav ul li:nth-child(4) { transition-delay: .35s; }
#gloval-nav ul li:nth-child(5) { transition-delay: .45s; }
#gloval-nav ul li:nth-child(6) { transition-delay: .35s; }
#gloval-nav ul li:nth-child(7) { transition-delay: .25s; }
#gloval-nav ul li:nth-child(8) { transition-delay: .15s; }
#gloval-nav ul li:nth-child(9) { transition-delay: .25s; }
#gloval-nav ul li:nth-child(10) { transition-delay: .35s; }

/* open */
.open { overflow: hidden; }
.open #nav-toggle div:after {
  display: none;
  transition: 0.6s;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav h2 {
  opacity: 1;
  transform: translateX(0);
  transition:  transform 1s ease, opacity .9s ease;
}
.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0);
  transition:  transform 1s ease, opacity .9s ease;
}
.open #gloval-nav li a {
  transition: 0.6s;
}
.open #gloval-nav li a:hover {
  opacity: 0.5;
  transition: 0.6s;
}




/* ----------------------------------------------------------
 Footer
---------------------------------------------------------- */
footer {
  color: #ffffff;
  background-color: #000000;
  text-align: center;
  padding: 0.5rem 0;
  position: relative;
  margin-top: 2rem;
}
footer small {
  font-family: 'Questrial', sans-serif;
  font-size: 1rem;
}

/* ----------------------------------------------------------
 Common Settings
---------------------------------------------------------- */

/* fadein */
.fadein {
  opacity : 0;
  transform : translate(0, 50px);
  transition : all 0.75s;
}
.fadein.active{
  opacity : 1;
  transform : translate(0, 0);
}

/* page_top */
#page_top{
  width: 100px;
  height: 60px;
  position: absolute;
  right: 1rem;
  bottom: 4rem;
}
#page_top a{
  position: relative;
  display: block;
  width: 100px;
  height: 60px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #d7000f;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -25px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
  content: 'PAGE TOP';
  font-size: 13px;
  font-family: 'Questrial', sans-serif;
  color: #000;
  position: absolute;
  top: 30px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
@media screen and (max-width : 768px) { /* スマホ */
  #page_top{
    width: 100px;
    height: 60px;
    position: absolute;
    right: initial;
    bottom: 4rem;
    left: 50%;
    margin-left: -50px;
  }
}


/* ----------------------------------------------------------
 Top
---------------------------------------------------------- */

/*　loading
--------------------------------------------- */
.loading-wrap {
  position: fixed;
  height:100vh;
  width:100vw;
  background-color:#000000;
  left: 0px;
  top: 0px;
  z-index: 9999;
  width: 100%;
  height: 100%;
}
.loading-anime {
  animation-name: loadinganime;
  animation-timing-function:ease;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.loading-wrap2 {
  position: fixed;
  height:100vh;
  width:100vw;
  background-color:#d7000f;
  left: 0px;
  top: 0px;
  z-index: 9998;
  width: 100%;
  height: 100%;
}
.loading-anime2 {
  animation-name: loadinganime;
  animation-timing-function:ease;
  animation-duration: 1.25s;
  animation-fill-mode: forwards;
}
@keyframes loadinganime {
  from {
    transform: translateX(0);
  }
  30%, 70% {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
.loading-anime_p {
  animation-name: loadinganime;
  animation-timing-function:ease;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.loading-anime2_p {
  animation-name: loadinganime;
  animation-timing-function:ease;
  animation-duration: 0.75s;
  animation-fill-mode: forwards;
}

.loading-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  opacity:0;
  animation-name:logofade;
  animation-duration: 0.5s; 
  animation-iteration-count: normal;
  animation-fill-mode: forwards;
}
@keyframes logofade {
  0% {
    opacity: 0;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -55%);
    -webkit-transform: translate(-50%, -55%);
    -ms-transform: translate(-50%, -55%);
  }
  100%{
    opacity: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}

/*　sec_first
--------------------------------------------- */
.sec_first {
  width: 100%;
  height: 100vh;
  background-image: url(images/main.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.loading-off {
  animation: firstback 1.5s ease normal;
}
@keyframes firstback {
  0%   { transform: scale(1.2) ; }
  100% { transform: scale(1); }
}
.sec_first h1 {
  width: 23%;
  position: absolute;
  right: 5rem;
  bottom: 3rem;
}
.loading-off h1 {
  opacity: 0;
  animation: firstlogo 1s ease 1.5s 1;
  animation-fill-mode: forwards;
}
.sec_first h1 img {
  width: 100%;
}
@keyframes firstlogo {
  from   { 
    opacity: 0;
    bottom: 2rem;
  }
  to {
    opacity: 1;
    bottom: 3rem;
  }
}
p.scroll {
  opacity: 0;
  animation: firstlogo 1s ease 1.5s 1;
  animation-fill-mode: forwards;
  font-family: 'Questrial', sans-serif;
  display: inline-block;
  position: absolute;
  left: 40px;
  bottom: 0;
  z-index: 2;
  padding: 10px 10px 110px;
  overflow: hidden;
  color: #fff;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  margin-bottom: 0;
}
p.scroll::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, .4);
}
p.scroll::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #fff;
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) 3s infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media screen and (max-width : 768px) { /* スマホ */
  .loading-wrap img {
    width: 50%;
  }
  .sec_first {
    height: 90vh;
    transform: scale(1, 1);
    background-position: center center;
  }
  .sec_first h1 {
    width: 50%;
    position: absolute;
    right: 1rem;
    bottom: 0rem;
    margin-bottom: -1rem;
  }
  p.scroll {
    left: 15px;
  }
}


/*　sec_intro
--------------------------------------------- */
.sec_intro {
  padding: 4rem 0 2rem 0;
}
.sec_intro .intro1 {
  position: relative;
  margin-bottom: 3rem;
}
.sec_intro .intro1 div {
  width: 550px;
  position: absolute;
  z-index: 1;
  left: 100px;
  top: 4rem;
}
.sec_intro .intro1 div h2 {
  font-size: 2.75rem;
  line-height: 1.225em;
  letter-spacing: 0.225em;
  margin-bottom: 2rem;
}
.sec_intro .intro1 div h2 span {
  font-size: 1.5rem;
  line-height: initial;
  display: block;
  letter-spacing: initial;
  margin-bottom: 1rem;
}
.sec_intro .intro1 figure {
  width: calc(100% - 550px);
  margin-left: 550px;
}
.sec_intro .intro2 {
  padding-left: 50px;
  display: flex;
  align-items: center;
}
.sec_intro .intro2 figure {
  width: 550px;
  margin-right: 4rem;
}
.sec_intro .intro2 p {
  margin-top: -2rem;
}

@media screen and (max-width : 768px) { /* スマホ */
  .sec_intro .intro1 {
    position: relative;
    margin-bottom: 2rem;
  }
  .sec_intro .intro1 div {
    width: 100%;
    padding: 0 2rem;
    position: relative;
    left: initial;
    top: initial;
  }
  .sec_intro .intro1 div h2 {
    font-size: 9vw;
    line-height: 1.225em;
    letter-spacing: 0.225em;
    margin-bottom: 2rem;
  }
  .sec_intro .intro1 div h2 span {
    font-size: 5vw;
    line-height: initial;
    display: block;
    letter-spacing: initial;
    margin-bottom: 0.5rem;
  }
  .sec_intro .intro1 figure {
    width: calc(100% - 2rem);
    margin-left: 2rem;
  }
  .sec_intro .intro2 {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: initial;
  }
  .sec_intro .intro2 figure {
    width: calc(100% - 4rem);
    margin: 0 2rem;
    order: 2;
  }
  .sec_intro .intro2 p {
    margin-top: 0;
    order: 1;
    padding: 0 2rem;
  }
}


/*　sec_insta
--------------------------------------------- */
.sec_insta {
  padding: 3rem 0;
  display: flex;
  justify-content: center;
}
.instagram  {
  display: flex;
  width: 80vw;
}
.instagram div {
  width: 20vw;
  height: 20vw;
  overflow: hidden;
  border: 1px solid #ffffff;
}
.instagram div a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.instagram div a img {
  width: 100%;
}
.instagram .ig_photo a span {
  opacity: 0;
  color: #ffffff;
  display: block;
  width: 90%;
  height: 90%;
  overflow: hidden;
  position: absolute;
  left: 5%;
  top: 5%;
}
.instagram .ig_photo a:hover {
  opacity: 1;
}
.instagram .ig_photo a:hover span {
  opacity: 1;
  transition: 0.6s;
}
.instagram .ig_photo a:before {
  transition: 0.6s;
  opacity: 0;
  background-color: rgba(00,00,00,0.6);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.6s;
}
.instagram .ig_photo a:hover:before {
  opacity: 1;
  transition: 0.6s;
}
.instagram .ig_link {
  color: #ffffff;
  background-color: #d7000f;
  width: 20vw;
  height: 20vw;
  overflow: hidden;
  border: 1px solid #ffffff;
}
.instagram .ig_link a img {
  width: 25%;
  min-height: 0%;
  margin-bottom: 1rem;
}
.instagram .ig_link a {
  color: #ffffff;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width : 768px) { /* スマホ */
  .instagram {
    flex-wrap: wrap;
    width: 80%;
    margin: 0 10%&;
  }
  .instagram .ig_photo,
  .instagram .ig_link {
    width: 40vw;
    height: 40vw;
    overflow: hidden;
    border: 1px solid #ffffff;
  }
  .instagram .ig_link a img {
    width: 30%;
    margin-bottom: 0.5rem;
  }
  .instagram .ig_link a span {
    font-size: 4vw;
  }
}



/*　sec_contents
--------------------------------------------- */
.sec_contents {
  padding: 0 0 2rem 0;
}
ul.con1 li {
  display: flex;
  align-items: center;
  margin: 4rem 0 5rem 0;
}
ul.con1 li figure {
  width: 65%;
}
ul.con1 li:nth-of-type(odd) figure {
  order: 1;
}
ul.con1 li:nth-of-type(even) figure {
  order: 2;
}
ul.con1 li figure img {
  width: 100%;
}
ul.con1 li div {
  width: 35%;
}
ul.con1 li:nth-of-type(odd) div {
  order: 2;
  padding: 0 4rem 0 2rem;
}
ul.con1 li:nth-of-type(even) div {
  order: 1;
  padding: 0 2rem 0 4rem;
}
ul.con1 li h2 {
  font-size: 2.5rem;
  line-height: 1.225em;
  border-bottom: 1px solid #000000;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
ul.con1 li h2 span {
  display: block;
  font-size: 1rem;
  line-height: 1em;
  color: #d7000f;
  margin-top: 0.5rem;
  font-family: 'Questrial', sans-serif;
}
ul.con1 li p:nth-of-type(1) {
  font-size: 1.2rem;
}
ul.con1 li p:nth-of-type(2) {
  font-size: 0.8rem;
  display: flex;
  align-items: flex-end;
}
ul.con1 li p:nth-of-type(2) span {
  width: calc(100% - 105px);
  margin-right: auto;
}
ul.con1 li p:nth-of-type(2) a {
  color: #ffffff;
  background-color: #898989;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25em;
}
ul.con2 {
  display: flex;
  width: 70%;
  margin-right: 30%;
  padding-left: 4rem;
}
ul.con2 li {
  width: 48%;
  margin-right: 2%;
}
ul.con2 li:first-child figure img {
  border: 1px solid #000000;
}
ul.con2 li figure {
  margin-bottom: 1rem;
}
ul.con2 li h2 {
  margin-bottom: 0.5rem;
}
ul.con2 li p {
  font-size: 0.8rem;
  margin-bottom: 0;
}
ul.con2 li p + a {
  font-size: 0.8rem;
  color: #d7000f;
  border-bottom: 1px solid #d7000f;
  display: inline;
}

@media screen and (max-width : 768px) { /* スマホ */
  ul.con1 li {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
  }
  ul.con1 li h2 {
    font-size: 9vw;
  }
  ul.con1 li:nth-of-type(odd) figure {
    order: 2;
    width: 90%;
    margin-right: 10%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 2rem;
  }
  ul.con1 li:nth-of-type(even) figure {
    order: 2;
    width: 90%;
    margin-left: 10%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 2rem;
  }
  ul.con1 li figure img {
    width: auto;
    height: 250px;
  }
  ul.con1 li:nth-child(1) figure img {
    margin-left: -40px;
  }
  ul.con1 li:nth-child(2) figure img {
    margin-left: -67%;
  }
  ul.con1 li:nth-child(3) figure img {
    margin-left: -74%;
  }
  ul.con1 li:nth-child(4) figure img {
    margin-left: -36%;
  }
  ul.con1 li:nth-of-type(odd) div,
  ul.con1 li:nth-of-type(even) div {
    order: 1;
    padding: 0 2rem;
    width: 100%;
    margin-bottom: 1rem;
  }
  ul.con2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-right: 0;
    padding-left: 0;
    padding: 0 2rem;
  }
  ul.con2 li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}





/*　sec_photo
--------------------------------------------- */
.sec_photo {
  background-color: #dcdddd;
  padding: 4rem 0 3rem 0;
}
.sec_photo ul {
  display: flex;
  flex-wrap: wrap;
}
.sec_photo ul li {
  width: 23%;
  margin: 0.5% 1%;
  display: flex;
  flex-direction: column;
}
.sec_photo ul li h2 {
  color: #595757;
  font-size: 1.5rem;
  font-family: 'Questrial', sans-serif;
  margin-bottom: -0.25em;
}
.sec_photo ul li figure {
  width: 100%;
}
.sec_photo ul li figure img {
  width: 100%;
}
.sec_photo ul li p {
  text-align: center;
  padding-top: 0.25rem;
}
.sec_photo ul li div {
  background-color: #ffffff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec_photo ul li div p {
  margin: 0;
  padding: 0;
}
.sec_photo ul li div p span {
  color: #d7000f;
}
.sec_photo ul li div + p {
  background-color: #dcdddd;
}

@media screen and (max-width : 768px) { /* スマホ */
  .sec_photo {
    padding: 4rem 2rem 3rem 2rem;
  }
  .sec_photo ul li h2 {
    font-size: 1.5rem;
    line-height: 1em;
    margin-bottom: -0.15em;
  }
  .sec_photo ul li {
    width: 48%;
  }
  .sec_photo ul li:last-child {
    width: 100%;
  }
  .sec_photo ul li:last-child div {
    padding: 1rem;
  }
}


/*　sec_info
--------------------------------------------- */
.sec_info {
  padding: 4rem 0;
}
.sec_info article {
  display: flex;
  padding-left: 4rem;
}
.sec_info article div {
  width: 40%;
  max-width: 460px;
  padding-right: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sec_info article div h2 {
  width: 100%;
  border-bottom: 2px solid #000000;
  margin-bottom: 0.5rem;
}
.sec_info article div h2 img {
  width: 100%;
}
.teltext {
  display: inline;
  opacity: 1 !important;
}
.sec_info article div table {
  font-size: 0.8rem;
  line-height: 1.75em;
}
.sec_info article div table tr {
  display: flex;
}
.sec_info article div table tr th {
  vertical-align: baseline;
  font-weight: normal;
  white-space: nowrap;
}
.sec_info article figure,
.sec_info article figure img {
  width: 100%;
}
.sec_info iframe {
  width: 100% !important;
  margin: 2rem 0;
  padding: 0 2rem;
}
.sec_info ul {
  display: flex;
  margin: 2rem auto 1rem auto;
}
.sec_info ul li {
  width: 13.5%;
  margin: 0 1.5%;
}
.sec_info ul li img {
  width: 100%;
  border: 1px solid #666666;
}
.sec_info ul li:nth-child(3) {
  width: 31%;
  margin: 0 1.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sec_info ul li:nth-child(3) h2 {
  width: 100%;
}
.sec_info ul li:nth-child(3) img {
  border: 0;
}

@media screen and (max-width : 768px) { /* スマホ */
  .sec_info article {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    padding: 0 2rem;
  }
  .sec_info article div {
    width: 100%;
    max-width: initial;
    padding-right: 0;
  }
  .sec_info article div h2 {
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .sec_info article div h2 + p {
    text-align: center;
  }
  .teltext {
    display: inline;
    opacity: 1;
  }
  .sec_info article div table tr {
    display: flex;
    flex-direction: column;
  }
  .sec_info article div table tr th {
    width: 100%;
  }
  .sec_info article div table tr th:before {
    content: "■";
  }
  .sec_info article div table tr th span {
    display: none;
  }
  .sec_info article div table tr td {
    width: 100%;
    padding: 0 1em;
    margin-bottom: 0.25rem;
  }
  .sec_info article figure {
    margin-top: 1rem;
  }
  .sec_info ul {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem auto 1rem auto;
    padding: 0 2rem;
  }
  .sec_info ul li:nth-child(3) {
    order: 1;
    width: 100%;
  }
  .sec_info ul li:nth-child(3) p {
    font-size: 3.75vw;
    line-height: 1.75em;
    margin-bottom: 2rem;
  }
  .sec_info ul li:nth-child(1) {
    order: 2;
    width: 47%;
  }
  .sec_info ul li:nth-child(2) {
    order: 3;
    width: 47%;
  }
  .sec_info ul li:nth-child(4) {
    order: 4;
    width: 47%;
  }
  .sec_info ul li:nth-child(5) {
    order: 5;
    width: 47%;
  }
}


/* ----------------------------------------------------------
 Page Common
---------------------------------------------------------- */

/* sec_title
--------------------------------------------- */
main.page .sec_title {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 2rem 3rem 2rem 0;
  animation: firstback 1.5s ease normal;
}
main.page .sec_title h1 {
  width: 20%;
  margin-left: 80%;
}
main.page .sec_title h1 img {
  width: 100%;
}

@media screen and (max-width : 768px) { /* スマホ */
  main.page .sec_title {
    padding: 1rem;
  }
  main.page .sec_title h1 {
    width: 30%;
    margin-right: 80%;
    margin-left: initial;
  }
}


/* ----------------------------------------------------------
 MENU
---------------------------------------------------------- */

/* sec_title */
main.menu .sec_title {
  background-image: url(images/header-menu.jpg);
} 

/* sec_menubook */
.sec_menubook {
  padding: 4rem 0;
}
.sec_menubook2 {
  padding: 4rem 0;
  background-color: #dcdddd;
}
.sec_menubook h2 {
  font-size: 3rem;
  font-family: 'Questrial', sans-serif;
  color: #595757;
  text-align: center;
}
.sec_menubook2 h2 {
  font-size: 2.5rem;
  color: #595757;
  text-align: center;
}
.sec_menubook2 h2 span {
  font-family: 'Questrial', sans-serif;
}
.sec_menubook ul,
.sec_menubook2 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem auto;
}
.sec_menubook ul li {
  width: 50%;
  padding: 2rem;
  text-align: center;
}
.sec_menubook2 ul li {
  width: 20%;
  padding: 0.5rem;
  text-align: center;
}
.sec_menubook ul li figure {
  display: flex;
  margin-bottom: 0.5rem;
}
.sec_menubook2 ul li figure {
  margin-bottom: 0.5rem;
}
.sec_menubook ul li figure a {
  width: 50%;
  padding: 2px;
}
.sec_menubook ul li figure a.takeout {
  width: 100%;
  padding: 2px;
}
.sec_menubook ul li figure a img,
.sec_menubook2 ul li figure,
.sec_menubook2 ul li figure a,
.sec_menubook2 ul li figure a img {
  width: 100%;
}
.sec_menubook ul li > a,
.sec_menubook2 ul li > a {
  font-family: 'Questrial', sans-serif;
  display: inline-block;
  padding: 0 5rem;
  color: #ffffff;
  background-color: #000000;
  text-align: center;
}
.sec_menubook2 ul li > a {
  padding: 0 4rem;
}

@media screen and (max-width : 768px) { /* スマホ */
  .sec_menubook, 
  .sec_menubook2 {
    padding: 2rem 10%;
  }
  .sec_menubook h2,
  .sec_menubook2 h2 {
    font-size: 8vw;
  }
  .sec_menubook ul,
  .sec_menubook2 ul {
    flex-direction: column;
  }
  .sec_menubook ul li,
  .sec_menubook2 ul li {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
}

/* ----------------------------------------------------------
 PROFESSIONALISM
---------------------------------------------------------- */

/* sec_title  */
main.pro .sec_title {
  background-image: url(images/header-pro.jpg);
} 

/* sec_pro */
.sec_pro {
  padding: 4rem 0;
}
.sec_pro h2 {
  font-size: 3rem;
  line-height: 1.25em;
  color: #595757;
  text-align: center;
}
.sec_pro h2 span {
  font-family: 'Questrial', sans-serif;
  display: block;
}
.sec_pro ul {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem auto;
}
.sec_pro ul li {
  width: 25%;
  padding: 1rem;
  text-align: center;
}
.sec_pro ul li figure {
  margin-bottom: 0.5rem;
}
.sec_pro ul li figure a {
  padding: 2px;
}
.sec_pro ul li figure a img {
  width: 100%;
}
.sec_pro ul li > a {
  font-family: 'Questrial', sans-serif;
  display: inline-block;
  padding: 0 5rem;
  color: #ffffff;
  background-color: #000000;
  text-align: center;
  margin-bottom: 0.5rem;
}
.sec_pro ul li > a + p {
  line-height: 1.5em;
}
.sec_pro ul li > a + p a {
  font-size: 0.85rem;
}

.sec_pro2 {
  padding: 4rem 0;
  background-color: #dcdddd;
}
.sec_pro2 h2 {
  font-size: 2.5rem;
  color: #595757;
  text-align: center;
  margin-bottom: 2rem;
}
.sec_pro2 .intro1 {
  display: flex;
  margin-bottom: 3rem;
}
.sec_pro2 .intro1 div {
  width: 450px;
  z-index: 1;
  margin-left: 100px;
}
.sec_pro2 .intro1 div h3 {
  font-size: 2.5rem;
  line-height: 1.225em;
  letter-spacing: 0.225em;
  margin-bottom: 2rem;
}
.sec_pro2 .intro1 div h3 span {
  font-size: 1.25rem;
  line-height: initial;
  display: block;
  letter-spacing: initial;
  margin-bottom: 1rem;
}
.sec_pro2 .intro1 figure {
  width: calc(100% - 600px);
  padding-left: 50px;
}
.sec_pro2 .intro2 {
  padding-left: 100px;
  display: flex;
}
.sec_pro2 .intro2 figure {
  width: 450px;
  margin-right: 4rem;
}
.sec_pro2 .intro2 p {
  width: calc(100% - 450px);
  padding-right: 100px;
}

@media screen and (max-width : 768px) { /* スマホ */
  .sec_pro {
    padding: 2rem 10%;
  }
  .sec_pro h2 {
    font-size: 8vw;
  }
  .sec_pro ul {
    flex-direction: column;
  }
  .sec_pro ul li {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
  .sec_pro2 {
    padding: 2rem 10%;
  }
  .sec_pro2 h2 {
    font-size: 8vw;
  }
  .sec_pro2 .intro1 {
    flex-direction: column;
  }
  .sec_pro2 .intro1 div {
    width: 100%;
    margin-left: 0;
  }
  .sec_pro2 .intro1 figure {
    width: 100%;
    padding-left: 0;
  }
  .sec_pro2 .intro2 {
    padding-left: 0;
    flex-direction: column;
  }
  .sec_pro2 .intro2 figure {
    order: 2;
    width: 100%;
    margin-right: 0;
  }
  .sec_pro2 .intro2 p {
    order: 1;
    width: 100%;
    padding-right: 0;
  }
}


/* ----------------------------------------------------------
 ONOMICHI
---------------------------------------------------------- */

/* sec_title  */
main.onomichi .sec_title {
  background-image: url(images/header-onomichi.jpg);
} 

/* sec_onomichi */
.sec_onomichi {
  padding: 4rem 0;
}
.sec_onomichi h2 {
  font-size: 3rem;
  line-height: 1.25em;
  color: #595757;
  text-align: center;
  margin-bottom: 2rem;
}
.sec_onomichi h2 span {
  font-family: 'Questrial', sans-serif;
  display: block;
}
.sec_onomichi article {
  display: flex;
  padding-left: 4rem;
}
.sec_onomichi article p {
  width: 46%;
  margin-right: 6%;
}
.sec_onomichi article p span {
  display: block;
  text-align: right;
}
.sec_onomichi article div {
  width: 48%;
  background-image: url(images/onomichi-01.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.sec_onomichi article div img {
    position: absolute;
    left: -50px;
    bottom: 0;
    width: 400px;
    height: 323px;
}

/* sec_kankou */
.sec_kankou article {
  display: flex;
  margin-bottom: 4rem;
}
.sec_kankou article > div:nth-of-type(1) {
  width: 30%;
  background-image: url(images/onomichi-02.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.sec_kankou article > div:nth-of-type(2) {
  width: 70%;
  padding-left: 2rem;
  padding-right: 4rem;
}
.sec_kankou h3 {
  font-size: 1.5rem;
  color: #fff799;
  background-color: #2ea7e0;
  padding: 0.5rem;
  margin-bottom: 1rem;
}
.sec_kankou h4 {
  font-size: 1.5rem;
  color: #2ea7e0;
  padding: 0 0.5rem;
  margin-bottom: 0.75rem;
}
.sec_kankou article > div p {
  padding: 0 0.5rem;
}
.sec_kankou article + p {
  padding: 2rem;
  background-color: #dcdddd;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.sec_kankou div.wrap p {
  padding: 0 0.5rem;
}
.sec_kankou div.wrap ul {
  display: flex;
  margin-top: 2rem;
}
.sec_kankou div.wrap ul li figure,
.sec_kankou div.wrap ul li figure img {
  width: 100%;
}
.sec_kankou div.wrap ul li p {
  line-height: 1.5em;
}
.sec_kankou div.wrap ul li p span {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
.sec_kankou div.wrap ul li:nth-child(1) {
  width: 53%;
  display: flex;
}
.sec_kankou div.wrap ul li:nth-child(1) figure {
  width: 45%;
  margin-right: 1%;
}
.sec_kankou div.wrap ul li:nth-child(1) div {
  width: 55%;
}
.sec_kankou div.wrap ul li:nth-child(2),
.sec_kankou div.wrap ul li:nth-child(3) {
  width: 22.5%;
  text-align: center;
}
.sec_kankou div.wrap ul li:nth-child(2) {
  margin: 0 1%;
}
.sec_kankou div.wrap ul li:nth-child(2) figure,
.sec_kankou div.wrap ul li:nth-child(3) figure,
.sec_kankou div.wrap ul li:nth-child(2) h4,
.sec_kankou div.wrap ul li:nth-child(3) h4 {
  margin-bottom: 0.5rem;
}

/* sec_shimanami */
.sec_shimanami {
  background-color: #bae3f9;
  margin: 2rem 0;
}
.sec_shimanami article {
  display: flex;
}
.sec_shimanami article .shima01 {
  width: 35%;
  background-image: url(images/shimanami-01.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.sec_shimanami article .shima01 h3 {
  font-size: 1.75rem;
  line-height: 1.25em;
  color: #ffffff;
  padding: 1em;
}
.sec_shimanami article .shima02 {
  width: 65%;
  display: flex;
}
.sec_shimanami article .shima02 > div {
  width: 60%;
  padding: 1rem 2rem;
}
.sec_shimanami article .shima02 > div h4 {
  font-size: 1.25rem;
  line-height: 1.5em;
  color: #036eb8;
  margin-bottom: 0.5rem;
}
.sec_shimanami article .shima02 > div > p {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #2ea7e0;
  border-bottom: 1px solid #2ea7e0;
  line-height: 1.5em;
  padding: 0.5rem 0;
}
.sec_shimanami article .shima02 div > p span:nth-child(2) {
  font-size: 0.8rem;
  text-align: right;
}
.sec_shimanami article .shima02 div > div {
  width: 100%;
}
.sec_shimanami article .shima02 div > div p {
  width: 65%;
  float: left;
  font-size: 0.8rem;
  padding-right: 1em;
}
.sec_shimanami article .shima02 div > div img {
  width: 35%;
}
.sec_shimanami article .shima02 > img {
  width: 40%;
}

/* sec_spot */
.sec_spot {
  padding: 2rem 0;
}
.sec_spot h3 {
  font-size: 1.5rem;
  color: #2ea7e0;
  padding: 0 0.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.sec_spot ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.sec_spot ul li {
  width: calc(100% /3);
  padding: 0.5rem;
  display: flex;
}
.sec_spot ul li figure {
  width: 50%;
}
.sec_spot ul li figure img {
  width: 100%;
}
.sec_spot ul li div {
  width: 50%;
  padding-left: 0.5rem;
}
.sec_spot ul li div h4 {
  border-bottom: 1px solid #333;
  margin-bottom: 0.5rem;
}
.sec_spot ul li div p {
  font-size: 0.8rem;
}
.sec_spot ul li div p span {
  display: block;
  margin-top: 1em;
}
.sec_spot ul + p {
  font-size: 1.5rem;
  padding: 0 0.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.sec_spot ul + p a {
  display: inline;
}


@media screen and (max-width : 768px) { /* スマホ */
  .sec_onomichi {
    padding: 2rem 10%;
  }
  .sec_onomichi h2 {
    font-size: 8vw;
  }
  .sec_onomichi h2 span {
    font-size: 6.5vw;
    line-height: 1.25em;
    margin-bottom: 0.5rem;
  }
  .sec_onomichi article {
    flex-direction: column;
    padding-left: 0;
  }
  .sec_onomichi article p {
    width: 100%;
    margin-right: 0;
  }
  .sec_onomichi article div {
    width: 100%;
    height: 200px;
  }
  .sec_onomichi article div img {
    position: absolute;
    left: -1.5rem;
    bottom: -1rem;
    width: 50%;
    height: auto;
  }
  .sec_kankou article {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
  .sec_kankou article > div:nth-of-type(1) {
    width: 100%;
    height: 200px;
    order: 2;
  }
  .sec_kankou article > div:nth-of-type(2) {
    order: 1;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding: 0 10%;
  }
  .sec_kankou article + p {
    margin: 2rem auto;
  }
  .sec_kankou article + p + .wrap {
    padding: 0 10%;
  }
  .sec_kankou div.wrap ul {
    flex-direction: column;
  }
  .sec_kankou div.wrap ul li {
    width: 100% !important;
    flex-direction: column;
  }
  .sec_kankou div.wrap ul li figure {
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 0.5rem;
  }
  .sec_kankou div.wrap ul li div {
    width: 100% !important;
  }
  .sec_kankou div.wrap ul li h4 {
    padding: 0 !important;
    text-align: left !important;
  }
  .sec_kankou div.wrap ul li p {
    padding: 0 !important;
    text-align: left !important;
  }
  .sec_shimanami article {
    flex-direction: column;
  }
  .sec_shimanami article .shima01 {
    width: 100%;
    padding: 2em 1em 3em 1em;
  }
  .sec_shimanami article .shima01 h3 {
    padding: 0;
  }
  .sec_shimanami article .shima02 {
    width: 100%;
    flex-direction: column;
  }
  .sec_shimanami article .shima02 div {
    width: 100%;
  }
  .sec_shimanami article .shima02 img {
    width: 100%;
  }
  .sec_shimanami article .shima02 > div > p {
    flex-direction: column;
  }
  .sec_shimanami article .shima02 > div > p span {
    width: 100%;
  }
  .sec_shimanami article .shima02 div > div p {
    width: 100%;
    float: initial;
  }
  .sec_shimanami article .shima02 div > div img {
    width: 100%;
  }
  .sec_shimanami article .shima02 > div + img {
    width: 80%;
    margin: 0 10% 2rem 10%;
  }
  .sec_spot {
    padding: 2rem 10%;
  }
  .sec_spot ul {
    flex-direction: column;
  }
  .sec_spot ul li {
    width: 100%;
    flex-direction: column;
  }
  .sec_spot ul li figure {
    width: 90%;
    margin: 0 auto 0.5rem auto;
  }
  .sec_spot ul li div {
    width: 100%;
  }
  .sec_spot ul li div p span {
    display: block;
    text-align: right;
  }
  .sec_spot ul + p {
    font-size: 4.5vw;
    text-align: left;
  }
}




/* ----------------------------------------------------------
 COATING
---------------------------------------------------------- */

/* sec_title
--------------------------------------------- */
main.coating .sec_title {
  background-image: url(images/header-coating.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  animation: firstback 1.5s ease normal;
  width: 100%;
  height: 90vh;
}
main.coating .sec_title h1 {
  width: 20%;
  margin-left: 80%;
}
main.coating .sec_title h1 img {
  width: 100%;
}
/* sec_coating */
.sec_coating {
  padding: 4rem 0;
}
.sec_coating h2 {
  font-size: 2.5rem;
  line-height: 1.5em;
  color: #595757;
  text-align: center;
  margin-bottom: 2rem;
}
.sec_coating ul {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem auto;
}
.sec_coating ul li {
  width: 50%;
  padding: 2rem;
  text-align: center;
}
.sec_coating ul li figure {
  display: flex;
  margin-bottom: 0.5rem;
}
.sec_coating ul li figure a {
  width: 100%;
  padding: 2px;
}
.sec_coating ul li figure a img {
  width: 100%;
}
.sec_coating ul li > a {
  font-family: 'Questrial', sans-serif;
  display: inline-block;
  padding: 0 5rem;
  color: #ffffff;
  background-color: #000000;
  text-align: center;
}
.sec_coating ul + p {
  font-size: 1.5rem;
  padding: 0 0.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.sec_coating .wrap {
  display: flex;
}
.sec_coating .wrap p {
  width: 50%;
  padding-right: 2rem;
  margin-bottom: 0;
}
.sec_coating .wrap div {
  width: 50%;
  background-image: url(images/coating-main.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.sec_coating2 {
  background-color: #dcdddd;
  padding: 3rem 0;
  margin-bottom: 2rem;
}
.sec_coating2 ul {
  display: flex;
}
.sec_coating2 ul li {
  width: 16%;
  margin-right: 0.8%;
}
.sec_coating2 ul li:last-child {
  margin-right: 0;
}
.sec_coating2 ul li img {
  width: 100%;
}


@media screen and (max-width : 768px) { /* スマホ */
  main.coating .sec_title {
    padding: 1rem;
    height: initial !important;
  }
  main.coating .sec_title h1 {
    width: 30%;
    margin-right: 80%;
    margin-left: initial;
  }
  .sec_coating {
    padding: 2rem 10%;
  }
  .sec_coating h2 {
    font-size: 6.5vw;
    line-height: 1.25em;
  }
  .sec_coating ul {
    flex-direction: column;
  }
  .sec_coating ul li {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
  .sec_coating ul + p {
    text-align: left;
  }
  .sec_coating div.wrap {
    flex-direction: column;
  }
  .sec_coating .wrap p {
    width: 100%;
    padding-right: 0;
    margin-bottom: 1rem;
  }
  .sec_coating .wrap div {
    width: 100%;
    height: 200px;
  }
  .sec_coating2 {
    padding: 2rem 0;
  }
}

