@charset "utf-8";

/*----------------------------------------------------------------------------
   expression
------------------------------------------------------------------------------*/

.inner {
    width: 100%;
    max-width: 1128px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width:1200px) {
    .inner {
        width: calc(100% - 72px);
        margin-left: 36px;
        margin-right: 36px;
    }
}

.img-btn {
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.img-btn::before {
    content: "";
    display: block;
}
.img-btn figure {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
}
.img-btn figure img {
    display: block;
    transition: .3s;
}
.img-btn figure figcaption {
    position: relative;
    transition: .3s ease-out;
    transform: translate3d(0,100%,0);
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: rgba(0,0,0,.5);
}
.img-btn .desc {
    position: absolute;
    left:0%;
    top:50%;
    transform: translate(0%,-50%);
    width: 100%;
    text-align: center;
    margin: 0 auto;
}
.img-btn figure .desc p {
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
}
.img-btn figure .p-btn {
    border:2px solid #fff;
}
.img-btn figure .p-btn .p-arrow {
    margin-left: .75em;
}

.img-btn:hover figcaption {
    transform: translate3d(0,-100%,0);
}


/*----------------------------------------------------------------------------
   header
------------------------------------------------------------------------------*/
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 1126px;
    height: 110px;
    margin: 0 auto;
    background-color: rgba(255,255,255,.75);
    overflow: hidden;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

header .logo {
    display: block;
    width: 290px;
    height: 110px;
    box-sizing: border-box;
    background: url("../image/header/logo.png") center no-repeat #f2909e;
}
header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 290px);
    padding: 15px 0;
    box-sizing: border-box;
    text-align: center;
}
header nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    height: 80px;
    border-right: 1px solid #999;
    color: inherit;
    text-decoration: none;
    line-height: 1.2;
    transition: .2s all;
}
header nav a:last-of-type {
    border-right: none;
}
header nav a:hover {
    color: #f2909e;
}

@media screen and (max-width:1200px) {
    header {
        font-size: 14px;
        width: calc(100% - 48px);
    }
}

@media screen and (max-width:1000px) {
    header {
        height: 83px;
    }
    header .logo {
        width: 218px;
        height: 83px;
        background-size: 188px 51px;
    }
    header nav {
        width: calc(100% - 218px);
        padding: 10px 0;
    }
    header nav a {
        height: 60px;
    }
}

@media screen and (max-width:900px) {
    header {
        width: 290px;
        height: 110px;
        background: none;
        margin-left: 24px;
    }
    header .logo {
        width: 290px;
        height: 110px;
        background-size: auto;
    }
    header nav {
        display: none;
    }
}


/*------------------------------------------------------------------------------------------------------------------
　sidebar
------------------------------------------------------------------------------------------------------------------*/

.sidebar {
	display: none;
	position: fixed;
	top: 0;
    right: -100%;
	z-index: 100;
	transition: 0.3s;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 30px;
    overscroll-behavior: none;
    background: rgba(0,0,0,0);
}
.sidebar.active {
    right: 0;
}

.sidebar nav {
	position: fixed;
	top: 0;
    right: -320px;
	z-index: 100;
	transition: 0.3s;
	width: 100%;
	height: 100%;
    max-width: 310px;
	box-sizing: border-box;
	padding: 30px;
    overflow-y: scroll;
    background: #fcf0f2;
    box-shadow: 0 0 8px #999;
}
.sidebar.active nav {
    display: block;
	right: 0;
}
.sidebar nav ul {
    list-style: none;
    border-top: 1px solid #f2909e;
}
.sidebar nav li {
    border-bottom: 1px solid #f2909e;
}
.sidebar nav li a {
    display: block;
    padding: 1em 0;
    color: inherit;
    text-decoration: none;
    font-weight: bold;
}

.sidebar .sd-contact {
    display: block;
    width: 100%;
    padding: 1em 0;
    margin-top: 1em;
    background-color: #3c92e2;
    border-radius: .5em;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 1.2;
}


