@charset "UTF-8";
/************************************
	reset
************************************/
/* CSS Document */
/*
html5doctor.com Reset Stylesheet v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
*/
acronym, samp,
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, i, a,
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;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
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;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* add */
acronym, samp {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  padding: 0;
  outline: 0;
  vertical-align: baseline;
}

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

a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: inherit;
  text-decoration: none;
}

img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: none;
}

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

/* superscript / subsript */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* touch device */
a, area, button, [role="button"], input:not([type=range]), label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/************************************
	base
************************************/
html {
  height: 100%;
  width: 100%;
}

body {
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 3.73333vw;
  font-weight: 400;
  width: 100%;
}
@media only screen and (min-width: 769px) {
  body {
    font-size: 18px;
  }
}

body a {
  border: none;
  color: #000;
  outline: none;
}

body ul li a {
  display: block;
}

body button,
body input[type="button"],
body input[type="submit"] {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  outline: none;
}

body .btn a {
  display: block;
}

body #wrapper {
  line-height: 1.5;
}

body #wrapper img {
  border: none;
  height: auto;
  margin: auto;
  outline: none;
  width: 100%;
}

/************************************
	page
************************************/
/****** header ******/
.page-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 4vw 6vw;
  width: 100%;
}

@media only screen and (min-width: 769px) {
  .page-header {
    margin-right: auto;
    margin-left: auto;
    max-width: 900px;
    padding: 1em 2em;
  }
}

.page-header img {
  height: auto;
  width: 100%;
}

.page-header .logo {
  position: relative;
  width: 34.66667%;
  z-index: 5;
}

@media only screen and (min-width: 769px) {
  .page-header .logo {
    width: 130px;
  }
}

@media only screen and (max-width: 768px) {
  .page-header .gnav {
    background: #FFF;
    right: 100vw;
    height: 100%;
    opacity: 0;
    position: absolute;
    visibility: hidden;
    top: 0;
    width: 100%;
  }
}

.page-header .gnav-btn {
  height: 4vw;
  position: relative;
  width: 6vw;
}

