@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");

/*------------------------------------------
  Base Layout
------------------------------------------*/
:root {
  --color-main: #000;
  --color-sub: #000022;
  --color-text: #000;
  --color-other01: #f2f2f2;
  --color-other02: #626262;
  --c-hmn: #fff;
  --c-cmn-header: rgba(167, 120, 8, 0.7);
  --c-footer-bg: #a77808;
}
html {
  font-size: 62.5%;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
  font-size: 1.6em;
  font-size: 16px;
  background: #fff;
  color: var(--color-text);
  line-height: 1.5;
}
.mincho {
  font-family: "Noto Serif JP", serif;
}
.zen-maru {
  font-family: "Zen Maru Gothic", sans-serif;
}
.oswald {
  font-family: "Oswald", sans-serif;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: var(--color-text);
}
a.blue {
  color: #0000ff;
}
a.blue:not(:hover) {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.wrapper {
  width: 100%;
  height: 100svh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: scroll;
  background: url(../images/common/main_bg.png) no-repeat center / cover;
}
/* Main Logo */
.main-logo {
  position: fixed;
  left: 120px;
  top: 35px;
}
@media only screen and (max-width: 1024px) {
  .main-logo {
    left: 5%;
  }
}
@media only screen and (max-width: 600px) {
  .main-logo {
    display: none;
  }
}

/* テンプレートによって追加・変更 */
.other-btn{
  height: 50px;
/*   font-size: 22px; */
  font-size: 16px;

}
.other-btn a{
color: #222;
border-color: #fff !important;
background: #fff;

}
.svg{
  margin-top: 5px;
}
.u-df img {
  width: 20px;
  margin-left: 3px;
  margin-top: 5px;
}
.u-df i {
  width: 24px;
  margin-top: 5px;
  margin-left: 3px;
}
.u-df {
  display: flex;
  gap: 5px;
  align-items: center;
}
.u-df-r {
flex-direction: row !important;
gap: 0 !important;
}
.u-fz16 {
  font-size: 16px !important;
  color: #fff;
}
.u-fz20 img {

  color: #fff;
}
.u-fz18 {
  font-size: 18px !important;
}
.u-fz24 {
  font-size: 24px;
  color: #fff;
}
.u-word {
  word-break: break-all;
}
.u-word-b {
  word-break: break-all;
  text-decoration: underline;
}
.u-word-b:hover {
  color: #0000ff;
}
.u-word-b a:hover {
  color: #0000ff;
}
.content {
  width: 100%;
  max-width: 390px;
  position: absolute;
  right: 18%;
  top: 0;
  z-index: 99;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.disp-pc {
  display: block;
}
.disp-sp {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .content {
    right: 5%;
  }
}
@media only screen and (max-width: 600px) {
  .content {
    right: 0;
  }
  .disp-pc {
    display: none;
  }
  .disp-sp {
    display: block;
  }
}

/*------------------------------------------
  Pager
------------------------------------------*/
.pager {
  padding-top: 40px;
}
.pager .pagination {
  text-align: center;
  line-height: 0;
}
.pager .pagination li {
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  text-align: center;
  position: relative;
  border-radius: 2px;
}
.pager .pagination li a {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--color-main);
}
.pager .pagination li a:hover {
  color: #fff;
  background: var(--color-main);
}
.pager .pagination li a span {
  display: table-cell;
  vertical-align: middle;
  transform: none;
}
.pager .pagination li .active {
  color: #fff;
  background: var(--color-main);
}
@media only screen and (max-width: 600px) {
  .pager .pagination li {
    display: none;
  }
  .pager .pagination .pre {
    display: inline-block;
    width: 40%;
    height: 50px;
    text-align: center;
  }
  .pager .pagination .pre a {
    width: 100%;
    text-align: center;
  }
  .pager .pagination .pre span:after {
    content: "　前の10件へ";
  }
  .pager .pagination .next {
    display: inline-block;
    width: 40%;
    height: 50px;
    text-align: center;
  }
  .pager .pagination .next a {
    width: 100%;
    text-align: center;
  }
  .pager .pagination .next span:before {
    content: " 次の10件へ　";
  }
}

/*------------------------------------------
  Parts
------------------------------------------*/
/* Title01（トップページ各タイトル） */
.m-title01 {
  display: inline-block;
  line-height: 1.2;
}
.m-title01 > span {
  display: block;
}
.m-title01 .en {
  font-size: 34px;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}
.m-title01 .jp {
  font-size: 18px;
  font-weight: 500;
  display: block;
}

/* Button01 */
.m-button01 a {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--color-sub);
  border-radius: 60px;
  height: 38px;
  padding: 0 2rem;
  transition: 0.3s;
}
.m-button01 a:hover {
  background: var(--color-sub);
  color: #fff;
}

