body {
  background: #f3efe9;
  overflow-x: hidden;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}

div,
h1,
h2,
h3,
h4,
p,
a,
ul,
ol,
li {
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  list-style: none;
  text-decoration: none;
  color: #222;
}

header.my-header {
  width: 100vw;
  background: #f3efe9;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-sizing: border-box;
}
header.my-header .container {
  display: flex;
  align-items: center;
  padding: 0 30px;
  box-sizing: border-box;
  height: 80px;
  border-bottom: solid 1px rgba(181, 173, 160, 0.3333333333);
}
header.my-header .container box .logo img {
  height: 50px;
}
header.my-header .container .navigation {
  display: flex;
  margin-left: 30px;
}
header.my-header .container .navigation li {
  margin: 0 15px;
  font-size: 1.2rem;
  position: relative;
}
header.my-header .container .navigation li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #b5ada0;
  left: 0;
  bottom: 0px;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
header.my-header .container .navigation li:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
header.my-header .container .sns {
  display: flex;
  margin-left: auto;
}
header.my-header .container .sns li {
  margin: 0 5px;
}
header.my-header .container .sns li a {
  background: #333;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}
header.my-header .container .sns li a i {
  color: #f3efe9;
  font-size: 25px;
  margin-top: 1px;
}
header.my-header .container .sns li a:hover {
  opacity: 0.7;
}
header.my-header.hidden {
  background: rgba(255, 255, 255, 0.6666666667);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  top: -100px;
}
header.my-header.hidden .container {
  border-color: rgba(255, 255, 255, 0);
}

#global-navigation {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 101;
  top: 0;
  transition: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  display: none;
}
#global-navigation .header {
  display: flex;
  align-items: center;
  padding: 0 30px;
  box-sizing: border-box;
  height: 80px;
  justify-content: end;
}
#global-navigation .header #header-button {
  cursor: pointer;
  padding: 10px;
  margin-bottom: -10px;
  width: 40px;
  height: 50px;
  position: relative;
  margin-right: -10px;
  pointer-events: all;
}
#global-navigation .header #header-button ul {
  position: relative;
}
#global-navigation .header #header-button ul li {
  width: 40px;
  height: 2px;
  background: #333;
  display: block;
  position: absolute;
  transition: 0.3s;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#global-navigation .header #header-button ul li:nth-of-type(1) {
  top: 0;
}
#global-navigation .header #header-button ul li:nth-of-type(2) {
  top: 13px;
}
#global-navigation .header #header-button ul li:nth-of-type(3) {
  top: 26px;
  width: 30px;
  left: 10px;
}
#global-navigation .header #header-button span {
  text-align: center;
  display: block;
  position: absolute;
  bottom: 10px;
  width: 40px;
}
#global-navigation .header #header-button:not(.active):hover li:last-of-type {
  width: 40px;
  left: 0;
}
#global-navigation .header #header-button.active li {
  background: #f3efe9;
}
#global-navigation .header #header-button.active li:nth-of-type(1) {
  transform: rotate(-45deg);
  top: 15px;
}
#global-navigation .header #header-button.active li:nth-of-type(2) {
  opacity: 0;
}
#global-navigation .header #header-button.active li:nth-of-type(3) {
  transform: rotate(45deg);
  width: 40px;
  top: 15px;
  left: 0;
}
#global-navigation .header #header-button.active span {
  color: #f3efe9;
}
#global-navigation .wrapper {
  width: 100%;
  height: calc(100vh - 80px);
  position: relative;
  display: none;
}
#global-navigation .wrapper .container {
  max-width: 520px;
  width: calc(100% - 80px);
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  position: absolute;
  top: 5vh;
  right: 0;
  left: 0;
}
#global-navigation .wrapper .container h2 {
  text-align: center;
  font-size: 2rem;
  color: #f3efe9;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}
