@charset "UTF-8";

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

　RESET CSS

--------------------------------------------------------*/
  
html {
  overflow: auto;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-text-size-adjust: 100%;
  text-align: left;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, figure, figcaption {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

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

caption, th {
  text-align: left;
}

q:before, q:after {
  content: "";
}

object, embed {
  vertical-align: top;
}

hr, legend {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: none;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  border: none;
  outline: none;
}

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

　BASE STYLE

--------------------------------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  color: #000000;
	background: #f1e2be;		
}

@media (max-width: 759px) {
  .main {
    padding-top: 15vw;
  }
}

.allwrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.br {
  display: inline-block;
}

@media (min-width: 760px) {
  .sp-visible {
    display: none;
  }
}
@media (max-width: 759px) {
  .pc-visible {
    display: none;
  }
}

.c-inner {
	max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

.c-ttl {
  font-size: 26px;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  margin-bottom: .5em;
}

.c-lead {
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1em;
}

.c-caption {
  font-size: 14px;
  line-height: 1.4;    
  margin-top: .5em;
}

.c-txt + .c-txt {
  margin-top: 2rem;
}

.sec01-txt + .sec01-txt {
  margin-top: 6em;
}

@media (max-width: 759px) {
  .c-inner {
    max-width: 100%;    
    padding-left: 0;
    padding-right: 0;
    margin-left: 5.7vw;
    margin-right: 5.7vw;
  }
  .c-ttl {
    font-size: 20px;
  }
  .c-lead {
    font-size: 16px;
  }
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media (max-width: 759px) {
  img {
    width: 100%;
  }
}

a {
  text-decoration: none;
  outline: none;
  color: inherit;
}

@media (min-width: 960px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/*-------------------------------------
  
HEADER
  
---------------------------------------*/
.pc-header {
  display: block;
}

.sp-header {
  display: none;
}

.header {	
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
	background-color: #ffbf1f;
}

.header .header-inner {
	max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;    
  box-sizing: border-box;
}

.header .header-logo {
  width: 400px;
}

.header .gnav-list {
	display: flex;
	justify-content: flex-end;
  align-items: center;
}

.header .gnav-item {	
  position: relative;
  font-weight: 600;
	padding-left: 20px;
	padding-right: 20px;
  line-height: 1;
  white-space: nowrap;
}

.header .gnav-item::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #000;
  top: 0;
  left: 0;
}

.header .gnav-item:last-child::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #000;
  top: 0;
  right: 0;
}

@media (max-width: 959px) {
  .pc-header {
    display: none;
  }
  
  .sp-header {
    display: block;
  }
  
  .header {
    position: fixed;
    z-index: 2000;
  }
  
  .sp-header-inner {
    width: 100%;
  }
  
  .sp-header-logo {
    width: 224px;
    margin: 0 auto;     
    padding: 15px 0;
  }
  
  .sp-btn {
    position: fixed;
    width: 50px;
    height: 50px;
    top: 10px;
    right: 10px;
    z-index: 1000;
    cursor: pointer;
  }
  
  .sp-btn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    width: 45%;
    height: 1px;
    left: 20px;
    border-radius: 2px;
    background: #000;
  }
  
  .sp-btn span:nth-last-of-type(1) {
    top: 15px;
  }
  
  .sp-btn span:nth-last-of-type(2) {
    top: 23px;
  }
  
  .sp-btn span:nth-last-of-type(3) {
    top: 31px;
  }
  
  .sp-btn.is-active span:nth-of-type(1) {
    width: 45%;
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
  }
  
  .sp-btn.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  
  .sp-btn.is-active span:nth-of-type(3) {
    width: 45%;
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
  }
  
  #sp-gnav.is-open #sp-gnav-list {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: auto;
    z-index: 999;        
  }
  
  #sp-gnav-list ul {
    position: absolute;
    width: 80vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
  }
  
  #sp-gnav-list ul li {
    font-size: 18px;
    padding-bottom: 5vw;
    margin-bottom: 5vw;
    border-bottom: 1px solid #000;
  }
  
  #sp-gnav-list ul li:first-child {
    padding-left: 0;
    padding-right: 0;
  }
  
  .header .gnav-item::before {
    content: none;
  }

  .header .gnav-item:last-child::after {
    content: none;
  }
  
  #sp-gnav {
    position: fixed;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    transition: all .6s;
    background: #ffbf1f;
    z-index: 999;
  }
  
  #sp-gnav.is-open {
    right: 0;
  }
}


/*-------------------------------------
  
FOOTER
  
---------------------------------------*/
.footer {
	background-color: #ffbf1f;
  padding: 30px 0;
}

.footer .footer-inner {
	display: flex;
	justify-content: space-between;	
	align-items: center;	
	max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;   
  box-sizing: border-box;
}

.footer .footer-nav-list {
	display: flex;
	justify-content: space-between;	
	align-items: center;		
}

.footer .footer-nav-list li {
  padding-left: 20px;
  text-decoration: underline;
}

.footer .footer-logo {
  width: 550px;
}

@media (max-width: 959px) {
  .footer {
    padding: 10vw 0;
  }
  
  .footer .footer-inner {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;          
    margin-left: 5.7vw;
    margin-right: 5.7vw;
    flex-direction: column;
  }
  
  .footer .footer-nav-list {
    margin-top: 10vw;
  }
  
  .footer .footer-nav-list li:first-of-type {
    padding-left: 0;
  }
  
  .footer .footer-logo {
    width: 100%;
    max-width: 500px;
  }
}
