@charset "UTF-8";

/* Noto+Sans */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap');
/* Raleway */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;300;400&display=swap');

/*================================================
 *  CSSリセット
 ================================================*/
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,var,b,i,dl,dt,dd,ol,ul,li,fieldset,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav.gnav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav.gnav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}


/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font: 14px/1.9 'Noto Sans JP', Arial, Verdana, 游ゴシック, YuGothic,'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', メイリオ, Meiryo,sans-serif;
	font-weight: 500;
	-webkit-text-size-adjust:100%;
	color: #3a290d;
	background: #fffadf;
  letter-spacing: .06em;
}
#content,
.wrap {
	max-width: 1000px;
	margin: 0 auto;
}
.widewrap {
  max-width: 1150px;
	margin: 0 auto;
}
a{
  color: #555;
	text-decoration: none;
}
a:hover{
  opacity: .7;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
img.radius {
  border-radius:  10px;
}
p {
  margin-bottom: 1em;
}
strong {
  font-weight: bold;
}
small {
	font-size: smaller;
}
ul,ol,dl {
	margin: 0;
}
ul li {
  list-style: none;
  margin-left: 0;
}

h2 {
  font-size: 17px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #cd5553;
    border-bottom: 1px dotted ;
    letter-spacing: .1em;
}

@media screen and (max-width:768px) {
	*, *:before, *:after {
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box
  }
  body {
    font-size: 14px;
  }
	#content,
  .wrap,
  .widewrap {
		width: 100%;
		padding-left: 20px;
    padding-right: 20px;
  }
  h2 {
    font-size: 16px;
  }
}

/* ==================================================
  preloader
====================================================*/
/* .preloader-area {
  background-color: #111523;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.preloader-area .loader-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.preloader-area .loader {
  opacity: 0.8;
}
@media screen and (max-width:768px) {
  .preloader-area .loader-box {
    width: 90%;
  }
} */

/* =======================================================
* header
* ======================================================= */
#g-nav{
  position:fixed;
	z-index: -1;
	opacity: 0;
	top:0;
	width:100%;
  height: 100vh;
	background:#fffadf;
	transition: all 0.3s;
}
#g-nav.panelactive{
	opacity: 1;
	z-index:99;
}
#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
/* ナビゲーション左側 */
#g-nav.panelactive #g-nav-list .bg_list {
  background: url(../images/bg-menu.jpg) no-repeat center/cover;
  height: 100vh;
  position: relative;
  width: 40%;
}
#g-nav.panelactive #g-nav-list .bg_list div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}
/*ナビゲーション右側*/
#g-nav ul {
    display: none;
}
#g-nav.panelactive ul {
    display: block;
    width: 60%;
}
/*リストのレイアウト設定*/
#g-nav li{
  text-align: center;
  line-height: 2;
}
#g-nav li.nav_logo {
  width: 200px;
  margin: 0 auto;
}
#g-nav li a {
  color: #cd5553;
	padding:10px 0;
	display: block;
	letter-spacing: 0.1em;
}
#g-nav li span {
  font-size: 20px;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
}
/* nav_online */
#g-nav li.nav_online a {
  border: 1px solid #cd5553;
    padding: 17px 0;
    width: 300px;
    margin: 30px auto 50px;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    background: #cd5553;
    color: #fff;
}
#g-nav li.nav_online a:hover {
  background-color: #fff;
  color: #cd5553;
}
/* SNS */
#g-nav .sns p {
  display: inline-block;
  margin: 0 5px;
}
#g-nav .sns img {
  width: 40px;
}


/*========= ボタンのCSS ===============*/
.openbtn{
	position: fixed;
  z-index: 999;
	cursor: pointer;
  width: 90px;
  height:90px;
	border-radius: 50%;
  top: 30px;
  right: 30px;
  background: #ffb341;
}

/*ボタン内側*/
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 27px;
  height: 1px;
	background: #fff;
  width: 40%;
}
.openbtn span:nth-of-type(1) {
	top:23px;
}
.openbtn span:nth-of-type(2) {
	top:31px;
}
.openbtn span:nth-of-type(3) {
	top:38px;
}
.openbtn span:nth-of-type(3)::after {
	content:"MENU";
	position: absolute;
	top:10px;
	left:-1px;
	color: #fff;
	font-size: 11px;
  letter-spacing: .2em;
}

.openbtn.active span:nth-of-type(1) {
    top: 22px;
    left: 26px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 34px;
    left: 26px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
}
.openbtn.active span:nth-of-type(3)::after {
	content:"CLOSE";
  transform: translateY(0) rotate(-45deg);
	top: 11px;
  left: 20px;
}