#global-navigation .wrapper .container .navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
}
#global-navigation .wrapper .container .navigation li {
  font-size: 1.5rem;
  width: 100%;
}
#global-navigation .wrapper .container .navigation li a {
  width: 100%;
  box-sizing: border-box;
  padding: 30px 10px;
  display: block;
  color: #f3efe9;
  position: relative;
}
#global-navigation .wrapper .container .navigation li a::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 2px #f3efe9;
  border-right: solid 2px #f3efe9;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 20px;
}
#global-navigation .wrapper .container .navigation li:not(:first-of-type) {
  background-image: linear-gradient(to right, #b5ada0 5px, transparent 1px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: left top;
}
#global-navigation .wrapper .sns {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}
#global-navigation .wrapper .sns li {
  margin: 0 5px;
  display: flex;
  align-items: center;
  border-radius: 50px;
  background: #f3efe9;
}
#global-navigation .wrapper .sns li a {
  display: flex;
  align-items: center;
  border-radius: 50px;
  transition: 0.3s;
  padding: 15px 25px;
}
#global-navigation .wrapper .sns li a::after {
  display: none;
}
#global-navigation .wrapper .sns li a i {
  color: #333;
  font-size: 25px;
}
#global-navigation .wrapper .sns li a span {
  margin-bottom: 4px;
  margin-left: 5px;
}
#global-navigation .wrapper .sns li a:hover {
  background: #333;
}
#global-navigation .wrapper .sns li a:hover i,
#global-navigation .wrapper .sns li a:hover span {
  color: #f3efe9;
}
#global-navigation .wrapper .background {
  width: 100%;
  height: 40vh;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: 0;
}
#global-navigation.hidden {
  top: -100px;
}
#global-navigation.active {
  background: #315178;
  pointer-events: all;
}

footer.my-footer {
  background-image: linear-gradient(to right, #b5ada0 5px, transparent 1px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: left top;
  margin-top: auto;
}
footer.my-footer .container {
  padding: 100px 0 80px;
  width: 1200px;
  margin: 0 auto;
}
footer.my-footer .container .telements {
  display: flex;
  justify-content: space-between;
}
footer.my-footer .container .telements .information h4 {
  font-size: 1.2rem;
  font-weight: 600;
}
footer.my-footer .container .telements .information .address {
  margin-top: 10px;
  line-height: 1.5rem;
}
footer.my-footer .container .telements .links h4 {
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
  display: none;
}
footer.my-footer .container .telements .links .navigation {
  display: flex;
  justify-content: right;
}
footer.my-footer .container .telements .links .navigation li {
  margin: 0 10px;
  font-size: 1.2rem;
}
footer.my-footer .container .telements .links .sns {
  display: flex;
  justify-content: right;
  margin-top: 20px;
}
footer.my-footer .container .telements .links .sns li {
  margin: 0 5px;
  display: flex;
  align-items: center;
  border: solid 1px #555;
  border-radius: 50px;
}
footer.my-footer .container .telements .links .sns li a {
  display: flex;
  align-items: center;
  border-radius: 50px;
  transition: 0.3s;
  padding: 10px 30px;
}
footer.my-footer .container .telements .links .sns li a::after {
  display: none;
}
footer.my-footer .container .telements .links .sns li a i {
  color: #333;
  font-size: 25px;
}
footer.my-footer .container .telements .links .sns li a span {
  margin-bottom: 4px;
  margin-left: 10px;
}
footer.my-footer .container .telements .links .sns li a:hover {
  background: #333;
}
footer.my-footer .container .telements .links .sns li a:hover i,
footer.my-footer .container .telements .links .sns li a:hover span {
  color: #f3efe9;
}
footer.my-footer .container a {
  position: relative;
}
footer.my-footer .container a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #b5ada0;
  left: 0;
  bottom: 0px;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
footer.my-footer .container a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
footer.my-footer .container .button2 a {
  width: 350px;
  text-align: center;
  background: #333;
  border-radius: 50px;
  line-height: 50px;
  color: #f3efe9;
  font-size: 1.2rem;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  transition: 0.3s;
  border: solid 2px #333;
  box-sizing: border-box;
  margin: 30px auto 20px;
  padding: 12px 0;
}
footer.my-footer .container .button2 a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 35px;
  margin: auto 0;
  width: 12px;
  height: 12px;
  border-top: solid 2px #f3efe9;
  border-right: solid 2px #f3efe9;
  transform: rotate(45deg);
  transition: 0.3s;
}
footer.my-footer .container .button2 a::after {
  display: none;
}
footer.my-footer .container .button2 a:hover {
  background: #f3efe9;
  color: #333;
}
footer.my-footer .container .button2 a:hover::before {
  border-color: #333;
  right: 30px;
}
footer.my-footer .container .sp {
  text-align: center;
}
footer.my-footer .copyright {
  text-align: center;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

#my-front,
#my-page {
  margin: 0 auto 100px;
}
#my-front div,
#my-page div {
  --container-max-width: 1200px;
  --padding-inline-end: 0;
  --padding-inline-start: 0;
  row-gap: 0;
  padding-block-end: 0;
  padding-block-start: 0;
  gap: 0;
}
#my-front h2,
#my-page h2 {
  font-family: "Oswald", sans-serif;
  color: #EB1E79;
  font-size: 5rem;
  font-weight: 900;
}
#my-front h3,
#my-page h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.2rem;
  margin: 20px 0 50px;
  font-weight: 500;
  color: #555;
}
#my-front p,
#my-page p {
  font-weight: 400;
}
#my-front a,
#my-page a {
  position: relative;
}
#my-front a::after,
#my-page a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #b5ada0;
  left: 0;
  bottom: 0px;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
