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

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  margin: 0;
  font-family: "Noto Serif JP", "Shippori Mincho B1", "Cormorant Garamond", serif;
  background-color: #F7F7F7;
}

h1 {
  margin: 0;
  font-size: 3.2rem;
  letter-spacing: 1px;
  font-weight: 400;
}

nav,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.section {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
}
@media (min-width: 1024px) {
  .section {
    padding: 100px 0;
  }
}
.section .inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .section .inner {
    padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .section .inner {
    padding: 0;
  }
}

section h2,
section p {
  color: #1A3B40;
  text-align: center;
  font-weight: 400;
  margin: 0 0 32px;
}
@media (min-width: 768px) {
  section h2,
  section p {
    margin: 0 0 40px;
  }
}
@media (min-width: 1024px) {
  section h2,
  section p {
    margin: 0 0 50px;
  }
}
section h2 {
  font-size: 3.2rem;
}
section p {
  line-height: 1.8;
}
section .section-headline {
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  section .section-headline {
    font-size: 3.2rem;
  }
}
@media (min-width: 1024px) {
  section .section-headline {
    font-size: 4rem;
  }
}
section:nth-of-type(2) {
  padding: 60px 0 0;
}
@media (min-width: 768px) {
  section:nth-of-type(2) {
    padding: 80px 0 0;
  }
}
@media (min-width: 1024px) {
  section:nth-of-type(2) {
    padding: 100px 0 0;
  }
}

.btn {
  text-align: center;
  display: inline-block;
  background-color: #fff;
  color: #0ABAB5;
  padding: 16px 48px;
  max-width: 480px;
  min-width: 280px;
  transition: opacity 0.3s ease;
}
.btn:hover {
  opacity: 0.7;
}

.pc-none {
  display: block;
}
@media (min-width: 768px) {
  .pc-none {
    display: none;
  }
}

header {
  width: 100%;
  background-color: #0ABAB5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 135;
}
header .header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 24px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 111;
}
header .header-inner h1 {
  font-size: 2.8rem;
  position: relative;
  z-index: 120;
}
header .header-inner .hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 103;
}
header .header-inner .hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
header .header-inner .hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
header .header-inner .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .header-inner .hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
header nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100vh;
  z-index: 90;
}
header nav ul {
  flex-direction: column;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 120;
}
header nav ul .nav-item {
  margin: 0;
}
header nav ul .nav-item a {
  text-align: center;
  display: block;
  padding: 16px;
  letter-spacing: 1.4px;
}
header nav ul .nav-item:hover {
  opacity: 0.7;
}
header nav.active {
  display: flex;
}
header .overlay {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #7FD8C9;
  z-index: 110;
}
header .overlay.active {
  display: block;
}
@media (min-width: 1024px) {
  header .header-inner nav {
    display: flex;
    position: static;
    background: none;
    box-shadow: none;
    flex-direction: row;
    width: auto;
    height: auto;
    transform: none;
  }
  header .header-inner nav ul {
    display: flex;
    flex-direction: row;
    position: static;
    transform: none;
  }
  header .header-inner nav ul .nav-item {
    margin: 0 40px 0 0;
    border-bottom: none;
    transition: opacity 0.3s ease;
  }
  header .header-inner nav ul .nav-item a {
    padding: 0;
  }
  header .header-inner nav ul .nav-item:active {
    opacity: 0.7;
  }
  header .header-inner nav.active {
    display: flex;
  }
  header .header-inner .hamburger {
    display: none;
  }
  header .overlay {
    display: none !important;
  }
}

footer {
  background-color: #0ABAB5;
  padding: 60px 0;
}
@media (min-width: 1024px) {
  footer {
    flex-direction: row;
    padding: 100px 0;
  }
}
footer .footer-inner {
  max-width: 1440px;
  padding: 0 24px;
  display: flex;
  color: #fff;
  justify-content: space-between;
  margin: 0 auto;
  flex-direction: column;
}
@media (min-width: 1024px) {
  footer .footer-inner {
    flex-direction: row;
  }
}
footer .footer-inner .footer-text h2 {
  margin: 0 0 16px 0;
  font-weight: 400;
}
footer .footer-inner .footer-text p {
  margin: 0 0 4px 0;
  font-size: 1.4rem;
  letter-spacing: 1px;
}
footer .footer-inner .footer-text p a {
  color: #fff;
  transition: opacity 0.3s ease;
}
footer .footer-inner .footer-text p a:hover {
  opacity: 0.7;
}
footer .footer-inner nav ul {
  display: flex;
  margin: 16px 0 0;
  flex-direction: column;
  padding: 0;
}
@media (min-width: 1024px) {
  footer .footer-inner nav ul {
    flex-direction: row;
    margin: 0;
  }
}
footer .footer-inner nav ul li {
  margin: 8px 0 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 1024px) {
  footer .footer-inner nav ul li {
    flex-direction: row;
    margin: 0 40px 0 0;
  }
}
footer .footer-inner nav ul li a {
  letter-spacing: 1.4px;
}
footer .footer-inner nav ul li:hover {
  opacity: 0.7;
}
footer .footer_logo_text {
  font-size: 1.2rem;
  color: #fff;
  margin: 24px auto 0;
  text-align: left;
  max-width: 1440px;
  padding: 0 24px;
  letter-spacing: 1.2px;
}

.mv-section {
  padding: 68px 0 0;
}
@media (min-width: 1024px) {
  .mv-section {
    padding: 88px 0 0;
  }
}
.mv-section .mv {
  width: 100%;
  min-height: 480px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .mv-section .mv {
    min-height: 540px;
  }
}
@media (min-width: 1024px) {
  .mv-section .mv {
    min-height: 600px;
  }
}
@media (min-width: 2560px) {
  .mv-section .mv {
    min-height: 960px;
  }
}
.mv-section .mv img {
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-headline {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-headline::before, .about-headline::after {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  max-width: 24px;
  max-height: 24px;
  background: url(../img/about_dia_icon.png);
  background-size: contain;
}
.about-headline::before {
  margin: 2px 8px 0 0;
}
.about-headline::after {
  margin: 2px 0 0 8px;
}

table {
  width: 100%;
  max-width: 980px;
  display: inline-table;
  border-collapse: collapse;
}
table tbody {
  width: 100%;
}
table tbody tr {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  table tbody tr {
    flex-direction: row;
  }
}
table tbody tr th {
  width: 100%;
  text-align: left;
  color: #fff;
  background-color: #0ABAB5;
  padding: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  border: transparent;
}
@media (min-width: 768px) {
  table tbody tr th {
    width: 50%;
    border: 1px solid #fff;
    border-right: none;
    padding: 16px 40px;
  }
}
table tbody tr td {
  width: 100%;
  text-align: left;
  padding: 16px;
  background-color: #fff;
  color: #1A3B40;
  letter-spacing: 0.75px;
  border: transparent;
}
@media (min-width: 768px) {
  table tbody tr td {
    width: 50%;
    border: 1px solid #0ABAB5;
    border-left: none;
    padding: 16px 40px;
  }
}

.contact-bg {
  position: relative;
}
.contact-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #36CBAB;
  opacity: 0.6;
  z-index: 3;
}
.contact-bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/contact_bg.jpg);
  background-position: center;
  background-size: cover;
  opacity: 0.5;
  z-index: 2;
}
.contact-bg .section-inner {
  position: relative;
  z-index: 4;
}
.contact-bg .section-inner h2,
.contact-bg .section-inner p {
  color: #fff;
}
.contact-bg .section-inner .btn-container {
  text-align: center;
}

/*# sourceMappingURL=main.css.map */