@media screen and (max-width:768px) {
  #g-nav.panelactive #g-nav-list {
    align-items: flex-start;
  }
  #g-nav.panelactive #g-nav-list .bg_list {
    width: 25%;
  }
  #g-nav.panelactive ul {
    width: 75%;
    padding-top: 70px;
  }
  #g-nav li a {
    font-size: 13px;
  }
  #g-nav li span {
    font-size: 25px;
  }
  #g-nav li.nav_logo {
    width: 140px;
  }
  #g-nav li.nav_online a {
    padding: 11px 0;
    width: 80%;
    margin: 20px auto 30px;
    font-size: 14px;
  }
  /* ボタン */
  .openbtn {
    width: 60px;
    height: 60px;
    top: 10px;
    right: 10px;
  }
  .openbtn span {
    left: 17px;
  }
  .openbtn span:nth-of-type(1) {
    top: 14px;
  }
  .openbtn span:nth-of-type(2) {
    top: 20px;
  }
  .openbtn span:nth-of-type(3) {
    top: 26px;
  }
  /* OPEN */
  .openbtn span:nth-of-type(3)::after {
    -moz-transform: scale(0.8);
   -webkit-transform: scale(0.8);
   -o-transform: scale(0.8);
   -ms-transform: scale(0.8);
   transform: scale(0.8);
    top: 5px;
    left: -6px;
  }
  /* CLOSE */
  .openbtn.active span:nth-of-type(1) {
    left: 16px;
    top: 13px;
  }
  .openbtn.active span:nth-of-type(3) {
    left: 17px;
    top: 24px;
  }
  .openbtn.active span:nth-of-type(3)::after {
    font-size: 10px;
    top: 6px;
    left: 9px;
  }
}

/* ==================================================
  preloader
====================================================*/
.preloader-area {
  background-color: #fffadf;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.preloader-area .loader-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.preloader-area .loader {
  background-image: url(../images/loader-pc.png);
  width: 200px;
  height: 63px;
}

@media screen and (max-width:768px) {
	.preloader-area .loader {
    background-image: url(../images/loader-sp.png);
    width: 120px;
    height: 38px;
  }
}

/* =======================================================
* section
* ======================================================= */
section {
  padding-bottom: 7rem;
}
.section {
  padding-top: 7rem;
}
.section.background {
  background: url(../images/bg.png) no-repeat center/cover;
  background-attachment: fixed;
}

/* ボタン */
.linkBtn {
  margin-top: 70px;
}
.linkBtn a {
    border: 2px solid #cd5553;
    color: #cd5553;
    padding: 15px 60px;
    border-radius: 30px;
    background-color: #cd5553;
    letter-spacing: .15em;
    color: #fff;
    font-size: 13px;
}
.linkBtn a:hover {
  opacity: 1;
  background-color: #fffadf;
  color: #cd5553;
}
/* 背景白いボタン */
.linkBtn.color_white a {
  background-color: #cd5553;
  color: #fff;
  border: 2px solid #fff;
}
.linkBtn.color_white a:hover {
  background-color: #fff;
  color: #cd5553;
}
/* LINE */
.linkBtn.line a {
  background: #00B900;
  border: 2px solid #00B900;
}
.linkBtn.line a:hover {
  background: #fff;
  color: #00B900;
}
@media screen and (max-width:768px) {
  section {
    padding-bottom: 5rem;
  }
  .section {
    padding-top: 5rem;
  }
  .section.background {
    background: url(../images/bg-sp.png) repeat-y center top /contain;
    background-attachment: unset;
  }
}


/* =======================================================
* main
* ======================================================= */
#main {
  height: 60vh;
  position: relative;
}
h1.header_title {
  position: absolute;
  top: 3%;
  left: 3%;
  z-index: 9;
  width: 250px;
}
h1.header_title p {
  font-size: 11px;
    text-align: center;
    letter-spacing: .35em;
    color: #cd5553;
    margin-bottom: 5px;
  font-weight: normal;
}
#main .swiper-slide {
  height: 60vh;
}
.swiper-slide.slide01 {
  background: url(../images/slide01.jpg) no-repeat center/cover;
}
.swiper-slide.slide02 {
  background: url(../images/slide02.jpg) no-repeat center/cover;
}
.swiper-slide.slide03 {
  background: url(../images/slide03.jpg) no-repeat center/cover;
}
/* main_catch */
.main_catch {
  position: absolute;
  z-index: 9;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  letter-spacing: .2em;
  color: #fff;
  width: 100%;
  font-weight: normal;
}
.main_catch span {
  font-size: 10px;
}
.main_catch.color_white {
  color: #fff;
}