/* News List */
.news-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-list .post {
  border-bottom: 1px solid #000;
  display: block;
  padding: 0.5rem 0;
  position: relative;
}
.news-list .post:after {
  content: "";
  width: 12px;
  height: 20px;
  display: block;
  background: url(../images/common/arrow01.png) no-repeat center / cover;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.news-list .date {
  display: block;
  font-size: 14px;
}

/* dl List */
.dl-box01 {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
.dl-box01 dl {
  border-bottom: 1px solid #d9d9d9;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
.dl-box01 dt {
  width: 95px;
  padding: 0.5rem 0;
  position: relative;
}
.dl-box01 dt:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background: var(--color-sub);
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 2;
}
.dl-box01 dd {
  width: calc(100% - 95px);
  padding: 0.5rem 0 0.5rem 1rem;
}
.dl-box01 dd p {
  margin-bottom: 15px;
}

/*------------------------------------------
  Form
------------------------------------------*/
.form-block {
  width: 100%;
  margin: 3rem auto 0;
}
.form-block .required {
  display: inline-block;
  line-height: 1;
  margin-left: 1rem;
  color: #fff;
  background: var(--color-other02);
  font-size: 12px;
  font-weight: 400;
  border-radius: 8px;
  padding: 2px 8px 3px;
}
.form-block dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.form-block dd {
  width: 100%;
}
.form-block input[type="text"],
.form-block textarea {
  background: #fff;
  border-radius: 3px;
  width: 100%;
  padding: 8px 10px;
  box-sizing: border-box;
  border: 1px solid #000;
}
.form-block .privacy {
  text-align: center;
  margin: 5rem 0;
}
.form-block .submit {
  margin-top: 5rem;
}
.form-block .submit input {
  width: 142px;
  height: 38px;
  line-height: 38px;
  display: block;
  margin: auto;
  text-align: center;
  border: 1px solid var(--color-sub);
  border-radius: 60px;
  transition: 0.3s;
  color: #000;
}
.form-block .submit input:hover {
  background: var(--color-sub);
  color: #fff;
}
.form-block .check {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 5px 15px;
}
.form-block .check > span {
  margin: 0 !important;
}

/*------------------------------------------
  Header
------------------------------------------*/
.cmn-header {
  max-width: 390px;
  width: 100%;
  position: fixed;
  top: 0;
  padding: 1rem 0;
  z-index: 99;
  transition: 0.3s;
}
.cmn-header.changed {
  background: var(--c-cmn-header);
}
.cmn-header .inner {
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 99;
}
.cmn-header .logo {
  width: 192px;
}
.cmn-header .menu-trigger {
  width: 38px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.cmn-header .menu-trigger:hover {
  cursor: pointer;
}
.cmn-header-bg {
  background: var(--c-cmn-header);
}
.cmn-header .menu-trigger span {
  width: 100%;
  height: 2px;
  background: var(--c-hmn);
  display: block;
  transition: 0.3s;
}
.cmn-header .menu-trigger.active span:nth-of-type(1) {
  transform: translateY(9px) rotate(150deg);
}
.cmn-header .menu-trigger.active span:nth-of-type(2) {
  transform: translateY(-5px) rotate(-150deg);
}
.cmn-header .menu-trigger p {
  font-size: 12px;
  line-height: 1;
  color: var(--c-hmn);
}

/* Modal */
.cmn-header .menu {
  max-width: 390px;
  width: 100%;
  height: 100vh;
  background: url(../images/common/sp_menu_bg.png) no-repeat center / cover;
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5rem 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.cmn-header .menu.active {
  z-index: 3;
  opacity: 1;
  visibility: visible;
}
.cmn-header .menu .flex {
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.cmn-header .menu .gitem {
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 24px;
  font-weight: 600;
}
.cmn-header .menu .contact a {
  font-size: 28px;
  color: #fff;
  height: 70px;
  line-height: 68px;
  padding: 0 5rem;
}

/*------------------------------------------
  Footer
------------------------------------------*/
.cmn-footer {
  background: url(../images/common/footer_contact_img.png) no-repeat center /
    cover;
  text-align: center;
  position: relative;
  height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem 0;
}
.cmn-footer .m-title01 {
  color: #fff;
}
.cmn-footer .m-title01 .en {
  font-size: 40px;
}
.cmn-footer .txt {
  color: #fff;
  line-height: 1.8;
}
.cmn-footer .m-button01 a {
  color: #fff;
  border: 1px solid #fff;
}
.cmn-footer .m-button01 a:hover {
  color: #000;
  background: #fff;
}
.cmn-footer .copy {
  text-align: center;
  font-size: 12px;
  background: var(--c-footer-bg);
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3px 0;
}
.footer-copy {
  text-align: center;
  font-size: 12px;
  background: var(--c-footer-bg);
  color: #fff;
  width: 100%;
  padding: 3px 0;
}

/*------------------------------------------
	Animation
------------------------------------------*/
/* 背景色が伸びてからテキスト出現 */
/* 共通 */
.bgLRextendTrigger {
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.bgLRextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*左から右*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-main); /*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

.fix-btn {
  position: sticky;
  bottom: 0px;
  left: 0;
  z-index: 2;
}

.fit-modal {
  position: static;
  left: auto;
}
