@charset "UTF-8";
/*-----------------------------------------------------------
===  [ style CSS ]  ====================================
------------------------------------------------------------*/
/* ***************************************************************************** */
/*
  目次
-------------------------------------------------------------------------------
  01. base
      - reset
      - base
  02. layout
      - container
      - header
      - contents
      - main
      - footer
  03. plugin
  04. module
      - module
      - heading
      - list
      - btn
      - form
      - inner
      - contents
  05. pages
      - home
*/
/* ***************************************************************************** */
/** -------------------------------------------------------
 ** reset
 ** ------------------------------------------------------- */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap&subset=japanese");

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,
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,
main {
  /* background: transparent; */
  /* add */
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  /* change */
  /* vertical-align: baseline; */
  vertical-align: top;
}

html {
  /* add */
  overflow-y: scroll;
}

body {
  line-height: 1;
  /* add */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

ul,
ol,
dl {
  /* nav ul delete, ul, ol, dl add */
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  /* add */
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

/* 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;
  /* add */
  empty-cells: show;
}

caption,
th {
  /* add */
  text-align: left;
}

caption {
  /* add */
  font-style: normal;
  font-weight: normal;
}

th {
  /* add */
  font-style: normal;
}

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

input,
select {
  vertical-align: middle;
}

input,
textarea {
  box-sizing: border-box;
  /* add */
  font-size: 100%;
}

input[type="text"],
input[type="password"],
input[type="tel"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  /* add */
  resize: none;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  /* add */
  background-color: transparent;
  cursor: pointer;
}

:disabled {
  opacity: 1;
}

em,
address {
  /* add */
  font-style: normal;
}

sub,
sup {
  /* add */
  font-family: Arial, Helvetica, sans-serif;
  font-size: 75%;
  line-height: 1.0;
}

sup {
  /* add */
  vertical-align: text-top;
}

sub {
  /* add */
  vertical-align: text-bottom;
}

/* ***************************************************************************** */
/** -------------------------------------------------------
 ** base
 ** ------------------------------------------------------- */
/* html
	----------------------------------------------------*/
html {
  font-size: 10px;
}

::-moz-selection {
  background: rgba(240, 151, 46, 0.5);
}

::selection {
  background: rgba(240, 151, 46, 0.5);
}

/* body
	----------------------------------------------------*/
body,
input,
textarea,
select,
button {
  font-family: 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "HIragino Kaku Gothic Pro W3", "HIragino Kaku Gothic Pro", sans-serif;
}

body {
  word-wrap: break-word;
  min-width: 320px;
  background: #F0F0EE;
  color: #333;
  font-size: 1.0rem;
  text-align: center;
  overflow-wrap: break-word;
}

.is-gnav-open body {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* -- link -- */

a:link {
  color: #333;
  text-decoration: underline;
}

a:visited {
  color: #333;
  text-decoration: underline;
}

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

a:active {
  color: #333;
  text-decoration: underline;
}

button {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

button:hover {
  opacity: 0.7;
}

button:disabled {
  cursor: auto;
  -webkit-transition: opacity 0s;
  transition: opacity 0s;
}

button:disabled:hover {
  opacity: 1;
}

/* -- font -- */
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
dt,
dd,
th,
td,
caption,
address,
figcaption,
small,
label,
time,
input,
button,
select {
  font-size: 1.4rem;
  line-height: 1.57;
}

/* -- img -- */
img {
  max-width: 100%;
  height: auto;
}

/* ***************************************************************************** */
/* container
----------------------------------------------------*/
#container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  min-height: 100vh;
  padding: 70px 0 0;
  overflow: hidden;
  text-align: left;
}

/* ***************************************************************************** */
/* header
----------------------------------------------------*/
#header {
  display: -webkit-box;
  display: flex;
  z-index: 500;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  height: 70px;
  padding: 0 20px;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.29);
  -webkit-transition: background 0.3s, box-shadow 0.3s;
  transition: background 0.3s, box-shadow 0.3s;
}

#home #header {
  background: none;
  box-shadow: none;
}

.is-hd-show #home #header {
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.29);
}

#header__logo {
  width: 26.57vw;
  max-width: 110px;
  margin: 0 auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

#home #header__logo {
  display: none;
  opacity: 0;
}

.is-hd-show #home #header__logo {
  display: block;
  opacity: 1;
}

/* header__nav
----------------------------------------------------*/
#header__nav-btn {
  z-index: 600;
  position: absolute;
  top: 12px;
  left: 27px;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 50%;
  cursor: pointer;
}

#header__nav-btn a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

#header__nav-btn a::before,
#header__nav-btn a::after {
  display: block;
  position: absolute;
  width: 18px;
  height: 2px;
  margin: 0;
  background: #000;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#home #header__nav-btn a::before,
#home #header__nav-btn a::after {
  background: #fff;
}

.is-hd-show #home #header__nav-btn a::before,
.is-hd-show #home #header__nav-btn a::after {
  background: #000;
}

#header__nav-btn a::before {
  top: 16px;
  left: 13px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

#header__nav-btn a::after {
  bottom: 16px;
  left: 13px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

#header__nav-btn a span {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-indent: 105%;
  white-space: nowrap;
}

#header__nav-btn a span::before {
  display: block;
  position: absolute;
  top: 21px;
  left: 13px;
  width: 18px;
  height: 2px;
  background: #000;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#home #header__nav-btn a span::before {
  background: #fff;
}

.is-hd-show #home #header__nav-btn a span::before {
  background: #000;
}

.is-gnav-open #header__nav-btn a {
  background: #EFEFEF;
}

