@charset "UTF-8";
/* Faundation ======================================== */
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, sup, var, b,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

html {
  font: 16px/1 "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6, thead, th {
  font-weight: normal;
  clear: both;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

img {
  border: 0;
  vertical-align: bottom;
}

ul, dl, ol {
  text-indent: 0;
}

li {
  list-style: none;
  list-style-position: outside;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

a:hover {
  color: #F7819F;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input[type=image] {
  vertical-align: bottom;
}

input[type=text] {
	font-size: 100%;
}

textarea {
	font-size: 100%;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background: #FAFAFA;
  line-height: 1.75;
  color: #666;
}

a {
  color: #666;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

a[href^="tel:"] {
  pointer-events: none;
  color: #333 !important;
}
@media screen and (max-width: 640px) {
  a[href^="tel:"] {
    pointer-events: auto;
    color: #666 !important;
  }
  a[href^="tel:"] :hover {
    color: #fff;
  }
}

img {
  max-width: 100%;
}

/* Layout ======================================== */
/* header */
.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 120px;
  position: fixed;
  z-index: 99;
  background-color: #e4e2da;
  opacity: 0.95;
  backdrop-filter: blur(5px);
}

.l-header img {
  width: 60%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .l-header img {
    width: 80%;
  }
}
.l-logo {
  padding: 0 0 0 50px;
}

@media screen and (max-width: 768px) {
  .l-logo {
    padding: 0 0 0 20px;
  }
}
/* hbgr */
.l-hbgr {
  padding: 0 50px 0 0;
}

/*+++ Reset +++*/
.l-menu__button * {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  font: inherit;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: left;
  text-decoration: none;
  list-style: none;
}

.l-menu__button {
  display: block;
  padding: 0;
  width: 42px;
  height: 26px;
  position: relative;
  background: none;
  border: none;
  text-align: center;
  letter-spacing: 0.1em;
  cursor: pointer;
  outline: none;
}

.l-menu__button .l-menu__bar {
  display: block;
  width: 42px;
  height: 2px;
  transition: all 0.2s;
  transform-origin: 0% 0%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
}

.l-menu__button .l-menu__bar1 {
  top: 0;
}

.l-menu__button .l-menu__bar2 {
  top: 50%;
}

.l-menu__button .l-menu__bar3 {
  top: 100%;
}

.l-menu__button.active .l-menu__bar {
  width: 36.77px;
  left: 8px;
}

.l-menu__button.active .l-menu__bar1 {
  transform: rotate(0.7853981634rad) translateY(-50%);
  top: 0px;
}

.l-menu__button.active .l-menu__bar2 {
  opacity: 0;
}

.l-menu__button.active .l-menu__bar3 {
  transform: rotate(-0.7853981634rad) translateY(-50%);
  top: calc(100% - 0px);
}

.l-menu__button.active .l-menu__menu_text {
  display: none;
}

.l-menu__button.active .l-menu__close {
  display: block;
}

.l-menu__text {
  width: 100%;
  position: absolute;
  bottom: -20px;
  left: 0;
  text-align: center;
  font-size: 10px;
}

.l-menu__close {
  letter-spacing: 0.08em;
  display: none;
}

/*+++ Default Button Color +++*/
.l-menu__button {
  color: #666;
}

.l-menu__button .l-menu__bar {
  background-color: #666;
}

/* === Hambuerger Button's Style End === */
.l-menu__menu .l-menu__button {
  /*+++ Hamburger Button Position +++*/
  position: fixed;
  top: 36px;
  right: 36px;
  z-index: 1001;
}
.l-menu__menu a {
  color: inherit;
  text-decoration: none;
}
.l-menu__menu a:visited {
  color: inherit;
}
.l-menu__menu .l-menu__bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 999;
  background-color: rgba(51, 51, 51, 0.5);
  display: none;
  top: 0;
  left: 0;
}
.l-menu__menu .l-menu__nav_wrapper {
  width: 50vw;
  height: 100vh;
  text-align: center;
  transition: all 0.2s;
  transform: translate(1600px);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  background-color: #FFF;
}
.l-menu__menu .l-menu__nav_wrapper.open {
  transform: translate(0);
}
.l-menu__menu.left .l-menu__button {
  right: auto;
  left: 32px;
}
.l-menu__menu.left .l-menu__nav_wrapper {
  transform: translate(-312px);
  right: auto;
  left: 0;
}
.l-menu__menu.left .l-menu__nav_wrapper.open {
  transform: translate(0);
}

/*+++ Default Navigation CSS +++*/
.l-menu__menu .l-menu__nav {
  padding: 150px 30px;
}
.l-menu__menu .l-menu__nav li {
  font-size: 16px;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .l-menu__menu .l-menu__nav {
    padding: 100px 30px 50px 30px;
  }
}
/*   slide   */
.l-slide {
  text-align: center;
  padding-top: 120px;
}

.l-slide-img {
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-slide-img::before {
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
}

.l-slide ul {
  position: relative;
  padding-top: 120px;
}

.l-slide li {
  position: absolute;
  width: 100%;
}

.l-slide-button {
  padding: 310px 0 30px;
}

.l-slide-button ul {
  display: flex;
  justify-content: center;
}

.l-slide-button ul li a {
  text-indent: -9999px;
  text-decoration: none;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background: #707070;
  margin-left: 5px;
  margin-right: 5px;
}

/* material */
.l-material {
  margin: 0 30px;
  padding-top: 160px;
  text-align: center;
}

.l-material__wrap p {
  padding-top: 30px;
}

.l-material__list {
  margin: 30px auto 0;
  width: 800px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .l-material__list {
    width: auto;
    justify-content: space-around;
  }
}
/* contet 

.l-contet {
        padding: 10px;
        width: 400px;
    }

.l-contet_img {
    text-align: center;

    img {
    box-shadow: 0 0 2px #555;
    border-radius: 10px;
    }

    }

.l-contet_text {

}
*/
.l-contet__element {
  width: 380px;
}

/* riyoukikyaku */
.l-riyoukiyaku {
  margin: 0 auto;
  padding: 120px 30px 30px;
  width: 800px;
  text-align: center;
}

.l-riyoukiyaku__wrap p {
  padding: 30px 0 30px;
}

.l-riyoukiyaku__text {
  text-align: left;
  font-size: 0.75rem;
}
.l-riyoukiyaku__text p {
  padding: 20px 0;
  text-indent: -1rem;
}

.l-riyoukiyaku__list li {
  list-style: disc;
}

@media screen and (max-width: 768px) {
  .l-riyoukiyaku {
    width: 600px;
  }
}
@media screen and (max-width: 640px) {
  .l-riyoukiyaku {
    width: 250px;
    padding: 120px 10px 30px;
  }
}
/* about */
.l-about {
  margin: 0 30px;
  padding-top: 160px;
  text-align: center;
}

.l-about__wrap {
  padding-top: 50px;
}
.l-about__wrap p {
  padding-top: 50px;
}

.l-about__img {
  max-width: 200px;
  display: inline-block;
}

.l-about__skill {
  margin: 0px auto;
}
.l-about__skill td {
  padding: 50px;
  text-align: left;
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  .l-about__skill td {
    display: block;
    padding: 30px 10px;
  }
}
/* Object/Component ======================================== */
/*
.c-headline {
    font-family: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","游明朝",YuMincho,"HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;

    font-family: "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
        font-weight: bold;
    }

.c-font--serif {
    font-family: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","游明朝",YuMincho,"HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
}
*/
a:hover {
  text-decoration: none;
}

.h1-l {
  text-decoration: none;
  font-size: 3rem;
}

.h1-m {
  font-size: 2rem;
}

.h1-s {
  font-size: 2rem;
}

/* font-icon */
.c-font-icon {
  display: flex;
  justify-content: center;
}

.c-font-icon li {
  float: left;
  margin: 0 30px;
  font-size: 20px;
  list-style: none;
  position: relative;
  width: 30px;
  height: 30px;
  transition: 0.3s;
}

.c-font-icon li a {
  color: #666666;
}

.c-font-icon li a:hover {
  color: #F7819F;
}

/* Callout */
.c-font-icon a span {
  position: absolute;
  opacity: 0;
  top: -30px;
  left: -30px;
  width: 90px;
  padding: 10px;
  border-radius: 5px;
  background: #ff8daa;
  color: #ffffff;
  font-size: 10px;
  line-height: 1;
  transition: 0.3s;
  text-align: center;
}

.c-font-icon a span:after {
  position: absolute;
  top: 100%;
  left: 38px;
  height: 0;
  width: 0;
  border: 6px solid transparent;
  border-top: 6px solid #ff8daa;
  content: "";
}

.c-font-icon a:hover span {
  opacity: 1;
  top: -40px;
}

/* Object/Project ======================================== */
/*footer*/
.p-footer {
  margin: 30px 10px 30px;
  padding: 50px;
  text-align: center;
}

.p-footer__text-small {
  font-size: 0.75rem;
}

.p-scrollTop {
  display: inline-block;
  bottom: 30px;
  position: fixed;
  right: 30px;
  z-index: 999;
}
.p-scrollTop a {
  color: #707070;
}

/* mail */
.p-mail {
  padding: 160px 0 60px;
}
.p-mail .h1-m {
  text-align: center;
}
.p-mail .h1-s {
  text-align: center;
}

.p-mail__center {
  /*  width: 800px; フォームラン用 */  
  margin: 0 auto;
  padding: 0 50px 0 50px;
}
.p-mail__center p {
  padding-top: 30px;
  text-align: center;
}

.p-mail__form dl dt {
  padding-top: 30px;
}
.p-mail__form dl dd {
  padding: 10px;
}
.p-mail__form .name {
  width: 300px;
  height: 40px;
}
.p-mail__form .email {
  width: 300px;
  height: 40px;
}
.p-mail__form .message {
  width: 660px;
  height: 200px;
}
@media screen and (max-width: 640px) {
  .p-mail__form .message {
    width: 250px;
  }
}

@media screen and (max-width: 768px) {
  .p-mail__form .name {
    width: 180px;
  }
  .p-mail__form .email {
    width: 250px;
  }
  .p-mail__form .message {
    width: 495px;
  }
}
@media screen and (max-width: 640px) {
  .p-mail__center {
    padding: 30px;
    width: auto;
  }
  .p-mail__form .name {
    width: 180px;
  }
  .p-mail__form .email {
    width: 250px;
  }
  .p-mail__form .message {
    width: 250px;
  }
}
/* thank */
.p-thank {
  margin: 0 auto;
  padding: 200px 30px 30px;
  width: 800px;
  text-align: center;
}

.p-thank__wrap p {
  padding: 30px 0 30px;
}

@media screen and (max-width: 768px) {
  .p-thank {
    width: 600px;
  }
}
@media screen and (max-width: 640px) {
  .p-thank {
    width: 250px;
    padding: 200px 10px 30px;
  }
}
/* button */
.btn {
  background-color: #F7819F;
  color: #fff;
  font-size: 20px;
  width: 100px;
  text-align: center;
  line-height: 30px;
  margin: 20px 0 20px 0;
  border-radius: 5px;
  border: 1px solid #F7819F;
}

.btn:hover {
  text-decoration: none;
  background-color: #fff;
  color: #F7819F;
  cursor: pointer;
}

.btn-thank {
  background-color: #F7819F;
  color: #fff;
  font-size: 20px;
  width: 100px;
  text-align: center;
  line-height: 30px;
  margin-top: 60px;
  border-radius: 5px;
  border: 1px solid #F7819F;
}

.btn-thank:hover {
  text-decoration: none;
  background-color: #fff;
  color: #F7819F;
  cursor: pointer;
}

.required:after {
  content: "*";
  color: #ff0000;
}

/* Object/Theme ======================================== */
/* Object/Utility ======================================== */