.page-header .gnav-btn-ic {
  background: #000;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.page-header .gnav-btn::before, .page-header .gnav-btn::after {
  background: #000;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}

.page-header .gnav-btn::before {
  top: 0;
}

.page-header .gnav-btn::after {
  bottom: 0;
}

@media only screen and (min-width: 769px) {
  .page-header .gnav-btn {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .page-header .gnav-list {
    position: relative;
    top: 24vw;
  }
}

@media only screen and (min-width: 769px) {
  .page-header .gnav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 768px) {
  .page-header .gnav-list-item {
    margin-right: auto;
    margin-bottom: 12vw;
    margin-left: auto;
    width: 40%;
  }
}

@media only screen and (min-width: 769px) {
  .page-header .gnav-list-item {
    width: 92px;
  }
}

@media only screen and (min-width: 769px) {
  .page-header .gnav-list-item:not(:last-child) {
    margin-right: 2em;
  }
}

/****** footer ******/
.page-footer {
  background: #000;
  padding: 6vw 4vw;
}
@media only screen and (min-width: 769px) {
  .page-footer {
    padding: 2vw;
  }
}
.page-footer-copyright {
  color: #FFF;
  font-size: .9rem;
  text-align: center;
}

/****** sub ******/
.page-sub {
  background: #F2F2F2;
}

/************************************
	layout
************************************/
.sec {
  margin-bottom: 20vw;
}

@media only screen and (min-width: 769px) {
  .sec {
    margin-bottom: 5em;
  }
}

.sec-inner {
  padding: 0 4vw;
}

@media only screen and (min-width: 769px) {
  .sec-inner {
    margin-right: auto;
    margin-left: auto;
    max-width: 900px;
    padding: 0 2em;
  }
}

@media only screen and (min-width: 769px) {
  .sec-inner.size-full {
    max-width: 100%;
  }
}

/************************************
	module
************************************/
/****** 見出し ******/
.sec-ttl {
  margin-right: auto;
  margin-bottom: 4vw;
  margin-left: auto;
  width: 57.6%;
}

@media only screen and (min-width: 769px) {
  .sec-ttl {
    margin-bottom: 2em;
    width: 216px;
  }
}

.sttl {
  font-size: 4.66667vw;
}

@media only screen and (min-width: 769px) {
  .sttl {
    font-size: 25px;
  }
}

/****** テキスト ******/
.text-box .text {
  font-size: 3.73333vw;
}

@media only screen and (min-width: 769px) {
  .text-box .text {
    font-size: 18px;
  }
}

.text-box .text:not(:last-child) {
  margin-bottom: 4vw;
}

@media only screen and (min-width: 769px) {
  .text-box .text:not(:last-child) {
    margin-bottom: 1em;
  }
}

/****** カラム ******/
.col-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (min-width: 769px) {
  .col-box-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

/****** トピックス ******/
.topics-box-item:not(:last-child) {
  margin-bottom: 12vw;
}

@media only screen and (min-width: 769px) {
  .topics-box-item:not(:last-child) {
    margin-bottom: 3em;
  }
}

.topics-box .image {
  margin-bottom: 4vw;
}

@media only screen and (min-width: 769px) {
  .topics-box .image {
    margin-bottom: 1em;
  }
}

.topics-box .sttl {
  margin-bottom: 4vw;
  text-align: center;
  text-decoration: underline;
}

@media only screen and (min-width: 769px) {
  .topics-box .sttl {
    margin-bottom: 1em;
  }
}

/****** フォーム ******/
.form-box-inner {
  margin-bottom: 8vw;
}

@media only screen and (min-width: 769px) {
  .form-box-inner {
    margin-bottom: 2em;
  }
}

.form-box-item:not(:last-child) {
  margin-bottom: 4vw;
}

@media only screen and (min-width: 769px) {
  .form-box-item:not(:last-child) {
    margin-bottom: 1em;
  }
}

.form-box .must-label::after {
  color: #F00;
  content: "[必須]";
  display: inline-block;
  font-size: .6em;
  margin-left: .5em;
  vertical-align: middle;
}

.form-box .err-message {
  color: #F00;
}

.form-box .mailform-message {
  color: #000;
  padding: .5em;
  text-align: center;
}

.form-input label {
  display: block;
  font-size: 4.66667vw;
  font-weight: 700;
  margin-bottom: 0.25em;
  width: 100%;
}

@media only screen and (min-width: 769px) {
  .form-input label {
    font-size: 25px;
  }
}

.form-input input,
.form-input textarea {
  border: 1px solid #A4A4A4;
  border-radius: .2em;
  font-size: 3.46667vw;
  padding: 1em;
  width: 100%;
}

@media only screen and (min-width: 769px) {
  .form-input input,
  .form-input textarea {
    font-size: 16px;
  }
}

.form-input textarea {
  min-height: 12em;
}

.form-btn {
  width: 100%;
}

@media only screen and (min-width: 769px) {
  .form-btn {
    margin-right: auto;
    margin-left: auto;
    width: 60%;
  }
}

.form-btn input {
  background: #000;
  color: #FFF;
  font-size: 6vw;
  font-weight: 700;
  border-radius: .2em;
  padding: 0.5em 1em;
  width: 100%;
}

@media only screen and (min-width: 769px) {
  .form-btn input {
    font-size: 35px;
  }
}

/************************************
	Theme
************************************/
/****** firstview ******/
.sec#firstview .sec-inner {
  background-image: url(../images/mv-sp.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30vw 8vw;
  text-align: center;
}

@media only screen and (min-width: 769px) {
  .sec#firstview .sec-inner {
    background-image: url(../images/mv.jpg);
    padding: 10vw 2em;
  }
}

.sec#firstview .page-catch {
  color: #FFF;
  font-size: 7.33333vw;
  margin-bottom: 8vw;
}

@media only screen and (min-width: 769px) {
  .sec#firstview .page-catch {
    font-size: 45px;
    margin-bottom: 1em;
  }
}

.sec#firstview .page-catch span {
  background: linear-gradient(to bottom, transparent 0, transparent 14%, #000 15%, #000 100%);
  z-index: -1;
}

.sec#firstview .page-lead {
  color: #FFF;
  font-size: 5.33333vw;
}