.is-gnav-open #header__nav-btn a::before {
  margin: -1px 0 0 3px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.is-gnav-open #header__nav-btn a::after {
  margin: 0 0 -1px 3px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

.is-gnav-open #header__nav-btn a span::before {
  opacity: 0;
}

.is-gnav-open #home #header__nav-btn a::before,
.is-gnav-open #home #header__nav-btn a::after {
  background: #000;
}

.is-gnav-open #home #header__nav-btn a span::before {
  background: #000;
}

#header__nav-box {
  z-index: -1;
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: opacity 0.5s, left 0s linear 0.5s;
  transition: opacity 0.5s, left 0s linear 0.5s;
}

.is-gnav-open #header__nav-box {
  z-index: 500;
  left: 0;
  opacity: 1;
  -webkit-transition: opacity 0.5s, left 0s linear 0s;
  transition: opacity 0.5s, left 0s linear 0s;
}

/* gnav
----------------------------------------------------*/
#gNav {
  width: 100%;
  max-width: 320px;
  height: 100%;
  padding: 120px 20px 40px 40px;
  overflow: auto;
  background: #fff;
  scroll-behavior: smooth;
}

#gNav ul {
  -webkit-transform: translate(0, 10px);
  transform: translate(0, 10px);
  opacity: 0;
  -webkit-transition: opacity 0.5s linear 0.5s, -webkit-transform 0.5s linear 0.5s;
  transition: opacity 0.5s linear 0.5s, -webkit-transform 0.5s linear 0.5s;
  transition: opacity 0.5s linear 0.5s, transform 0.5s linear 0.5s;
  transition: opacity 0.5s linear 0.5s, transform 0.5s linear 0.5s, -webkit-transform 0.5s linear 0.5s;
}

.is-gnav-open #gNav ul {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

#gNav ul li {
  margin: 21px 0 0;
}

#gNav ul li:first-child {
  margin-top: 0;
}

#gNav ul li a {
  text-decoration: none;
}

/* ***************************************************************************** */
/* contents
----------------------------------------------------*/
/* ***************************************************************************** */
/* main
----------------------------------------------------*/
#main {
  padding: 0 20px 24px;
}

/* ***************************************************************************** */
/* footer
----------------------------------------------------*/
#footer {
  position: relative;
  margin: auto 0 0;
  padding: 0;
  clear: both;
}

#footer__pagetop {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
}

#footer__pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: url(/common/img/ico_pagetop01.svg) no-repeat center;
  background-size: contain;
  text-indent: 105%;
  white-space: nowrap;
}

#footer__sns {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 20px;
}

.is-gnav-open #footer__sns {
  opacity: 0.5;
  pointer-events: none;
}

#footer__sns li {
  width: 36px;
  height: 36px;
  margin: 0 0 0 10px;
}

#footer__sns li:first-child {
  margin-left: 0;
}

#footer__sns li a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: no-repeat center;
  background-size: contain;
  text-indent: 105%;
  white-space: nowrap;
}

#footer__sns li.footer__sns__fb a {
  background-image: url(/common/img/ico_fb01.svg);
}

#footer__sns li.footer__sns__tw a {
  background-image: url(/common/img/ico_twitter01.svg);
}

#footer__sns li.footer__sns__yt a {
  background-image: url(/common/img/ico_youtube01.svg);
}

#footer__blc {
  background: #282828;
  color: #fff;
}

#footer__blc a {
  color: #fff;
}

#footer__inner {
  padding: 20px 20px 30px;
}

#footer__logo {
  width: 26.57vw;
  max-width: 110px;
}

#footer__info {
  margin: 15px 0 0;
}

#footer__info>ul {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 30px);
}

#footer__info>ul li {
  margin: 10px 0 0 30px;
  -webkit-transform: translate(-30px, 0);
  transform: translate(-30px, 0);
  font-weight: bold;
}

#footer__info>ul li a {
  text-decoration: none;
}

#footer__info>div {
  margin: 20px 0 0;
}

#footer__copyright {
  font-size: 1.2rem;
}

#footer__link {
  margin: 10px 0 0;
}

/* ***************************************************************************** */
/** -------------------------------------------------------
 ** module
 ** ------------------------------------------------------- */
/* display
----------------------------------------------------*/

/* ***************************************************************************** */
/* heading
----------------------------------------------------*/
/* ttl-blc01
-------------------------*/
.md-ttl-blc01 {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  height: 122px;
  margin: 0 -20px 20px;
  padding: 10px 20px;
  background: #282828;
  color: #fff;
}

.md-ttl-blc01__ttl {
  font-size: 2.4rem;
}

/* ttl01
-------------------------*/
.md-ttl01 {
  margin: 50px 0 12px;
  padding: 0 0 12px;
  border-bottom: 3px solid #707070;
  font-size: 1.6rem;
}

.md-contents02>*:first-child>.md-ttl01:first-child {
  margin-top: 0;
}

/* ***************************************************************************** */
/* list
----------------------------------------------------*/
/* list-notes01
-------------------------*/
.md-list-notes01 {
  margin: 0 0 8px;
}

.md-list-notes01>li {
  font-size: 1.3rem;
  line-height: 1.53;
}

/* list-notes02
-------------------------*/
.md-list-notes02 {
  margin: 18px 0 0;
}

.md-list-notes02>li {
  color: #666;
  line-height: 1.43;
}

/* ***************************************************************************** */
/* btn
----------------------------------------------------*/
/* btn01
-------------------------*/
.md-btn01 a,
.md-btn01 button {
  width: 100%;
  height: 60px;
  border: 3px solid #282828;
  border-radius: 10px;
  background: #fff;
  color: #282828;
  font-size: 1.8rem;
  font-weight: bold;
  -webkit-transition: opacity 0s;
  transition: opacity 0s;
}