.sidebar-button {
	display: none;
	position: fixed;
	top: 8px;
	right: 12px;
    z-index: 101;
    width: 96px;
    height: 96px;
	background-color: #f2909e;
	box-sizing: border-box;
	padding-top: 18px;
	padding-left: 15px;
    border-radius: 12px;
	transition: 0.3s;
}

.sidebar-button.active {
	right: 330px;
}

.sidebar-button button {
	transform: scale(0.8,0.8);
	transform-origin: center;
}

@media screen and (max-width: 900px) {
	.sidebar {
		display: block;
	}
	.sidebar-button {
		display: block;
	}
}

@media screen and (max-width:750px) {
    .ua-sp .sidebar-button {
        top: 20px;
        right: 20px;
    }
    .ua-sp .sidebar-button.active {
        right: 330px;
    }
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
    position: relative;
    width: 72px;
    height: 56px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 26px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger span:nth-of-type(1) {
  animation: menu-bar01 .5s forwards;
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(26px) rotate(45deg);
  }
  50% {
    transform: translateY(26px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu-trigger span:nth-of-type(2) {
  transition: all .15s .15s;
  opacity: 1;
}
.menu-trigger span:nth-of-type(3) {
  animation: menu-bar02 .5s forwards;
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-26px) rotate(-45deg);
  }
  50% {
    transform: translateY(-26px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu-trigger.active span:nth-of-type(1) {
  animation: active-menu-bar01 .5s forwards;
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(26px) rotate(0);
  }
  100% {
    transform: translateY(26px) rotate(45deg);
  }
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  animation: active-menu-bar03 .5s forwards;
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-26px) rotate(0);
  }
  100% {
    transform: translateY(-26px) rotate(-45deg);
  }
}


/*----------------------------------------------------------------------------
   footer
------------------------------------------------------------------------------*/

footer {
}

footer .mailform {
    padding: 60px 0;
    background-color: #fcf0f2;
}

footer .mailform h2 {
    text-align: center;
    margin-bottom: 30px;
}
footer .mailform h2 span {
    display: block;
    color: #f2909e;
    font-weight: 400;
}

footer .mailform .other-contact {
    padding: 30px 0;
    margin-bottom: 48px;
    border-top: 1px solid #f2909e;
    border-bottom: 1px solid #f2909e;
    text-align: center;
}
footer .mailform .other-contact b {
    color: #f2909e;
    font-size: 187.5%;
}
footer .mailform .other-contact .tel-box {
    width: 100%;
    max-width: 500px;
    margin: 16px auto 0;
}
footer .mailform .other-contact .tel-box a {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
footer .mailform .other-contact .tel-box a span {
    display: inline-block;
    color: #f2909e;
    font-size: 42px;
    padding-top: 6px;
    margin-right: .25em;
}

@media screen and (max-width:1000px) {
    footer .mailform .other-contact .tel-wrap {
        display: block;
    }
    footer .mailform .other-contact .tel-box {
        width: 100%;
    }
    footer .mailform .other-contact .tel-box:first-of-type {
        margin-bottom: 12px;
    }
}

footer .mailform .fm-check input[type="text"],
footer .mailform .fm-check input[type="tel"],
footer .mailform .fm-check input[type="number"],
footer .mailform .fm-check textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: .5em;
    box-sizing: border-box;
}
footer .mailform .fm-check .form-s { width:50%; }
footer .mailform .fm-check .form-m { width:75%; }
footer .mailform .fm-check .form-l { width:100%; }
@media screen and (max-width:750px) {
    .ua-sp footer .mailform .fm-check .form-s { width:100%; }
    .ua-sp footer .mailform .fm-check .form-m { width:100%; }
}

footer .mailform .fm-check .inp-box {
    margin-bottom: 24px;
}

footer .mailform .fm-check .inp-title {
    font-size: 125.0%;
    margin-bottom: .5em;
}

footer .mailform .fm-check .required_icon {
	color:#fff;
    padding: .15em 1em .25em;
	margin-left:1em;
	background-color:#f2909e;
	border-radius:4px;
    line-height: 1;
}

footer .mailform .fm-check form {
    display: flex;
    justify-content: space-between;
}

footer .mailform .fm-check .form01,
footer .mailform .fm-check .form02 {
    width: calc(50% - 24px);
}

@media screen and (max-width:1000px) {
    footer .mailform .fm-check form {
        display: block;
    }
    footer .mailform .fm-check .form01,
    footer .mailform .fm-check .form02 {
        width: 100%;
        overflow: hidden;
    }
    footer .mailform .fm-check .form01 {
        margin-bottom: 24px;
    }
}

footer .mailform .fm-check p {
    margin-bottom: .25em;
}

footer .mailform label ~ label {
}

/* ラジオボタン */
footer .mailform .radio-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
}