@media only screen and (min-width: 769px) {
  .sec#firstview .page-lead {
    font-size: 30px;
  }
}

/****** service ******/
@media only screen and (min-width: 769px) {
  .sec#service .col-box-pc {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 769px) {
  .sec#service .col-box-item {
    width: 48.5%;
  }
}

.sec#service .col-box-item:not(:last-child) {
  margin-bottom: 4vw;
}

@media only screen and (min-width: 769px) {
  .sec#service .col-box-item:not(:last-child) {
    margin-bottom: 1em;
  }
}

.sec#service .col-box-item .image {
  margin-bottom: 2vw;
}

@media only screen and (min-width: 769px) {
  .sec#service .col-box-item .image {
    margin-bottom: 0.5em;
  }
}

.sec#service .col-box-item .sttl {
  margin-bottom: 2vw;
  text-align: center;
}

@media only screen and (min-width: 769px) {
  .sec#service .col-box-item .sttl {
    margin-bottom: 0.5em;
  }
}

/****** about ******/
.sec#about .profile-list {
  line-height: 2;
}

/****** contact ******/
.sec#contact {
  margin-bottom: 0;
  padding: 16vw 0;
}

@media only screen and (min-width: 769px) {
  .sec#contact {
    padding: 4em 0;
  }
}

/************************************
	Object
************************************/
/****** clearfix ******/
.cf::before, .cf::after {
  content: "";
  display: table;
}

.cf::after {
  clear: both;
}

/****** テキスト ******/
/*----- 字間 -----*/
.t-kerning {
  margin-right: -0.5em;
  margin-left: -0.5em;
  position: relative;
}

.t-mark {
  margin-right: -0.5em;
  margin-left: -0.16667em;
  position: relative;
}

.t-comma {
  margin-right: -0.5em;
  position: relative;
}

/*----- 位置 -----*/
.t-bracket {
  margin: 0 .2em;
  position: relative;
  top: -.05em;
}

.ta-l {
  text-align: left;
}

.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

@media only screen and (min-width: 769px) {
  .ta-l-pc {
    text-align: left;
  }
}

@media only screen and (min-width: 769px) {
  .ta-c-pc {
    text-align: center;
  }
}

@media only screen and (min-width: 769px) {
  .ta-r-pc {
    text-align: right;
  }
}

/****** 余白 ******/
/*----- padding -----*/
.pd-0 {
  padding: 0;
}

.pd-b1 {
  padding-bottom: 4vw;
}

@media only screen and (min-width: 769px) {
  .pd-b1 {
    padding-bottom: 1em;
  }
}

.pd-b1h {
  padding-bottom: 6vw;
}

@media only screen and (min-width: 769px) {
  .pd-b1h {
    padding-bottom: 1.5em;
  }
}

.pd-b1h-d {
  padding-bottom: 2.66667vw;
}

@media only screen and (min-width: 769px) {
  .pd-b1h-d {
    padding-bottom: 0.66667em;
  }
}

.pd-b2 {
  padding-bottom: 8vw;
}

@media only screen and (min-width: 769px) {
  .pd-b2 {
    padding-bottom: 2em;
  }
}

.pd-b2-d {
  padding-bottom: 2vw;
}

@media only screen and (min-width: 769px) {
  .pd-b2-d {
    padding-bottom: 0.5em;
  }
}

.pd-t1 {
  padding-top: 4vw;
}

@media only screen and (min-width: 769px) {
  .pd-t1 {
    padding-top: 1em;
  }
}

.pd-t1h {
  padding-top: 6vw;
}

@media only screen and (min-width: 769px) {
  .pd-t1h {
    padding-top: 1.5em;
  }
}

.pd-t1h-d {
  padding-top: 2.66667vw;
}

@media only screen and (min-width: 769px) {
  .pd-t1h-d {
    padding-top: 0.66667em;
  }
}

.pd-t2 {
  padding-top: 8vw;
}

@media only screen and (min-width: 769px) {
  .pd-t2 {
    padding-top: 2em;
  }
}

.pd-t2-d {
  padding-top: 2vw;
}

@media only screen and (min-width: 769px) {
  .pd-t2-d {
    padding-top: 0.5em;
  }
}