.md-btn01 a:hover,
.md-btn01 button:hover {
  background: #282828;
  color: #fff;
}

.md-btn01 a:hover,
.md-btn01 button:hover {
  opacity: 1;
}

.md-btn01 a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-decoration: none;
}

.md-btn01--color01 a,
.md-btn01--color01 button {
  border-color: #FF7600;
  color: #FF7600;
  -webkit-transition: opacity 0s;
  transition: opacity 0s;
}

.md-btn01--color01 a:hover,
.md-btn01--color01 button:hover {
  opacity: 1;
}

.md-btn01--color01 a:hover,
.md-btn01--color01 button:hover {
  background: #fff;
  color: #FF7600;
}

.md-btn01--color02 a,
.md-btn01--color02 button {
  border-color: #777;
  background: #777;
  color: #fff;
}

.md-btn01--color02 a:hover,
.md-btn01--color02 button:hover {
  background: #fff;
  color: #777;
}

.md-btn01--type01 {
  max-width: 270px;
  margin-right: auto;
  margin-left: auto;
}

/* btn-wrap01
-------------------------*/
.md-btn-wrap01 {
  margin: 25px 0 0;
}

/* btn-wrap02
-------------------------*/
.md-btn-wrap02 {
  margin: 85px 0 0;
}

/* btn-layout01
-------------------------*/
.md-btn-layout01 {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}

.md-btn-layout01>* {
  width: 270px;
  margin-left: 20px;
}

.md-btn-layout01>*:first-child {
  width: 200px;
  margin-left: 0;
}

/* ***************************************************************************** */
/* form
----------------------------------------------------*/
/* input-text01
-------------------------*/
.md-input-text01+.md-input-text01 {
  margin-top: 8px;
}

.md-input-text01 input[type="text"] {
  box-sizing: border-box;
  width: 100%;
  height: 38px;
  border: none;
  border-bottom: 1px solid #ccc;
  background: #fff;
  color: #333;
  font-size: 1.6rem;
}

.md-input-text01 input[type="text"]::-webkit-input-placeholder {
  color: #aaa;
}

.md-input-text01 input[type="text"]::-moz-placeholder {
  color: #aaa;
}

.md-input-text01 input[type="text"]:-ms-input-placeholder {
  color: #aaa;
}

.md-input-text01 input[type="text"]::-ms-input-placeholder {
  color: #aaa;
}

.md-input-text01 input[type="text"]::placeholder {
  color: #aaa;
}

.is-input .md-input-text01 input[type="text"] {
  border-bottom-color: #FF0000;
}

.is-noRequired .md-input-text01 input[type="text"] {
  border-bottom-color: #ccc;
}

.md-input-text01__confirm {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  height: auto;
  min-height: 38px;
  padding: 6px 0;
  border-bottom: 1px solid #ccc;
}

/* textarea01
-------------------------*/
.md-textarea01 {
  margin: 25px 0 0;
}

.md-textarea01 textarea {
  box-sizing: border-box;
  width: 100%;
  height: 200px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.is-input .md-textarea01 textarea {
  border-color: #FF0000;
}

/* radio01
-------------------------*/
.md-radio01 {
  margin: -20px -20px 0;
  padding: 20px;
  background: #C9931A;
  color: #fff;
}

.md-radio01.is-noRequest {
  background: #0A7773;
}

.md-radio01 li {
  margin: 10px 0 0 0;
  font-size: 1.6rem;
  font-weight: bold;
}

.md-radio01 li:first-child {
  margin-top: 0;
}

.md-radio01 li input[type="radio"] {
  display: none;
}

.md-radio01 li label {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 0 0 26px;
  cursor: pointer;
}

.md-radio01 li label::before {
  box-sizing: border-box;
  display: inline-block;
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  content: "";
}

.md-radio01 li label::after {
  display: inline-block;
  position: absolute;
  top: calc(0.15em + 5px);
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
}

.md-radio01 li input:checked+label::after {
  background: #fff;
}

/* form-layout01
-------------------------*/
.md-form-layout01 {
  margin: 31px 0 0;
}

.md-form-layout01:first-child {
  margin-top: 0;
}

.md-form-layout01 dt {
  font-size: 1.6rem;
  font-weight: bold;
}

.md-form-layout01 dd {
  margin: 11px 0 0;
}

.md-form-layout01__required {
  display: none;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  min-width: 38px;
  height: 24px;
  margin: 0 0 0 10px;
  padding: 1px 6px;
  border-radius: 4px;
  background: #F0972E;
  color: #fff;
  font-size: 1.3rem;
}

.md-form-layout01.is-input .md-form-layout01__required {
  display: -webkit-inline-box;
  display: inline-flex;
}

.md-form-layout01.is-noRequired .md-form-layout01__required {
  display: none;
}

.md-form-layout01__status {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  min-width: 38px;
  height: 24px;
  margin: 0 0 0 10px;
  padding: 1px 6px;
  border-radius: 4px;
  background: #4EA030;
  color: #fff;
  font-size: 1.3rem;
}

.md-form-layout01.is-input .md-form-layout01__status {
  display: none;
}

.md-form-layout01.is-noRequired .md-form-layout01__status {
  display: none;
}

/* btn
-------------------------*/
.md-btn-on {
  display: none;
}

.is-valid .md-btn-on {
  display: block;
}

.is-valid .md-btn-off {
  display: none;
}

.md-contents02--type01 .md-form-layout01:first-child dt {
  display: none;
}

.md-contents02--type01 .md-form-layout01:first-child dd {
  margin: 0;
  font-size: 1.6rem;
  font-weight: bold;
}

.md-contents02--type01 .md-form-layout01:first-child dd .md-input-text01__confirm {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  -webkit-box-pack: center;
  justify-content: center;
  height: auto;
  min-height: none;
  margin: -20px -20px 0;
  padding: 20px;
  border-bottom: none;
  background: #C9931A;
  color: #fff;
}

.md-contents02--type01 .md-form-layout01:first-child dd .md-input-text01__confirm.is-noRequest {
  background: #0A7773;
}

/* ***************************************************************************** */
/* inner
----------------------------------------------------*/
/* inner01
-------------------------*/

/* ***************************************************************************** */
/* contents
----------------------------------------------------*/
/* contents01
-------------------------*/
.md-contents01 {
  padding: 10px 16px;
  border-radius: 5px;
  background: #fff;
}

.md-contents02+.md-contents01 {
  margin-top: 20px;
}

/* contents02
-------------------------*/
.md-contents02 {
  margin: 0 -20px;
  padding: 20px 20px 22px;
  background: #fff;
}

.md-contents01+.md-contents02 {
  margin-top: 20px;
}

.md-contents02--type01 {
  padding-bottom: 62px;
}

/* ***************************************************************************** */
/* regular
----------------------------------------------------*/
/* regular-blc01
-------------------------*/
.md-regular-blc01 p {
  margin: 25px 0 0;
}

.md-regular-blc01 p:first-child {
  margin-top: 0;
}

/* ***************************************************************************** */
/* home
----------------------------------------------------*/
#home {
  background: #fff;
}