#my-front a:hover::after,
#my-page a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
#my-front .button2 a,
#my-page .button2 a {
  width: 350px;
  text-align: center;
  margin-top: 50px;
  background: #333;
  border-radius: 50px;
  line-height: 50px;
  color: #f3efe9;
  font-size: 1.2rem;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  transition: 0.3s;
  border: solid 2px #333;
  box-sizing: border-box;
  padding: 12px 0;
}
#my-front .button2 a::before,
#my-page .button2 a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 35px;
  margin: auto 0;
  width: 12px;
  height: 12px;
  border-top: solid 2px #f3efe9;
  border-right: solid 2px #f3efe9;
  transform: rotate(45deg);
  transition: 0.3s;
}
#my-front .button2 a::after,
#my-page .button2 a::after {
  display: none;
}
#my-front .button2 a:hover,
#my-page .button2 a:hover {
  background: #f3efe9;
  color: #333;
}
#my-front .button2 a:hover::before,
#my-page .button2 a:hover::before {
  border-color: #333;
  right: 30px;
}
#my-front #error-page,
#my-page #error-page {
  text-align: center;
  margin-top: 100px;
}
#my-front #error-page .button2 a,
#my-page #error-page .button2 a {
  margin: 50px auto 0;
}

#my-page .my-article {
  width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1300px) {
  header.my-header {
    background: #f3efe9;
  }
  header.my-header .container {
    justify-content: space-between;
  }
  header.my-header .container .navigation,
  header.my-header .container .sns {
    display: none;
  }
  #global-navigation {
    display: block;
  }
  #my-front h2,
  #my-page h2 {
    font-size: 4rem;
  }
  #my-front h3,
  #my-page h3 {
    font-size: 1.1rem;
    margin: 20px 0 30px;
  }
  #my-front .button2 a,
  #my-page .button2 a {
    margin-top: 30px;
  }
  #my-front .my-article,
  #my-page .my-article {
    margin-top: 50px !important;
  }
  #my-page .my-article {
    width: calc(100% - 80px);
  }
  footer.my-footer .container {
    width: calc(100% - 100px);
    padding: 50px 0 30px;
  }
  footer.my-footer .container .telements {
    flex-direction: column-reverse;
  }
  footer.my-footer .container .telements .information {
    text-align: center;
    margin-top: 50px;
  }
  footer.my-footer .container .telements .information h4 {
    font-size: 1.1rem;
  }
  footer.my-footer .container .telements .information .address {
    font-size: 0.9rem;
  }
  footer.my-footer .container .telements .links .navigation {
    justify-content: center;
  }
  footer.my-footer .container .telements .links .navigation li {
    font-size: 1rem;
  }
  footer.my-footer .container .telements .links .sns {
    justify-content: center;
  }
  footer.my-footer .container .telements .links .sns li a {
    padding: 10px 15px;
  }
  footer.my-footer .container .telements .links .sns li a span {
    margin-left: 5px;
  }
  footer.my-footer .copyright {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 1024px) {
  footer.my-footer .container .button2 a {
    width: 300px;
    line-height: 40px;
    font-size: 1rem;
  }
  #my-front h2,
  #my-page h2 {
    font-size: 3.5rem;
  }
  #my-front h3,
  #my-page h3 {
    font-size: 1rem;
  }
  #my-front p,
  #my-page p {
    font-size: 0.9rem;
  }
  #my-front .button2 a,
  #my-page .button2 a {
    width: 300px;
    line-height: 40px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  #global-navigation .wrapper .container {
    width: calc(100% - 40px);
    max-width: none;
    top: none;
  }
  #global-navigation .wrapper .container h2 {
    font-size: 1.5rem;
  }
  #global-navigation .wrapper .container .navigation {
    margin-top: 0;
  }
  #global-navigation .wrapper .container .navigation li {
    font-size: 1.2rem;
  }
  #global-navigation .wrapper .container .navigation li a {
    padding: 15px 10px;
  }
  #global-navigation .wrapper .sns {
    margin-top: 0;
  }
  #global-navigation .wrapper .sns li {
    margin: 0 10px;
  }
  #global-navigation .wrapper .sns li a {
    padding: 0;
    width: 50px;
    height: 50px;
    position: relative;
    align-items: center;
  }
  #global-navigation .wrapper .sns li a i {
    height: -moz-fit-content;
    height: fit-content;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    font-size: 27px;
  }
  #global-navigation .wrapper .sns li a span {
    display: none;
  }
  footer.my-footer .container {
    padding: 30px 0;
    width: calc(100% - 60px);
  }
  footer.my-footer .container .telements {
    flex-direction: column-reverse;
  }
  footer.my-footer .container .telements .information {
    margin-top: 20px;
  }
  footer.my-footer .container .telements .links h4 {
    display: block;
  }
  footer.my-footer .container .telements .links .navigation {
    display: block;
  }
  footer.my-footer .container .telements .links .navigation li {
    margin: 0;
  }
  footer.my-footer .container .telements .links .navigation li a {
    padding: 10px 20px;
    display: block;
  }
  footer.my-footer .container .telements .links .navigation li a::after {
    display: none;
  }
  footer.my-footer .container .telements .links .navigation li:not(:last-of-type) a {
    background-image: linear-gradient(to right, #b5ada0 5px, transparent 1px);
    background-size: 10px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  footer.my-footer .container .telements .links .sns {
    margin-top: 10px;
  }
  footer.my-footer .container .telements .links .sns li {
    margin: 0 5px;
  }
  footer.my-footer .container .telements .links .sns li a {
    padding: 0;
    width: 50px;
    height: 50px;
    position: relative;
    align-items: center;
  }
  footer.my-footer .container .telements .links .sns li a i {
    height: -moz-fit-content;
    height: fit-content;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    font-size: 27px;
  }
  footer.my-footer .container .telements .links .sns li a span {
    display: none;
  }
  footer.my-footer .container .sp {
    font-size: 0.9rem;
  }
  #my-front,
  #my-page {
    margin-bottom: 50px;
  }
  #my-front .my-article,
  #my-page .my-article {
    margin-top: 50px !important;
  }
  #my-front .button2 a,
  #my-page .button2 a {
    margin-top: 20px;
  }
  #my-page .my-article {
    width: calc(100% - 50px);
  }
}