/*----- margin -----*/
.mg-0 {
  margin: 0;
}

.mg-b1 {
  margin-bottom: 4vw;
}

@media only screen and (min-width: 769px) {
  .mg-b1 {
    margin-bottom: 1em;
  }
}

.mg-b1h {
  margin-bottom: 6vw;
}

@media only screen and (min-width: 769px) {
  .mg-b1h {
    margin-bottom: 1.5em;
  }
}

.mg-b1h-d {
  margin-bottom: 2.66667vw;
}

@media only screen and (min-width: 769px) {
  .mg-b1h-d {
    margin-bottom: 0.66667em;
  }
}

.mg-b2 {
  margin-bottom: 8vw;
}

@media only screen and (min-width: 769px) {
  .mg-b2 {
    margin-bottom: 2em;
  }
}

.mg-b2-d {
  margin-bottom: 2vw;
}

@media only screen and (min-width: 769px) {
  .mg-b2-d {
    margin-bottom: 0.5em;
  }
}

.mg-t1 {
  margin-top: 4vw;
}

@media only screen and (min-width: 769px) {
  .mg-t1 {
    margin-top: 1em;
  }
}

.mg-t1h {
  margin-top: 6vw;
}

@media only screen and (min-width: 769px) {
  .mg-t1h {
    margin-top: 1.5em;
  }
}

.mg-t1h-d {
  margin-top: 2.66667vw;
}

@media only screen and (min-width: 769px) {
  .mg-t1h-d {
    margin-top: 0.66667em;
  }
}

.mg-t2 {
  margin-top: 8vw;
}

@media only screen and (min-width: 769px) {
  .mg-t2 {
    margin-top: 2em;
  }
}

.mg-t2-d {
  margin-top: 2vw;
}

@media only screen and (min-width: 769px) {
  .mg-t2-d {
    margin-top: 0.5em;
  }
}

/****** 位置 ******/
.pos-float {
  position: absolute;
}

@media only screen and (min-width: 769px) {
  .pos-float-pc {
    position: absolute;
  }
}

/****** 表示 ******/
.d-block {
  display: block;
}

@media only screen and (max-width: 768px) {
  .d-block-sp {
    display: block;
  }
}

@media only screen and (min-width: 769px) {
  .d-block-pc {
    display: block;
  }
}

.hide-sp,
.img-pc {
  display: none;
}

@media only screen and (min-width: 769px) {
  .hide-sp {
    display: block;
  }
  .img-pc {
    display: inline;
  }
  .hide-pc,
  .img-sp {
    display: none;
  }
}

/************************************
	State
************************************/
*[data-elem="scrPoint"] {
  opacity: 0;
  transform: translateY(2em);
  transition: opacity .4s ease-in, transform .4s ease-in;
}

*[data-elem="scrPoint"].is-anim-delay {
  transition: opacity .4s ease-in .2s, transform .4s ease-in .2s;
}

*[data-elem="scrPoint"].is-anim {
  opacity: 1;
  transform: translateY(0);
}

.page-header .gnav-btn-ic {
  transition: width .4s ease-in;
}
.page-header .gnav-btn::before, .page-header .gnav-btn::after {
  transition: top .4s ease-in, transform .4s ease-in;
}
.page-header .gnav-btn::after {
  transition: top .4s ease-in, transform .4s ease-in;
}

@media only screen and (max-width: 768px) {
  .page-header .gnav {
    transition: right .4s ease-in, opacity .4s ease-in, visibility .4s ease-in, index .4s ease-in, z-index .4s ease-in;
  }
}
.page-header.is-active .gnav-btn {
  z-index: 5;
}
.page-header.is-active .gnav-btn-ic {
  width: 0;
}
.page-header.is-active .gnav-btn::before {
  top: 50%;
  transform: translate(-50%,-50%) rotate(45deg);
}

.page-header.is-active .gnav-btn::after {
  top: 50%;
  transform: translate(-50%,-50%) rotate(-45deg);
}
@media only screen and (max-width: 768px) {
  .page-header.is-active .gnav {
    right: 0;
    opacity: 1;
    visibility: visible;
    width: 100%;
    z-index: 3;
  }
}