#home #container {
  padding-top: 0;
}

#home #main {
  padding-right: 0;
  padding-bottom: 20px;
  padding-left: 0;
}

#home .home_modal-wrap01 {
  position: relative;
}

#home .home_modal01 {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

#home .home_modal01>div {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

#home .is-modal-show01.home_modal01 {
  z-index: 3;
  background: #000;
}

#home .is-modal-show01.home_modal01>div {
  opacity: 1;
}

#home .home_modal-thumb01 {
  z-index: 2;
  position: relative;
}

#home .home-mv {
  padding: 38.64vw 16px 0;
  background: url(/img/home_bg_mv01_sp.jpg) no-repeat center top;
  background-size: 100% auto;
}

#home .home-mv h1 {
  width: 50vw;
  max-width: 207px;
}

#home .home-mv p {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin: 12px 0 0;
  font-size: 2.2rem;
  font-weight: bold;
}

#home .home-mv p>span {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin: 5px 0 0;
  font-size: 1.4rem;
  font-weight: normal;
}

#home .home-mv p>span::before {
  display: inline-block;
  width: 100%;
  height: 1px;
  margin: 0 11px 0 0;
  background: #333;
  content: "";
}

#home .home-mv p>span span {
  -webkit-box-flex: 0;
  flex-grow: 0;
  flex-shrink: 0;
}

#home .home-make {
  position: relative;
  margin: 27.77vw 0 0;
  padding: 0 16px calc(6.76vw + 30px);
  background: #F5F5F5;
}

#home .home-make:before {
  display: block;
  z-index: 4;
  position: absolute;
  top: -13.88vw;
  left: -50vw;
  width: 200vw;
  height: 27.77vw;
  -webkit-transform: rotate(-14deg);
  transform: rotate(-14deg);
  background: #F5F5F5;
  content: "";
}

#home .home-make__inner {
  z-index: 5;
  position: relative;
}

#home .home-make p {
  line-height: 1.71;
}

#home .home-make__blc01>div+div {
  margin: 20px 0 0;
}

#home .home-make__movie01 {
  position: relative;
}

#home .home-make__movie-child01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#home .home-make h2 {
  font-size: 2.2rem;
  line-height: 1.45;
}

#home .home-make h2 span {
  display: inline-block;
  margin-left: -0.5em;
}

#home .home-make__txt01 {
  margin: 5px 0 0;
}

#home .home-make__txt01::before {
  display: inline-block;
  width: 32px;
  height: 2px;
  margin: -0.2em 10px 0 0;
  background: #F0972E;
  vertical-align: middle;
  content: "";
}

#home .home-make__txt01 a {
  text-decoration: none;
}

#home .home-make__play01 {
  display: block;
  position: relative;
}

#home .home-make__play01::after {
  display: block;
  position: absolute;
  top: calc(50% - 27px);
  left: calc(50% - 38px);
  width: 76px;
  height: 54px;
  background: url(/common/img/ico_play01.svg) no-repeat center;
  background-size: contain;
  content: "";
}

#home .home-make__blc02 {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
  margin: 30px 0 0;
}

#home .home-make__blc02>div:first-child {
  max-width: 334px;
}

#home .home-make__blc02>div+div {
  margin: 0 -16px;
}

#home .home-make h3 {
  margin: 20px 0 15px;
  font-size: 2.2rem;
  line-height: 1.45;
}

#home .home-make__blc03 {
  margin: 30px 0 0;
}

#home .home-make__blc03>div:first-child {
  max-width: 334px;
}

#home .home-make__blc03>div+div {
  margin: 25px 0 0;
}

#home .home-make__blc04 {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
  margin: 30px 0 0;
}

#home .home-make__blc04>div:first-child {
  max-width: 334px;
}

#home .home-make__blc05 {
  margin: 30px 0 0;
}

#home .home-make__blc05>div:first-child {
  max-width: 334px;
}

#home .home-make__blc05>div+div {
  margin: 25px 0 0;
}