footer .mailform .radio-btns li {
    display: block;
    width: calc(50% - .5em);
    box-sizing: border-box;
    margin-bottom: .75em;
}

footer .mailform .radio-btns input[type=radio] {
    display: none;
}
footer .mailform .radio-btns label {
    position: relative;
    display: block;
    padding-left: 2em;
}
footer .mailform .radio-btns input[type=radio] + label::before {
    position: absolute;
    content: '';
    display: block;
    width: 1.2em;
    height: 1.2em;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ccc;
    left: 0;
    top: .25em;
    box-sizing: border-box;
    line-height: 1;
    letter-spacing: 0;
}

footer .mailform .radio-btns input[type=radio] + label::after {
    position: absolute;
    content: '';
    display: block;
    width: .8em;
    height: .8em;
    border-radius: 50%;
    background: #f2909e;
    left: .2em;
    top: .45em;
    opacity: 0;
    transition: .2s;
    box-sizing: border-box;
}

footer .mailform .radio-btns input[type=radio]:checked + label::after {
    opacity: 1;
}

footer .mailform .btn button {
	float: right;
	margin-top:1em;
}

footer .comprof {
    background-color: #f2909e;
    padding: 24px 0;
    color: #fff;
    text-align: center;
}

footer .comprof .logo {
    display: block;
    width: 249px;
    height: 68px;
    margin: 0 auto 1em;
    box-sizing: border-box;
    background: url("../image/header/logo.png") center no-repeat;
}

footer .comprof address {
    line-height: 1.4;
    font-style: normal;
    margin-bottom: 1.5em;
}

.pagetop {
    position: fixed;
    z-index: 10;
    bottom: 30px;
    right: 30px;
    transition: .3s;
}
.pagetop:hover {
    opacity: .7;
}

.inquirylink {
    position: fixed;
    z-index: 10;
    display: block;
    top: 240px;
    right: 0;
    width: 40px;
    padding: .75em .5em;
    background-color: #FABC3C;
    overflow: hidden;
    border-bottom-left-radius: .5em;
    border-top-left-radius: .5em;
    font-size: 30px;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    transition: .3s;
}
.inquirylink:hover {
    background-color: #FBCA66;
}
.inquirylink .txt {
    display: inline;
    color: #fff;
}
.inquirylink .txt::before {
    font-family: 'Material Icons';
    content: '\e0be';
    padding-bottom: .25em;
}


@media screen and (max-width:1000px) {
    .inquirylink {
        top: 140px;
        padding: .75em .75em;
    }
}


/*----------------------------------------------------------------------------
   subvisual
------------------------------------------------------------------------------*/

.subvisual {
    width: 100%;
    height: 380px;
    padding: 180px 0 72px;
    box-sizing: border-box;
    background-color: #fcf0f2;
    text-align: center;
    overflow: hidden;
    position: relative;
    text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
                -1px 1px 0 #FFF, 1px -1px 0 #FFF,
                0px 1px 0 #FFF,  0-1px 0 #FFF,
                -1px 0 0 #FFF, 1px 0 0 #FFF;
}

.subvisual h2 {
    color: #f2909e;
    letter-spacing: .2ex;
    margin-bottom: 30px;
}