@media screen and (max-width:768px) {
  #main,
  #main .swiper-slide {
    height: 50vh;
  }
  h1.header_title {
    width: 150px;
  }
  h1.header_title p {
    font-size: 10px;
    letter-spacing: .23em;
  }
  .main_catch {
    font-size: 11px;
  }
}

/* =======================================================
*about
* ======================================================= */
#about .about_txt {
  width: 60%;
  margin: 0 0 100px auto;
}
#about ul li {
  width: 18%;
}

/* intro */
.intro {
  margin: 12rem 0;
  position: relative;
}
.intro .intro_img {
  width: 55%;
  height: 410px;
}
.intro .intro_img.first {
  background: url(../images/ph01.jpg) no-repeat center/cover;
  border-radius: 0 10px 10px 0;
}
.intro .intro_img.second {
  background: url(../images/ph02.jpg) no-repeat center/cover;
  border-radius: 10px 0 0 10px;
}
.intro_txt {
  width: 35%;
  margin: 0 auto;
  line-height: 2.2;
}
.intro_txt.reverse .linkBtn {
  width: 48%;
  margin-top: 30px;
}
.intro_txt.reverse .linkBtn a {
  display: inline-block;
  width: 100%;
  padding: 10px 0;
}
.intro_txt.reverse .linkBtn a i {
  font-size: 23px;
    vertical-align: middle;
}

@media screen and (max-width:768px) {
  #about .about_txt {
    width: 100%;
    margin: 0 0 50px auto;
  }
  #about ul li {
    width: 43%;
    margin-bottom: 10px;
  }

  .intro {
    margin: 8rem 0 3rem;
  }
  .intro .intro_img {
    width: 80%;
    height: 210px;
  }
  .intro_txt {
    width: 90%;
    margin: 20px auto 0;
    line-height: 2;
  }
  .intro_txt.reverse .linkBtn {
    width: 75%;
    margin: 15px auto 0;
  }
}


/* ======================================================
* 下層ページ共通
* ======================================================= */
#sub_main {
  height: 350px;
  display: flex;
}
#sub_main div {
  margin: auto;
  letter-spacing: .2em;
  color: #cd5553;
  text-align: center;
}
#sub_main div.color_white {
  color: #fff;
}
#sub_main div span {
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 24px;
  display: block;
}

@media screen and (max-width:768px) {
  #sub_main div span {
    font-size: 18px;
  }
}

/* =======================================================
*footer
* ======================================================= */
footer {
  padding: 50px 30px 0px;
  border-top: 2px dotted #cd5553;
  margin: 0 2%;
}
footer a {
  color: #cd5553;
  opacity: 1;
}
/* footer_left */
.footer_left {
  width: 40%;
  font-size: 11px;
  letter-spacing: .2em;
  text-align: center;
  line-height: 3;
}
.footer_left img {
  width: 200px;
  margin-bottom: 30px;
}
.footer_online a {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
  font-size: 15px;
    background: #cd5553;
    color: #fff;
    padding: 20px 50px;
    border: 1px solid;
}
.footer_online a:hover {
  background: #fff;
  color: #cd5553;
  opacity: 1;
}
.footer_sns a {
  display: inline-block;
  margin: 30px 10px 0 10px;
}
.footer_sns a img {
  width: 40px;
  margin-bottom: 0;
}
/* footer_center */
.footer_center {
  width: 20%;
}
.footer_center li a {
  font-size: 13px;
  line-height: 2.5;
  letter-spacing: .15em;
}

/* footer_right */
.footer_right {
  width: 20%;
  line-height: 2.3;
  font-size: 12px;
}
.footer_right img {
  width: 12px;
  vertical-align: text-bottom;
  padding-left: 5px;
}
/* copyright */
.copyright {
  text-align: center;
  font-size: 10px;
  color: #f6b343;
  letter-spacing: .2em;
  margin: 50px auto;
}

@media screen and (max-width:768px) {
	.footer_left,
  .footer_center,
  .footer_right {
    width: 100%;
  }
  .footer_left {
    text-align: left;
    font-size: 10px;
  }
  .footer_left img {
    width: 150px;
    margin-bottom: 20px;
  }
  .footer_center li a {
    font-weight: normal;
  }
  .footer_right {
    font-size: 13px;
    font-weight: normal;
  }
  .footer_right img {
    width: 16px;
  }
  .footer_online {
    margin: 50px auto 10px;
  }
  .footer_sns {
    margin: 0 auto;
  }
}

/*================================================
 *  pagetop
 ================================================*/
#pagetop {
    position: fixed;
    right: 15px;
    bottom: 10px;
    cursor: pointer;
    overflow: visible!important;
    z-index: 99;
}

#pagetop .arrow-up {
  width: 35px;
  height: 35px;
}