#home .home-message {
  position: relative;
  padding: 21px 16px 30px;
  background: #F0972E;
  color: #fff;
}

#home .home-message:before {
  display: block;
  z-index: 6;
  position: absolute;
  top: -3.53vw;
  left: -50vw;
  width: 200vw;
  height: 13.04vw;
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
  background: #F0972E;
  content: "";
}

#home .home-message:after {
  display: block;
  z-index: 7;
  position: absolute;
  bottom: -3.53vw;
  left: -50vw;
  width: 200vw;
  height: 13.04vw;
  -webkit-transform: rotate(4deg);
  transform: rotate(4deg);
  background: #F0972E;
  content: "";
}

#home .home-message__inner {
  z-index: 8;
  position: relative;
}

#home .home-message h2 {
  margin: 0 0 25px;
  font-size: 2.2rem;
  line-height: 1.45;
  text-align: center;
}

#home .home-message h2::after {
  display: block;
  width: 80px;
  height: 5px;
  margin: 25px auto 0;
  background: #fff;
  content: "";
}

#home .home-message__txt01 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.75;
}

#home .home-message__blc01 {
  margin: 25px 0 0;
  padding: 20px 20px 25px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.29);
  color: #333;
}

#home .home-message h3 {
  margin: 0 0 15px;
  font-size: 1.8rem;
}

#home .home-message__txt02 {
  line-height: 1.42;
}

#home .home-message__txt03 {
  margin: 15px 0 0;
  font-size: 1.2rem;
  line-height: 1.5;
}

#home .home-message__blc02 {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin: 20px 0 0;
}

#home .home-message__blc02>div {
  text-align: center;
}

#home .home-message__blc02>div:nth-of-type(1) {
  width: 33.57vw;
  max-width: 139px;
}

#home .home-message__blc02>div:nth-of-type(2) {
  width: 25.6vw;
  max-width: 106px;
}

#home .home-message__blc02>div:nth-of-type(3) {
  width: 25.6vw;
  max-width: 106px;
}

#home .home-message__blc02>div a {
  display: block;
  color: #fff;
}

#home .home-message__blc02>div span {
  display: block;
  margin: 10px 0 0;
  font-size: 1.2rem;
  line-height: 1.33;
}

#home .home-message__blc03 {
  margin: 20px 0 0;
}

#home .home-message__blc03 p {
  margin: 1px 0 0;
  padding: 13px 13px 15px;
  background: #fff;
}

#home .home-message__blc03 p span {
  display: block;
  margin: 0 auto;
  color: #707070;
  text-align: center;
}

#home .home-message__blc03 p span:first-child {
  width: 28.9vw;
  max-width: 120px;
}

#home .home-message__blc03 p span:last-child {
  margin: 10px 0 0;
}

#home .home-project {
  position: relative;
  padding: calc(6.52vw + 10px) 16px 28px;
  background: #F5F5F5;
}

#home .home-project:after {
  display: block;
  z-index: 9;
  position: absolute;
  bottom: -3.53vw;
  left: -50vw;
  width: 200vw;
  height: 13.04vw;
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
  background: #F5F5F5;
  content: "";
}

#home .home-project__inner {
  z-index: 10;
  position: relative;
}

#home .home-project h2 {
  margin: 0 0 23px;
  font-size: 2.2rem;
  line-height: 1.45;
  text-align: center;
}

#home .home-project h2::after {
  display: block;
  width: 80px;
  height: 5px;
  margin: 15px auto 0;
  background: #333;
  content: "";
}

#home .home-project__blc01 {
  width: calc(100% + 32px);
  margin: 0 -16px;
  overflow: auto;
}

#home .home-project__blc01>div {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 1076px;
  padding: 0 16px;
}

#home .home-project__blc01>div section {
  -webkit-box-flex: 0;
  flex-grow: 0;
  flex-shrink: 0;
  width: 249px;
  padding: 0 20px 20px;
  background: #fff;
}

#home .home-project__blc01>div section h3 {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  height: 66px;
  font-size: 1.8rem;
}

#home .home-project__blc01>div section>div {
  margin: 0 -20px;
}

#home .home-project__blc01>div section p {
  margin: 20px 0 0;
  line-height: 1.42;
}

#home .home-voice {
  position: relative;
  padding: calc(6.76vw + 25px) 16px 30px;
  background: #282828;
  color: #fff;
}

#home .home-voice:after {
  display: block;
  z-index: 11;
  position: absolute;
  bottom: -3.38vw;
  left: -50vw;
  width: 200vw;
  height: 13.04vw;
  -webkit-transform: rotate(4deg);
  transform: rotate(4deg);
  background: #282828;
  content: "";
}

#home .home-voice__inner {
  z-index: 12;
  position: relative;
}

#home .home-voice h2 {
  margin: 0 0 30px;
  font-size: 2.2rem;
  line-height: 1.45;
  text-align: center;
}

#home .home-voice h2::after {
  display: block;
  width: 80px;
  height: 5px;
  margin: 15px auto 0;
  background: #fff;
  content: "";
}

#home .home-voice__txt01 {
  margin: 20px 0 0;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}

#home .home-voice__txt02 {
  margin: 20px 0 0;
  line-height: 1.71;
}

#home .home-flow {
  position: relative;
  padding: calc(6.76vw + 25px) 16px 30px;
  background: #1975A5;
  color: #fff;
}

#home .home-flow:after {
  display: block;
  z-index: 13;
  position: absolute;
  bottom: -3.38vw;
  left: -50vw;
  width: 200vw;
  height: 13.04vw;
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
  background: #1975A5;
  content: "";
}

#home .home-flow__inner {
  z-index: 14;
  position: relative;
}

