html {
color: #222;
font-family: "Noto Sans JP", sans-serif;
font-size: 10px;
font-weight: 500;
line-height: 1;
background-color: #FCFFF5;
word-wrap: break-word;
}
@media print, screen and (min-width: 768px) and (max-width: 1400px) {
html {
font-size: 0.7142857143vw;
}
}
@media only screen and (max-width: 767px) {
html {
font-size: 1.3020833333vw;
}
}
html * {
font-weight: inherit;
box-sizing: border-box;
}
body {
font-size: 1.6rem;
}
body.blog {
margin-top: 0;
}
@media only screen and (max-width: 767px) {
body {
font-size: 2.8rem;
}
}
header, main, section, aside, footer {
width: 100%;
}
a {
cursor: pointer;
transition: all ease-in-out 0.3s;
}
a:hover {
opacity: 0.7;
}
figure img {
width: 100%;
height: auto;
}
figure img[src$=".svg"] {
max-width: 100%;
}
th {
font-weight: normal;
}
#wrapper {
overflow: hidden;
}
.center {
display: flex;
align-items: center;
justify-content: center;
}
.tal {
text-align: left;
}
.tac {
text-align: center;
}
.tar {
text-align: right;
}
.fwb {
font-weight: bold;
}
.noFind {
text-align: center;
width: 100%;
margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
.noFind {
margin-top: 2rem;
}
}
.scrollbar {
overflow: hidden scroll;
padding-right: 1rem;
}
.scrollbar::-webkit-scrollbar {
width: 1rem;
}
.scrollbar::-webkit-scrollbar-track {
background-color: #E6E6E6;
}
.scrollbar::-webkit-scrollbar-thumb {
background-color: #B3B3B3;
}
.flowLink {
position: relative;
padding-bottom: 0.4rem;
}
@media print, screen and (min-width: 768px) {
.flowLink::after {
content: "";
display: block;
position: absolute;
bottom: 0;
left: 0;
background-color: #007D3C;
height: 2px;
width: 100%;
transform: scale(0);
transform-origin: left center;
transition: all ease 0.3s;
}
}
.flowLink:hover::after {
transform: scale(1);
}
.maker {
display: inline;
background: linear-gradient(transparent 70%, #FBE680 0%);
padding: 0 0.4rem;
}
.scrollAnim {
position: absolute;
text-align: center;
right: 0;
bottom: 0;
left: 0;
margin: auto;
font-weight: bold;
font-size: 1.2rem;
}
.scrollAnim a {
position: relative;
display: inline-block;
padding-bottom: 8rem;
}
.scrollAnim a::before, .scrollAnim a::after {
content: "";
display: block;
position: absolute;
left: 50%;
transform: translate(-50%, 0);
width: 0.3rem;
}
.scrollAnim a::before {
height: 8rem;
background-color: #007D3C;
bottom: 0;
}
.scrollAnim a::after {
height: 0rem;
background-color: #fff;
bottom: 8rem;
animation: scroll_anim 1.6s ease-in-out 0s infinite normal forwards;
}
@media print, screen and (min-width: 768px) {
.sp {
display: none !important;
}
#wrapper:not(.preload) * {
transition: none !important;
}
}
@media only screen and (max-width: 767px) {
.pc {
display: none !important;
}
}
@keyframes scroll_anim {
0% {
height: 0;
bottom: 8rem;
}
70% {
height: 5rem;
}
80% {
bottom: 0;
}
100% {
height: 0;
bottom: 0;
}
}
@keyframes zoom {
from {
transform: scale(1);
}
to {
transform: scale(1.15);
}
}
.scrollItem, .scrollListItem {
opacity: 0;
transition: all ease-in-out 0.6s;
}
.scrollItem.scrollActive, .scrollListItem.scrollActive {
opacity: 1 !important;
transform: translate(0) scale(1) !important;
}
.fadein {
opacity: 0;
}
.fadein.scrollActive {
opacity: 1;
}
.fadeTop {
transform: translateY(5rem);
}
.fadeTop.scrollActive {
transform: translate(0);
}
.fadeRight {
transform: translateX(5rem);
}
.fadeRight.scrollActive {
transform: translate(0);
}
.fadeBottom {
transform: translateY(-5rem);
}
.fadeBottom.scrollActive {
transform: translate(0);
}
.fadeLeft {
transform: translateX(-5rem);
}
.fadeLeft.scrollActive {
transform: translate(0);
}
.fadeInLeft, .fadeInRight {
position: relative;
}
.fadeInLeft::after, .fadeInRight::after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: #fff;
transition: all ease-in-out 0.6s;
transform-origin: center right;
}
.fadeInLeft.scrollActive::after, .fadeInRight.scrollActive::after {
transform: scaleX(0);
}
.fadeInRight::after {
transform-origin: center left;
}
.header {
position: fixed;
top: 0;
right: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
background-color: #F3F2E6;
height: 10rem;
width: 100%;
z-index: 500;
}
.header__wrapper {
display: flex;
justify-content: space-between;
margin: auto;
max-width: 1350px;
width: 90%;
}
@media only screen and (max-width: 767px) {
.header__wrapper {
align-items: center;
}
}
.header__logo {
width: 23rem;
}
@media only screen and (max-width: 767px) {
.header__logo {
width: 36rem;
}
}
.header__content {
display: flex;
gap: 0 5rem;
}
.header__list {
display: flex;
gap: 0 4rem;
font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
font-weight: 500;
}
@media only screen and (max-width: 767px) {
.header__list {
display: none;
}
}
.header__btn {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
z-index: 100;
}
.header__btn.active .bar:first-of-type {
transform: translateY(0.6rem) rotate(45deg);
background-color: #fff;
}
@media only screen and (max-width: 767px) {
.header__btn.active .bar:first-of-type {
transform: translateY(1.5rem) rotate(45deg);
}
}
.header__btn.active .bar:last-of-type {
transform: translateY(-0.5rem) rotate(-45deg);
background-color: #fff;
}
@media only screen and (max-width: 767px) {
.header__btn.active .bar:last-of-type {
transform: translateY(-0.3rem) rotate(-45deg);
}
}
.header__btn.active .menu {
display: none;
}
.header__btn.active .close {
display: block;
color: #fff;
margin-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
.header__btn.active .close {
margin-top: 2rem;
}
}
.header__btn .mark {
position: relative;
cursor: pointer;
height: 1.5rem;
width: 3.6rem;
transition: all 0.6s ease-in-out;
}
@media only screen and (max-width: 767px) {
.header__btn .mark {
height: 2.4rem;
width: 6rem;
}
}
.header__btn .bar {
position: absolute;
left: 0;
background-color: #007D3C;
height: 0.4rem;
width: 100%;
transition: all 0.6s ease-in-out;
}
@media only screen and (max-width: 767px) {
.header__btn .bar {
height: 0.6rem;
}
}
.header__btn .bar:first-of-type {
background-color: #3EADE8;
top: 0;
}
.header__btn .bar:last-of-type {
bottom: 0;
}
.header__btn .menu, .header__btn .close {
font-weight: bold;
display: inline-block;
margin-top: 1rem;
font-family: "Montserrat", "Noto Sans JP", sans-serif;
}
.header__btn .menu {
display: block;
}
.header__btn .close {
display: none;
}
.header .gnav {
display: flex;
align-items: center;
justify-content: center;
position: fixed;
inset: 0;
height: 100vh;
width: 100vw;
color: #fff;
background-color: rgba(84, 160, 121, 0.9);
padding: 14rem 6rem 6rem;
overflow: hidden scroll;
transition: all ease-in-out 0.6s;
transform: translateX(100%);
}
@media only screen and (max-width: 767px) {
.header .gnav {
align-items: flex-start;
padding-top: 20rem;
}
}
.header .gnav.active {
transform: translateX(0);
}
.header .gnav__list01 {
text-align: center;
}
.header .gnav__list01 .item {
font-size: 2rem;
}
@media only screen and (max-width: 767px) {
.header .gnav__list01 .item {
font-size: 3rem;
}
}
.header .gnav__list01 .item:not(:first-child) {
margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
.header .gnav__list01 .item:not(:first-child) {
margin-top: 4rem;
}
}
.header .gnav__list02 {
text-align: center;
margin-top: 10rem;
}
.header .gnav__list02 .item {
font-size: 1.2rem;
}
@media only screen and (max-width: 767px) {
.header .gnav__list02 .item {
font-size: 2.6rem;
}
}
.header .gnav__list02 .item:not(:first-child) {
margin-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
.header .gnav__list02 .item:not(:first-child) {
margin-top: 3rem;
}
}
.main {
line-height: 1.6;
margin-top: 10rem;
}
.wrapper {
margin: auto;
width: 70%;
max-width: 1040px;
}
@media print, screen and (min-width: 768px) {
.wrapper.small {
width: 60%;
max-width: 880px;
}
}
@media only screen and (max-width: 767px) {
.wrapper {
width: 90%;
}
}
.title-type01 {
font-weight: bold;
font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
text-align: center;
}
.title-type01 .sub {
display: inline-block;
line-height: 1;
font-size: 2.4rem;
border-radius: 5rem;
background-color: #007D3C;
color: #fff;
padding: 0.8rem 2.5rem;
}
@media only screen and (max-width: 767px) {
.title-type01 .sub {
padding: 1.2rem 3rem;
font-size: 2.8rem;
}
}
.title-type01 .title {
font-size: 3.5rem;
font-weight: 900;
margin-top: 1.5rem;
line-height: 1.4;
}
@media only screen and (max-width: 767px) {
.title-type01 .title {
font-size: 3.6rem;
}
}
.title-type02 {
font-size: 3.2rem;
font-weight: bold;
line-height: 1.4;
margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
.title-type02 {
font-size: 3.8rem;
margin-bottom: 5rem;
}
}
.title-type02 .maru {
display: inline-block;
height: 6rem;
line-height: 5.5rem;
width: 6rem;
font-weight: bold;
text-align: center;
color: #fff;
background-color: #54A079;
border-radius: 50%;
margin-right: 1rem;
}
.title-type02 .maru.blue {
background-color: #6ABCE8;
}
.title-type03 {
font-weight: bold;
line-height: 1.3;
}
.title-type03 .en {
font-family: "Montserrat", "Noto Sans JP", sans-serif;
color: #007D3C;
}
.title-type03 .ja {
font-size: 3.2rem;
}
@media only screen and (max-width: 767px) {
.title-type03 .ja {
font-size: 4rem;
}
}
.title-type03 .ja:first-letter {
color: #007D3C;
}
.link-type01-content {
text-align: right;
}
.link-type01 {
position: relative;
display: inline-block;
padding: 1rem 6rem 1rem 0;
font-weight: bold;
font-family: "Montserrat", "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 767px) {
.link-type01 {
padding: 1.5rem 10rem 1.5rem 0;
}
}
.link-type01::after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
background-image: url(//enisia-bassai.com/wp-content/themes/enisia/assets/img/common/icon_link.svg);
background-size: cover;
height: 4.4rem;
width: 7.2rem;
}
@media only screen and (max-width: 767px) {
.link-type01::after {
height: 7.3rem;
width: 12rem;
}
}
.pagination {
margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
.pagination {
margin-top: 6rem;
}
}
.pagination .wp-pagenavi {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
}
@media only screen and (max-width: 767px) {
.pagination .wp-pagenavi {
gap: 2rem;
}
}
.pagination .wp-pagenavi > * {
border: 1px solid #007D3C;
font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
font-size: 2rem;
color: #007D3C;
border-radius: 50%;
text-align: center;
height: 3rem;
line-height: 2.5rem;
width: 3rem;
}
@media only screen and (max-width: 767px) {
.pagination .wp-pagenavi > * {
font-size: 3.6rem;
line-height: 5.5rem;
height: 6rem;
width: 6rem;
}
}
.pagination .wp-pagenavi .current {
background-color: #007D3C;
color: #fff;
}
.pagination .wp-pagenavi .previouspostslink, .pagination .wp-pagenavi .nextpostslink {
position: relative;
}
.pagination .wp-pagenavi .previouspostslink::after, .pagination .wp-pagenavi .nextpostslink::after {
content: "";
position: absolute;
inset: 0;
margin: auto;
width: 1rem;
height: 1rem;
border-top: 2px solid #007D3C;
border-right: 2px solid #007D3C;
transform: rotate(45deg);
}
@media only screen and (max-width: 767px) {
.pagination .wp-pagenavi .previouspostslink::after, .pagination .wp-pagenavi .nextpostslink::after {
width: 1.6rem;
height: 1.6rem;
}
}
.pagination .wp-pagenavi .previouspostslink::after {
left: 0.5rem;
transform: rotate(225deg);
}
.pagination .wp-pagenavi .nextpostslink::after {
right: 0.5rem;
}
.induction {
display: flex;
color: #fff;
margin-top: 10rem;
}
@media only screen and (max-width: 767px) {
.induction {
display: block;
}
}
.induction__item {
width: 50%;
}
@media only screen and (max-width: 767px) {
.induction__item {
width: 100%;
}
}
.induction__item.tel {
background-color: #54A079;
}
.induction__item.tel .induction__inner {
margin-left: auto;
}
.induction__item.tel .btn {
color: #54A079;
padding-left: 3.5rem;
}
@media only screen and (max-width: 767px) {
.induction__item.tel .btn {
padding-left: 5rem;
}
}
.induction__item.tel .btn::before {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 3rem;
margin: auto;
background-image: url(//enisia-bassai.com/wp-content/themes/enisia/assets/img/common/icon_line.svg);
background-size: cover;
height: 3.6rem;
width: 3.7rem;
}
@media only screen and (max-width: 767px) {
.induction__item.tel .btn::before {
left: 4rem;
height: 4.8rem;
width: 4.8rem;
}
}
.induction__item.mail {
background-color: #6ABCE8;
}
.induction__item.mail .btn {
color: #6ABCE8;
padding-right: 2.5rem;
}
@media only screen and (max-width: 767px) {
.induction__item.mail .btn {
padding-right: 4rem;
}
}
.induction__item.mail .btn::after {
content: "";
position: absolute;
top: 0;
right: 4rem;
bottom: 0;
margin: auto;
transform: skew(45deg);
border-bottom: solid 2px #6ABCE8;
border-right: solid 2px #6ABCE8;
height: 0.8rem;
width: 2.5rem;
}
@media only screen and (max-width: 767px) {
.induction__item.mail .btn::after {
right: 5rem;
height: 1.4rem;
width: 4rem;
}
}
.induction__inner {
padding: 3rem 0;
text-align: center;
max-width: 600px;
}
@media only screen and (max-width: 767px) {
.induction__inner {
padding: 5rem 0;
}
}
.induction__inner .icon {
margin: auto;
width: 3.3rem;
}
@media only screen and (max-width: 767px) {
.induction__inner .icon {
width: 5rem;
}
}
.induction__inner .info {
margin-top: 1rem;
line-height: 1.3;
}
@media only screen and (max-width: 767px) {
.induction__inner .info {
margin-top: 3rem;
}
}
.induction__inner .info .note {
font-size: 3.6rem;
font-weight: bold;
font-family: "Montserrat", "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 767px) {
.induction__inner .info .note {
font-size: 6rem;
}
}
.induction__inner .btn {
position: relative;
display: block;
font-size: 1.8rem;
text-align: center;
background-color: #fff;
border-radius: 5rem;
margin: 3rem auto 0;
line-height: 6rem;
width: 34rem;
}
@media only screen and (max-width: 767px) {
.induction__inner .btn {
font-size: 3rem;
margin-top: 4rem;
line-height: 8rem;
width: 52rem;
}
}
.footer {
padding: 5rem 0;
}
@media only screen and (max-width: 767px) {
.footer {
padding: 8rem 0;
}
}
.footer__wrapper {
margin: auto;
width: 90%;
max-width: 1350px;
}
.footer__upper {
display: flex;
align-items: flex-start;
gap: 25rem;
}
@media only screen and (max-width: 767px) {
.footer__upper {
display: block;
}
}
.footer__info {
line-height: 1.4;
}
.footer__info .logo {
width: 32rem;
}
@media only screen and (max-width: 767px) {
.footer__info .logo {
width: 42rem;
}
}
.footer__info .address {
margin: 3rem 0 2rem;
}
.footer__link {
display: flex;
flex-wrap: wrap;
margin-top: 4rem;
}
.footer__link .inner {
margin-right: 10rem;
}
@media only screen and (max-width: 767px) {
.footer__link .inner {
margin: 0;
width: 50%;
}
}
.footer__link .item {
display: block;
margin-top: 3rem;
}
.footer__bottom {
display: flex;
justify-content: space-between;
font-size: 1.2rem;
margin-top: 8rem;
}
@media only screen and (max-width: 767px) {
.footer__bottom {
font-size: 2.4rem;
flex-direction: column;
align-items: center;
justify-content: center;
}
}
@media only screen and (max-width: 767px) {
.footer__bottom .link {
margin-bottom: 5rem;
order: -1;
}
}
.footer__bottom .link a {
text-decoration: underline;
}