@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: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #514945;
  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;
  color: #514945;
}

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

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

li {
  list-style: none;
}

section {
  box-sizing: border-box;
}

.e_enTxt {
  font-family: "League Spartan", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.e_enTxt2 {
  font-family: "Konkhmer Sleokchher", system-ui;
  font-weight: 500;
  font-style: normal;
}

.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 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section__title {
    text-align: left;
  }
}

.header {
  padding: 20px 40px;
  position: fixed;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }
}
.header__logo img {
  width: 60px;
}
.header__inner {
  display: flex;
  justify-content: space-between;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header__nav ul li a {
  color: #fff;
  font-family: "Konkhmer Sleokchher", system-ui;
  font-size: 18px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .header__nav ul li a {
    font-size: 15px;
  }
}
.header__contact {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .header__contact {
    width: 150px;
  }
}

.header__btns {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

/* 三本線 */
.header__btns .btn {
  width: 28px;
  height: 18px;
  position: relative;
}

.header__btns .btn span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background: #555;
  transition: 0.3s;
  border-radius: 5px;
}

.header__btns .btn span:nth-child(1) {
  top: 0;
  width: 55%;
}

.header__btns .btn span:nth-child(2) {
  top: 8px;
  width: 80%;
}

.header__btns .btn span:nth-child(3) {
  bottom: 0;
  width: 100%;
}

/* MENU文字 */
.header__btns .text {
  font-size: 18px;
  letter-spacing: 0.15em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .header__btns .text {
    display: none;
  }
}

.header__btns.is-open .btn span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  width: 100%;
}

.header__btns.is-open .btn span:nth-child(2) {
  opacity: 0;
  width: 100%;
}

.header__btns.is-open .btn span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hamburger__nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: 0.4s;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hamburger__nav.is-open {
  right: 0;
}

.hamburger__nav ul {
  list-style: none;
  text-align: center;
}

.hamburger__nav li {
  margin: 30px 0;
}

.hamburger__nav a {
  font-size: 22px;
  text-decoration: none;
  color: #333;
}

.footer {
  background: #504945;
  padding: 50px 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 25px;
  }
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    display: block;
  }
}
.footer__right {
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__right {
    width: 100%;
  }
}
.footer__address {
  color: #fff;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .footer__address {
    width: 50%;
    font-size: 12px;
  }
}
.footer__left {
  width: 42%;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .footer__left {
    width: 100%;
    gap: 25px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
  }
}
.footer__sns {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__sns {
    width: 46%;
    gap: 0;
    justify-content: space-between;
  }
  .footer__sns a {
    width: 47%;
  }
}
.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 35px;
}
.footer__nav ul a {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__nav ul a {
    font-size: 13px;
  }
}
.footer__nav ul li {
  position: relative;
}
.footer__nav ul li::after {
  content: "";
  height: 100%;
  width: 1px;
  background: #fff;
  transform: rotate(30deg) translateY(-50%);
  display: block;
  position: absolute;
  right: -15px;
  top: 50%;
}
.footer__nav ul li:last-child::after {
  display: none;
}
.footer__copy {
  text-align: center;
  color: #fff;
  font-size: 12px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    margin-top: 20px;
  }
}

.fade-in {
  opacity: 0;
  /* 初期状態で透明 */
  /* 下に少しずらす */
  transform: translateY(100px);
  transition: all 0.5s ease;
  /* アニメーションの設定 */
}

.fade-in.fade-top {
  transform: translateY(200px);
  transition: opacity 1s 0.4s ease, transform 1.4s 0.4s ease;
}

.fade-in.fade-bottom {
  transform: translateY(-200px);
  transition: opacity 1s 0.4s ease, transform 1.4s 0.4s ease;
}

.fade-in.fade-left {
  transform: translateX(-200px);
  transition: opacity 1s 0.4s ease, transform 1.4s 0.4s ease;
}

.fade-in.fade-right {
  transform: translateX(200px);
  transition: opacity 1s 0.4s ease, transform 1.4s 0.4s ease;
}

.fade-in.show {
  opacity: 1;
  /* 表示 */
  transform: translateY(0);
  /* 元の位置 */
}/*# sourceMappingURL=style.css.map */

.mw_wp_form .error {
	margin-top:10px !important;
}