#home .home-flow h2 {
  margin: 0 0 30px;
  font-size: 2.2rem;
  line-height: 1.45;
  text-align: center;
}

#home .home-flow h2::after {
  display: block;
  width: 80px;
  height: 5px;
  margin: 15px auto 0;
  background: #fff;
  content: "";
}

#home .home-flow__blc01>section {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  min-height: 210px;
  margin: 20px 0 0;
  padding: 0 20px 0 25px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.29);
  color: #333;
}

#home .home-flow__blc01>section>p {
  padding: 25px 0;
  color: #1975A5;
  font-family: Arial, serif;
  font-size: 3.8rem;
  font-weight: bold;
}

#home .home-flow__blc01>section>div {
  margin: 0 0 0 34px;
  padding: 25px 0 40px;
}

#home .home-flow__blc01>section>div h3 {
  margin: 0 0 15px;
  color: #1975A5;
  font-size: 2.0rem;
}

#home .home-flow__blc01>section>div p {
  width: 57.9vw;
  max-width: 241px;
  line-height: 1.42;
}

#home .home-flow__blc01>section>div ul {
  width: 57.9vw;
  max-width: 241px;
  margin: 8px 0 0;
}

#home .home-flow__blc01>section>div ul li {
  line-height: 1.42;
}

#home .home-price {
  padding: calc(6.76vw + 16px) 16px 0;
  background: url(/img/home_bg_price01.svg) no-repeat center top 41.06vw;
  background-size: 145.89vw auto;
}

#home .home-price h2 {
  margin: 0 0 30px;
  font-size: 2.2rem;
  line-height: 1.45;
  text-align: center;
}

#home .home-price h2::after {
  display: block;
  width: 80px;
  height: 5px;
  margin: 15px auto 0;
  background: #333;
  content: "";
}

#home .home-price__txt01 {
  line-height: 1.71;
}

#home .home-price__txt02 {
  margin: 40px 0 0;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.77;
  text-align: center;
}

#home .home-price__btn01 {
  margin: 15px 0 0;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.33;
}

#home .home-price__btn01 a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 18px 10px;
  border: 3px solid #FFFFFF;
  border-radius: 5px;
  background: transparent -webkit-linear-gradient(top, #E6C229 0%, #AD7213 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #E6C229 0%, #AD7213 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.66);
}

#home .home-contact {
  display: block;
  z-index: 50;
  position: fixed;
  top: 10.66%;
  right: 0;
  width: 22.46vw;
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -webkit-transition: -webkit-transform 1.0s;
  transition: -webkit-transform 1.0s;
  transition: transform 1.0s;
  transition: transform 1.0s, -webkit-transform 1.0s;
}

.is-hd-show #home .home-contact {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

#home .js-fadeIn {
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
  opacity: 0;
  -webkit-transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, transform 1.5s;
  transition: opacity 1.5s, transform 1.5s, -webkit-transform 1.5s;
}

#home .js-fadeIn.is-fadeIn {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

#home .js-slideIn01 {
  -webkit-transform: translate(-20px, 0);
  transform: translate(-20px, 0);
  opacity: 0;
  -webkit-transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, transform 1.5s;
  transition: opacity 1.5s, transform 1.5s, -webkit-transform 1.5s;
}

#home .js-slideIn01.is-fadeIn {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

#home .js-slideIn02 {
  -webkit-transform: translate(20px, 0);
  transform: translate(20px, 0);
  opacity: 0;
  -webkit-transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, transform 1.5s;
  transition: opacity 1.5s, transform 1.5s, -webkit-transform 1.5s;
}

#home .js-slideIn02.is-fadeIn {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

