@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond&display=swap');
/* ---------------------------------------------------------------------------------------------

　   リセット

--------------------------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, picture {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	/*font: inherit;*/
	vertical-align: baseline;
	line-height: 1.5em;
    color: rgb(223, 223, 223);
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}
img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}
/* ---------------------------------------------------------------------------------------------

　   設定をしなおす

--------------------------------------------------------------------------------------------- */
html {
  -webkit-font-smoothing: antialiased;
}
body {
	margin: 0 auto;
	padding: 0;
	font: 16px/1.6em "メイリオ";
	-webkit-text-size-adjust: 100%;
	color: #020202;
	letter-spacing: .4px;
	background-color: #343434;
}
a {
  outline: none;
}
a:hover {
  text-decoration: none;
}
a, a:hover, a:hover img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}
a:hover {
  filter: alpha(opacity=80);
  -moz-opacity: 0.80;
  opacity: 0.80;
}
img {
	max-width: 100%;
	height: auto;
	margin-top: 0px;
	padding-bottom: 0px;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* ---------------------------------------------------------------------------------------------

　   メニュー

--------------------------------------------------------------------------------------------- */
#nav li a {
  display: block;
  color: #000000;
  position: relative;
}
#nav .menu-item-has-children > a:after, #nav .menu-item-has-children > a:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 10px;
  height: 1px;
  background: #fff;
  transition: .2s;
}
#nav .menu-item-has-children > a:after {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
#nav .menu-item-has-children > a.open:before {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
#nav .menu-item-has-children > a.open:after {
  background: transparent;
}
#nav .menu-item-has-children .sub-menu {
  display: none;
}
@media screen and (min-width:768px) and (max-width:1199px){
#nav .menu-item-has-children > a:after, #nav .menu-item-has-children > a:before {
  background: #424242;
}
}
@media only screen and (max-width : 767px) {
  .overlay {
    width: 0;
    height: 0;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .5s;
    background: rgba(255, 255, 255, .7);
  }
  .overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  #main {
    transition: all .5s;
    min-height: 100vh;
  }
  #main.open {
    position: fixed;
    width: 100%;
  }
  #menu_btn {
    top: 12px;
    right: 15px;
    transition: .3s;
    cursor: pointer;
    position: fixed;
    z-index: 9999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu-trigger {
    width: 18px;
    height: 16px;
    position: relative;
  }
  .menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #434343;
    transition: all .5s;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    width: 70%;
    top: 7px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg);
      background-color: white;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(3) {
    transform: translateY(-7px) rotate(45deg);
      background-color: white;
  }
  #nav {
    width: 280px;
    height: 100%;
    overflow: auto;
    padding: 90px 0;
    background: #000;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 12;
    transform: translate(280px);
    transition: all .5s;
  }
  #nav.open {
    transform: translateZ(0);
  }
  #nav li {
    padding: 0 20px;
  }
  #nav li a {
    position: relative;
    padding: 20px;
    color: #fff;
  }
  #nav .menu-item-has-children .sub-menu {
    padding: 20px;
  }
  #nav .menu-item-has-children > a.open:first-of-type {
    color: #dad4ec;
  }
  #nav .menu-item-has-children .sub-menu li {
    padding: 0;
    margin-bottom: 20px;
  }
  #nav .menu-item-has-children .sub-menu li:last-child {
    margin-bottom: 0;
  }
  #nav .menu-item-has-children .sub-menu li a {
    padding: 0;
  }
}
@media print, screen and (min-width : 768px) {
  #menu_btn, .overlay {
    display: none;
  }
  #nav ul {
    display: flex;
    flex-wrap: wrap;
  }
  #nav li {
    position: relative;
  }
  #nav li a {
    padding: 20px;
  }
  #nav .menu-item-has-children > a {
    padding-right: 40px;
  }
  #nav .menu-item-has-children > a.open:first-of-type, #nav .current-menu-item a {
    color: #3263aa;
  }
  #nav .current-menu-item li a {
    color: #fff;
  }
  #nav li ul.sub-menu {
    flex-direction: column;
    background: #fff;
    position: absolute;
    width: 200px;
    left: 50%;
    top: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 10px 0;
  }
  #nav li ul.sub-menu li {
    width: 100%;
  }
  #nav li ul.sub-menu li a {
    line-height: 1.6em;
    color: #83759a;
    padding: 10px 20px;
  }
  #nav li ul.sub-menu li a:hover {
    color: #dad4ec;
  }
}
@media screen and (min-width:1200px){
  #nav .menu-item-has-children > a.open:first-of-type, #nav .current-menu-item a {
    color: #ffffff;
  }
  #nav li a {
    display: block;
    color: #ffffff;
    position: relative;
  }
}
/* ---------------------------------------------------------------------------------------------

　   HEADER / FOOTER

--------------------------------------------------------------------------------------------- */
header {
  width: 100%;
  background: rgba(0, 0, 0, 1);
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 10;
}
header #logo a {
  display: block;
  color: #FFFFFF;
}
footer {
	text-align: center;
	background-color: #FFFFFF;
}
.footerf div p, .footerf div li {
	color: #3D3D3D;
}

