@charset "UTF-8";
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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* 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;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #505050;
  word-break: break-all;
}
body.is_fixed {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

a:active {
  text-decoration: none;
}

a {
  text-decoration: none;
  color: #505050;
}
a:hover {
  opacity: 0.8;
}

div,
a {
  box-sizing: border-box;
}

li {
  list-style: none;
}

section {
  box-sizing: border-box;
}

.e_enTxt {
  font-family: "DM Sans", sans-serif;
}

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

.is-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.section__title {
  color: #333333;
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 5.3333333333vw;
    margin-bottom: 8px;
  }
}

.section__subTitle {
  font-family: "Mulish", sans-serif;
  display: block;
  text-align: center;
  font-size: 15px;
  color: #007ec8;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .section__subTitle {
    font-size: 2.6666666667vw;
  }
}

.header {
  position: absolute;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
  padding: 25px;
  animation: fade 0.5s ease;
}
@keyframes fade {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0;
  }
}
.header .on {
  display: none;
}
.header .off {
  display: block;
}
.header.is_active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.header.is_active .on {
  display: block;
}
.header.is_active .off {
  display: none;
}
.header.is_active .header-inner {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header.is_active .header-inner {
    align-items: flex-start;
  }
}
.header.is_active .header-logo img {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .header.is_active .header-logo img {
    width: 120px;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
}

.header-list {
  display: flex;
  gap: 30px;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .header-list {
    display: none;
  }
}

.header-list a {
  text-decoration: none;
  color: #505050;
  font-size: 13px;
  font-weight: bold;
}

.header-contacttop a {
  background-color: #ffee55;
  border-radius: 24px;
  padding: 10px 20px;
  padding-left: 35px;
  color: #008886;
  background-image: url(../img/email.png);
  background-repeat: no-repeat;
  background-position: left 8% top 50%;
  transition: 0.3s ease;
}
.header-contacttop a:hover {
  opacity: 1;
  background: #008886;
  color: #ffee55;
  background-image: url(../img/email-y.png);
  background-repeat: no-repeat;
  background-position: left 8% top 50%;
}

.header-logo img {
  width: 150px;
}
@media screen and (max-width: 768px) {
  .header-logo img {
    width: 100px;
  }
}

@media screen and (max-width: 768px) {
  .header-logo {
    padding: 20px 10px;
  }
}

.header__inner--splist {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__inner--splist {
    display: block;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.header__inner--splist-hmb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  background-color: #008886;
  width: 60px;
  height: 60px;
}
.header__inner--splist-hmb.active span:nth-child(1) {
  transform: translateY(16px) rotate(45deg);
  width: 40px;
}
@media screen and (max-width: 600px) {
  .header__inner--splist-hmb.active span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
    width: 30px;
  }
}
@media screen and (max-width: 400px) {
  .header__inner--splist-hmb.active span:nth-child(1) {
    width: 30px;
    transform: translateY(9px) rotate(45deg);
  }
}
.header__inner--splist-hmb.active span:nth-child(2) {
  opacity: 0;
}
.header__inner--splist-hmb.active span:nth-child(3) {
  transform: translateY(-16px) rotate(-45deg);
  width: 40px;
}
@media screen and (max-width: 600px) {
  .header__inner--splist-hmb.active span:nth-child(3) {
    width: 30px;
    transform: translateY(-12px) rotate(-45deg);
  }
}
@media screen and (max-width: 400px) {
  .header__inner--splist-hmb.active span:nth-child(3) {
    width: 30px;
    transform: translateY(-9px) rotate(-45deg);
  }
}
.header__inner--splist span {
  display: block;
  height: 1px;
  width: 30px;
  background: #fff;
  transition: 0.3s;
}
.header__inner--splist-mail {
  background: #ffee55;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 55px;
  border-radius: 0 0 0 16px;
  border-radius: 50%;
  margin-right: 8px;
}
@media screen and (max-width: 600px) {
  .header__inner--splist-mail img {
    width: 25px;
  }
}
@media screen and (max-width: 400px) {
  .header__inner--splist-mail img {
    width: 20px;
  }
}

.drawerNav {
  background: #fff;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  transition: all 0.3s ease;
  overflow-y: auto;
  z-index: 99;
  padding: 80px 20px;
  transform: translateX(100%);
}
.drawerNav.active {
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .drawerNav {
    display: block;
  }
}
.drawerNav .footer__inner {
  padding: 0;
}
.drawerNav .footer__inner a {
  font-size: 20px;
}
.drawerNav ul {
  display: block;
}
.drawerNav li {
  width: 100%;
  margin-bottom: 40px;
}
.drawerNav li a {
  width: 100%;
  display: block;
}

.contacttop {
  background-image: url(../img/contact.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .contacttop {
    background-position: 20%;
  }
}

.contacttop-inner {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contacttop-inner {
    padding: 60px 20px;
  }
}

.contacttop-title h5 {
  font-size: 30px;
  letter-spacing: 4px;
  color: white;
  padding-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .contacttop-title h5 {
    font-size: 24px;
  }
}

.contacttop-title p {
  font-size: 13px;
  letter-spacing: 3px;
  color: white;
  padding-bottom: 30px;
}

.contacttop-text p {
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 25px;
  color: white;
  padding-bottom: 55px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .contacttop-text p {
    font-size: 13px;
    padding-bottom: 30px;
  }
}

.contacttop-text a {
  text-decoration: none;
  color: #008886;
  background-color: #ffee55;
  border: #ffee55 1px solid;
  padding: 13px 0;
  border-radius: 30px;
  font-size: 14px;
  width: 400px;
  display: block;
  text-align: center;
  max-width: 100%;
  background-image: url(../img/arrow-g.png);
  background-repeat: no-repeat;
  background-position: 95%;
  background-size: 10px;
  transition: 0.3s ease;
}
.contacttop-text a:hover {
  background-color: #008886;
  color: #fff;
  background-image: url(../img/arrow.png);
  background-repeat: no-repeat;
  background-position: 95%;
  background-size: 10px;
}

.contacttop-inner {
  position: relative;
}

.contacttop-logo {
  position: absolute;
  top: -10%;
  left: 55%;
  width: 250px;
}

.contacttop-logotwo {
  position: absolute;
  top: 25%;
  left: 73%;
}

.footer {
  padding: 150px 0 0;
}
@media screen and (max-width: 1320px) {
  .footer {
    padding: 150px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 80px 0 0;
  }
}

.footer-right {
  display: flex;
  justify-content: space-between;
  width: 60%;
}
@media screen and (max-width: 1320px) {
  .footer-right {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .footer-right {
    flex-wrap: wrap;
    width: 100%;
  }
}

.footer-right ul {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .footer-right ul:nth-of-type(3) {
    margin-top: -30px;
  }
}

.footer-right ul li + li {
  margin-top: 30px;
}

.footer-right ul li a {
  font-weight: bold;
  font-size: 15px;
  white-space: nowrap;
}
@media screen and (max-width: 1320px) {
  .footer-right ul li a {
    font-size: 12px;
  }
}

.footer-right ul li.sub a {
  display: block;
  box-sizing: border-box;
}
.footer-right ul li.sub a::before {
  content: "・";
  color: #008886;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .footer-box {
    width: 80%;
    margin: 0 auto 80px;
  }
}

.footer-box h3 {
  font-size: 18px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1320px) {
  .footer-box h3 {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .footer-box h3 {
    margin-bottom: 10px;
  }
}

.footer-box p {
  line-height: 1.7;
}
@media screen and (max-width: 1320px) {
  .footer-box p {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .footer-box p {
    font-size: 10px;
  }
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  padding-bottom: 125px;
}
@media screen and (max-width: 768px) {
  .footer-inner {
    padding: 0 20px 55px;
    display: block;
  }
}

.footer-logo img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .footer-logo img {
    text-align: center;
    margin: 0 auto;
  }
}

.footer-logo {
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .footer-logo {
    text-align: center;
  }
}

.footer-sns {
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .footer-sns {
    justify-content: center;
    gap: 34px;
  }
  .footer-sns img {
    height: 25px;
  }
}

small {
  display: block;
  background: #f2f9fb;
  text-align: center;
  width: 100%;
  /* padding: 20px; */
  padding: 25px 0;
}
@media screen and (max-width: 768px) {
  small {
    padding: 15px 0;
    font-size: 10px;
  }
}

@media screen and (max-width: 768px) {
  body,
  html {
    overflow-x: hidden;
  }
  .contacttop-inner {
    position: relative;
  }
  .contacttop-logo {
    position: absolute;
    top: -15%;
    left: 55%;
  }
  .contacttop-logotwo {
    position: absolute;
    top: 12%;
    left: 75%;
  }
  .contacttop-logo img,
  .contacttop-logotwo img {
    width: 130px;
  }
}
.fade-in {
  opacity: 0;
  /* 初期状態で透明 */
  transform: translateY(30px);
  /* 下に少しずらす */
  transition: opacity 1s ease, transform 1s ease;
  /* アニメーションの設定 */
}

.fade-in.active {
  opacity: 1;
  /* 表示 */
  transform: translateY(0);
  /* 元の位置 */
}

[id] {
  scroll-margin-top: 150px;
}/*# sourceMappingURL=style.css.map */