@media print,
screen and (min-width: 751px) {
  body {
    min-width: 1126px;
  }

  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  a:hover {
    opacity: 0.7;
  }

  a:hover {
    text-decoration: none;
  }

  a:active {
    text-decoration: none;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  li,
  dt,
  dd,
  th,
  td,
  caption,
  address,
  figcaption,
  small,
  label,
  time,
  input,
  button,
  select {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  #container {
    padding-top: 100px;
  }

  #header {
    height: 100px;
    padding: 0;
  }

  #header__logo {
    width: 156px;
    max-width: none;
  }

  #header__nav-btn {
    top: 27px;
    left: 32px;
  }

  .is-gnav-open #header__nav-btn a {
    background: none;
  }

  #gNav ul li {
    font-size: 1.4rem;
  }

  #main {
    padding: 0 0 120px;
  }

  .main__inner01 {
    width: 1086px;
    margin: 0 auto;
  }

  #footer__pagetop {
    top: -110px;
    right: 30px;
    width: 80px;
    height: 80px;
  }

  #footer__sns {
    z-index: 501;
    position: fixed;
    top: 32px;
    right: 50px;
    padding: 0;
  }

  #footer__inner {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    width: 1086px;
    margin: 0 auto;
    padding: 19px 43px 20px 4px;
  }

  #footer__logo {
    width: 156px;
    max-width: none;
  }

  #footer__info>ul {
    -webkit-box-pack: end;
    justify-content: flex-end;
    width: auto;
  }

  #footer__info>ul li {
    margin-top: 0;
    -webkit-transform: none;
    transform: none;
    font-size: 1.4rem;
  }

  #footer__info>ul li:first-child {
    margin-left: 0;
  }

  #footer__info>div {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    margin-top: 10px;
  }

  #footer__link {
    margin: 0 0 0 20px;
    font-size: 1.4rem;
  }

  .md-sp {
    display: none;
  }

  .md-ttl-blc01 {
    margin: 0 0 35px;
  }

  .md-ttl01 {
    margin: 25px 0 10px;
    padding-bottom: 10px;
    font-size: 1.8rem;
  }

  .md-list-notes02 {
    margin-top: 40px;
  }

  .md-list-notes02>li {
    line-height: 1.5;
    text-align: center;
  }

  .md-input-text01--type01 {
    width: 294px;
  }

  .md-radio01 {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    margin: -20px -34px 0;
    border-radius: 5px 5px 0 0;
  }

  .md-radio01 li {
    margin: 0 0 0 20px;
  }

  .md-radio01 li:first-child {
    margin-left: 0;
  }

  .md-contents02--type01 .md-form-layout01:first-child dd .md-input-text01__confirm {
    margin: -20px -34px 0;
    border-radius: 5px 5px 0 0;
  }

  .md-inner01 {
    width: 1086px;
    margin: 0 auto;
  }

  .md-contents01 {
    padding: 23px 30px;
  }

  .md-contents02+.md-contents01 {
    margin-top: 55px;
  }

  .md-contents02 {
    margin: 0;
    padding: 20px 34px 35px;
    border-radius: 5px;
  }

  .md-contents01+.md-contents02 {
    margin-top: 26px;
  }

  .md-contents02--type01 {
    padding-bottom: 75px;
  }

  .md-regular-blc01 ul {
    margin-top: 10px;
  }

  #home #main {
    padding-bottom: 0;
  }

  #home .home_modal01 {
    -webkit-transition: background 0.3s, width 0.3s, height 0.3s, top 0.3s;
    transition: background 0.3s, width 0.3s, height 0.3s, top 0.3s;
  }

  #home .is-modal-show01.home_modal01 {
    top: calc(50% - 305px);
    width: 1086px;
    height: 610px;
  }

  #home .home_modal-thumb01 {
    opacity: 1;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
  }

  #home .home_modal-thumb01:hover {
    opacity: 0.7;
  }

  #home .is-modal-show01.home_modal01+.home_modal-thumb01 {
    opacity: 0;
  }

  #home .home-mv {
    z-index: 5;
    position: relative;
    min-height: 685px;
    padding: 335px 0 45px;
    background: url(/img/home_bg_mv01_pc.png) no-repeat center bottom;
    background-size: cover;
  }

  #home .home-mv>div {
    width: 1086px;
    margin: 0 auto;
  }

  #home .home-mv h1 {
    width: 406px;
    max-width: none;
  }

  #home .home-mv p {
    margin-top: 22px;
    font-size: 4.7rem;
  }

  #home .home-mv p>span {
    font-size: 2.9rem;
  }

  #home .home-make {
    margin-top: 0;
    padding: 0 0 calc(6.66vw + 74px);
  }

  #home .home-make__inner {
    z-index: 7;
    width: 1086px;
    margin: 0 auto;
    padding-top: 64px;
  }

  #home .home-make__blc01 {
    display: -webkit-box;
    display: flex;
    z-index: 2;
    position: relative;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  #home .home-make__blc01>div {
    width: 528px;
  }

  #home .home-make__blc01>div+div {
    margin-top: 0;
  }

  #home .home-make h2 {
    font-size: 4.0rem;
    line-height: 1.2;
  }

  #home .home-make__txt01 {
    margin-top: 30px;
    font-size: 1.4rem;
  }

  #home .home-make__blc02 {
    z-index: 1;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-top: 59px;
  }

  #home .home-make__blc02>div {
    width: 528px;
  }

  #home .home-make__blc02>div:first-child {
    max-width: none;
  }

  #home .home-make__blc02>div+div {
    width: 668px;
    margin: 0;
    margin-left: -140px;
  }

  #home .home-make h3 {
    margin: 0 0 25px;
    font-size: 4.0rem;
    line-height: 1.2;
  }

  #home .home-make__txt02 {
    font-size: 1.8rem;
    line-height: 1.55;
  }

  #home .home-make__blc03 {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-top: 49px;
  }

  #home .home-make__blc03>div {
    width: 528px;
  }

  #home .home-make__blc03>div:first-child {
    width: 435px;
    max-width: none;
  }

  #home .home-make__blc03>div+div {
    width: 668px;
    margin: 0 -47px 0 0;
  }

  #home .home-make__blc04 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-top: 96px;
  }

  #home .home-make__blc04>div {
    width: 528px;
  }

  #home .home-make__blc04>div:first-child {
    width: 565px;
    max-width: none;
    margin-right: -37px;
  }

  #home .home-make__blc05 {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-top: 86px;
  }

  #home .home-make__blc05>div {
    width: 528px;
  }

  #home .home-make__blc05>div:first-child {
    max-width: none;
    padding-top: 10px;
  }

  #home .home-make__blc05>div+div {
    margin-top: 0;
  }

  #home .home-make__blc05>div .home-make__txt01 {
    margin-top: 15px;
  }

  #home .home-message {
    padding: 21px 0 43px;
  }

  #home .home-message:before {
    height: 13.32vw;
  }

  #home .home-message:after {
    height: 13.32vw;
  }

  #home .home-message__inner {
    width: 1086px;
    margin: 0 auto;
  }

  #home .home-message h2 {
    margin-bottom: 35px;
    font-size: 4.2rem;
    line-height: 1.23;
  }

  #home .home-message h2::after {
    margin-top: 42px;
  }

  #home .home-message__txt01 {
    font-size: 2.4rem;
    line-height: 1.66;
    text-align: center;
  }

  #home .home-message__blc-wrap01 {
    margin-top: 70px;
  }

  #home .home-message__blc-wrap01:after {
    display: block;
    clear: both;
    content: "";
  }

  #home .home-message__blc01 {
    width: 342px;
    height: 398px;
    margin-top: 0;
    padding: 20px 23px 25px 27px;
    float: left;
  }

  #home .home-message__txt02 {
    font-size: 1.4rem;
  }

  #home .home-message__blc02 {
    display: block;
  }

  #home .home-message__blc02>div {
    margin-left: 30px;
    float: left;
  }

  #home .home-message__blc02>div:nth-of-type(1) {
    width: 249px;
    max-width: none;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  #home .home-message__blc02>div:nth-of-type(2) {
    width: 156px;
    max-width: none;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }

  #home .home-message__blc02>div:nth-of-type(3) {
    width: 156px;
    max-width: none;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }

  #home .home-message__blc02>div span {
    font-size: 1.4rem;
  }

  #home .home-message__blc03 {
    position: relative;
    width: 714px;
    margin-top: 37px;
    float: right;
  }

  #home .home-message__blc03 p {
    display: -webkit-box;
    display: flex;
    z-index: 2;
    position: absolute;
    top: 129px;
    left: -186px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 249px;
    height: 249px;
    border-radius: 4px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.29);
    font-size: 1.4rem;
  }

  #home .home-message__blc03 p span:first-child {
    width: 156px;
    max-width: none;
  }

  #home .home-project {
    padding: calc(6.66vw + 16px) 0 52px;
  }

  #home .home-project:after {
    height: 13.32vw;
  }

  #home .home-project__inner {
    width: 1086px;
    margin: 0 auto;
  }

  #home .home-project h2 {
    margin-bottom: 54px;
    font-size: 3.4rem;
  }

  #home .home-project__blc01 {
    width: 100%;
    margin: 0;
    overflow: inherit;
  }

  #home .home-project__blc01>div {
    width: 100%;
    padding: 0;
  }

  #home .home-project__blc01>div section:nth-of-type(2) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  #home .home-project__blc01>div section:nth-of-type(3) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }

  #home .home-project__blc01>div section:nth-of-type(4) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }

  #home .home-project__blc01>div section p {
    font-size: 1.4rem;
    line-height: 1.42;
  }

  #home .home-voice {
    padding: calc(6.66vw + 23px) 0 69px;
  }

  #home .home-voice:after {
    height: 13.32vw;
  }

  #home .home-voice__inner {
    width: 1086px;
    margin: 0 auto;
  }

  #home .home-voice__inner>div {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  #home .home-voice__inner>div div {
    width: 528px;
  }

  #home .home-voice__inner>div div:first-child {
    width: 668px;
    margin-left: -140px;
  }

  #home .home-voice h2 {
    margin-bottom: 65px;
    font-size: 3.4rem;
  }

  #home .home-voice__txt01 {
    margin-top: 0;
    font-size: 2.2rem;
    text-align: left;
  }

  #home .home-voice__txt02 {
    margin-top: 25px;
    line-height: 1.87;
  }

  #home .home-flow {
    padding: calc(6.66vw + 5px) 0 50px;
  }

  #home .home-flow:after {
    height: 13.32vw;
  }

  #home .home-flow__inner {
    width: 1086px;
    margin: 0 auto;
  }

  #home .home-flow h2 {
    margin-bottom: 66px;
    font-size: 3.4rem;
    line-height: 1.41;
  }

  #home .home-flow__blc01 {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  #home .home-flow__blc01>section {
    display: block;
    width: 342px;
    min-height: 210px;
    margin-top: 30px;
    padding: 15px 20px;
  }

  #home .home-flow__blc01>section:nth-of-type(-n+3) {
    margin-top: 0;
  }

  #home .home-flow__blc01>section:nth-of-type(2),
  #home .home-flow__blc01>section:nth-of-type(5),
  #home .home-flow__blc01>section:nth-of-type(8) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  #home .home-flow__blc01>section:nth-of-type(3),
  #home .home-flow__blc01>section:nth-of-type(6),
  #home .home-flow__blc01>section:nth-of-type(9) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }

  #home .home-flow__blc01>section>p {
    padding: 0;
    line-height: 1;
    text-align: center;
  }

  #home .home-flow__blc01>section>div {
    margin-left: 0;
    padding: 0;
  }

  #home .home-flow__blc01>section>div h3 {
    margin: 8px 0 15px;
    text-align: center;
  }

  #home .home-flow__blc01>section>div p {
    width: auto;
    max-width: none;
    font-size: 1.4rem;
  }

  #home .home-flow__blc01>section>div ul {
    width: auto;
    max-width: none;
    margin-top: 5px;
  }

  #home .home-flow__blc01>section>div ul li {
    font-size: 1.4rem;
  }

  #home .home-price {
    padding: calc(6.66vw + 13px) 0 174px;
    background-position: center top 160px;
    background-size: 1459px auto;
  }

  #home .home-price__inner {
    width: 1086px;
    margin: 0 auto;
  }

  #home .home-price h2 {
    margin-bottom: 40px;
    font-size: 3.4rem;
  }

  #home .home-price__txt01 {
    width: 714px;
    margin: 0 auto;
    line-height: 1.5;
  }

  #home .home-price__txt02 {
    margin-top: 85px;
    font-size: 2.2rem;
    line-height: 1.54;
  }

  #home .home-price__btn01 {
    width: 900px;
    margin: 15px auto 0;
  }

  #home .home-price__btn01 a {
    height: 100px;
  }

  #home .home-contact {
    top: calc(50% - 165px);
    width: 203px;
  }
}

@media screen and (max-width: 750px) {
  .md-pc {
    display: none;
  }
}