footer a {
	letter-spacing: 0.15em;
}
.footerf {
	display: flex;
	flex-wrap: wrap;
	padding: 5%;
	width: auto;
}
.footerf  div:nth-child(1)  {
	width: 30%;
}
.footerf div:nth-child(1) img {
	margin-bottom: 15px;
}

.footerf div:nth-child(1) p {
	text-align: left;
	font-size: 0.8rem;
}

.footerf div:nth-child(2) {
	width: 70%;
}
.footerf div ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.footerf div:nth-child(2) li {
	font-family: "oswald", sans-serif;
}

div ul li {
}




@media only screen and (max-width : 767px) {
  header {
    padding: 0 20px;
    height: 70px;
  }
  header #logo {
    width: 150px;
      margin-top: 20px
  }
  .open {
    overflow: hidden
  }



}
@media print, screen and (min-width : 768px) {
  header {
    padding: 0 50px;
  }
  header #logo {
    width: 200px;
  }
}
/* ---------------------------------------------------------------------------------------------

　   ページスタイル

--------------------------------------------------------------------------------------------- */
section {}
#sec01 {
	background-color: #ffffff;
}
#sec02 {
  background-image: linear-gradient(-225deg, #E3FDF5 0%, #FFE6FA 100%);
}
#sec03 {
  background-color: #CDDCDC;
  background-image: radial-gradient(at 50% 100%, rgba(255, 255, 255, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%);
  background-blend-mode: screen, overlay;
}
#sec04 {
  background-image: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%);
}

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

　   フッター

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

#contact {
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#contact .contact-detail {
    width: 65%;
    border-right: 1px solid #aaa;
    text-align: center;
    padding: 20px;
}
#contact .contact-detail h2 {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    color:#393939;
}
#contact .contact-detail p {
    color:#393939;
}
#contact .contact-tel {
    width: 35%;
}
#contact .contact-tel p {
    text-align: center;
    color:#393939;
}
#contact .contact-tel p a {
    display: block;
    padding: 20px;
    transition: all .3s;
    color: #393939
}
#contact .contact-tel p:last-child {
    border-top: 1px solid #aaa;
}
@media only screen and (max-width : 767px) {
    
#contact .contact-detail {
	width: 50%;
	border-right: 1px solid #aaa;
	text-align: center;
	padding: 20px;
}
#contact .contact-tel {
	width: 50%;
} 
    #contact .contact-tel p{
        font-size: 3vw
    }
#contact .contact-detail h2 {
	margin: 0 0 5px 0;
	font-size: 5vw;
}
#contact .contact-detail p {
	margin: 0 0 5px 0;
	font-size: 2vw;
}
.footerf {
	padding: 5%;
	width: auto;
	flex-direction: column-reverse;
	align-items: flex-start;
}
.footerf  div:nth-child(1) {
	width: 100%;
}
.footerf div:nth-child(2) {
	width: 100%;
}
.footerf div:nth-child(2) ul {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
	border-bottom: 1px solid #6B6B6B;
}
.footerf div:nth-child(2) ul li {
	margin-bottom: 15px;
}





}
