@charset "UTF-8";
html {
  width: 100%;
  box-sizing: border-box;
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  font-weight: 400;
  scroll-behavior: smooth;
}

body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #F0F0F0;
}

p {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1.4rem;
  }
}

a {
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: inherit;
  opacity: 0.8;
  cursor: pointer;
}

h2 {
  font-size: 3.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2.4rem;
  }
}

h3 {
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 1.6rem;
  }
}

img {
  max-width: 100%;
}

.section {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.inner {
  max-width: calc(1240px + 13.8%);
  width: 100%;
  padding: 0 6.9%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 500px) {
  .inner {
    padding: 0 20px;
  }
}

/*----------------------------------------------------------*/
/* リンクボタン */
/*----------------------------------------------------------*/
.link-btn {
  border: solid 3px #2F50A0;
  padding: 8px 40px;
  display: block;
  width: fit-content;
  margin: auto;
  justify-content: center;
  margin-top: 80px;
  transition: 0.1s;
}
.link-btn p {
  font-size: 1.8rem;
  color: #2F50A0;
  font-weight: 500;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  transition: 0.1s;
}
.link-btn:hover {
  background-color: #2F50A0;
  transition: 0.5s;
}
.link-btn:hover p {
  color: #FCFCFC;
  transition: 0.1s;
}

/*----------------------------------------------------------*/
/* お問合せボタン */
/*----------------------------------------------------------*/
.contact-btn {
  margin-left: 20px;
}
@media screen and (max-width: 900px) {
  .contact-btn {
    margin-left: 0;
  }
}
.contact-btn a {
  display: block;
  max-width: fit-content;
  margin: auto;
  display: flex;
  background-color: #D53722;
  color: #FCFCFC;
  border-radius: 100px;
  padding: 12px 24px;
}
.contact-btn a:hover {
  background-color: #c72b16;
  opacity: 1;
}
.contact-btn a p {
  line-height: 1;
  border-right: solid 1px #FCFCFC;
  padding-right: 10px;
  margin-right: 8px;
}
@media screen and (max-width: 900px) {
  .contact-btn__img {
    display: none;
  }
}

/*----------------------------------------------------------*/
/* 固定 BACK TO TOPボタン / お問い合わせボタン */
/*----------------------------------------------------------*/
.fix-link {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 28%;
  max-width: 320px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fix-link {
    width: 100%;
    max-width: calc(100% - 32px);
    bottom: 8px;
    right: inherit;
    left: 50%;
    transform: translateX(-50%);
  }
}
.fix-link__top {
  color: #FFF;
  background-color: #341fa8;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  position: relative;
}
.fix-link__top__content {
  position: absolute;
  text-outline: 0 0 #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fix-link__top__content::before {
  content: "\f077";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
}
.fix-link__contact {
  margin-top: 20px;
  display: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .fix-link__contact {
    max-width: 420px;
    margin: auto;
    margin-top: 20px;
  }
}
.fix-link__contact--pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .fix-link__contact--pc {
    display: none;
  }
}
.fix-link__contact--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .fix-link__contact--sp {
    display: block;
    width: 100%;
    border-radius: 12px;
  }
}
@media screen and (max-width: 500px) {
  .fix-link__contact--sp {
    margin: 0 calc(50% - 50vw);
	  min-width: 100vw;
    background-color: #2F50A0;
    border-radius: 0;
    margin-top: 20px;
  }
}

/*----------------------------------------------------------*/
/* セクションタイトル */
/*----------------------------------------------------------*/
.sec_title {
  margin: auto;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec_title {
    margin-bottom: 40px;
  }
}
.sec_title::before {
  content: "";
  display: block;
  width: 60px;
  height: 120px;
  position: absolute;
  top: 0;
  left: 47%;
  transform: translateX(-47%);
  transform: skewX(-30deg);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .sec_title::before {
    height: 100px;
  }
}
.sec_title--white::before {
  background: linear-gradient(rgb(255, 255, 255), rgba(255, 255, 255, 0.4));
}
.sec_title--gray::before {
  background: linear-gradient(rgb(240, 240, 240), rgba(240, 240, 240, 0.4));
}
.sec_title__en {
  font-size: 2.4rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
  font-family: "Saira", sans-serif;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .sec_title__en {
    font-size: 2rem;
  }
}
.sec_title__en .initial {
  color: #2F50A0;
}
.sec_title__jp {
  font-weight: 600;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.sec_title__description {
  font-weight: 500;
  text-align: center;
  max-width: 780px;
  margin: auto;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .sec_title__description {
    text-align: left;
    margin-top: 32px;
  }
}

/*----------------------------------------------------------*/
/* ヘッダー */
/*----------------------------------------------------------*/
.header {
  width: 100%;
  position: fixed;
  z-index: 2;
  display: flex;
  height: 72px;
  background-color: #341fa8;
}
@media screen and (max-width: 900px) {
  .header {
    height: 64px;
  }
}
.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header button:focus {
  outline: none;
}
.header__logo__text {
  font-size: 1rem;
  color: #FCFCFC;
  line-height: 1;
}
.header__logo__img {
  width: 140px;
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .header__logo__img {
    width: 110px;
  }
}
.header__logo__img .img {
  width: 100%;
}
.header__nav-logo {
  display: none;
}
@media screen and (max-width: 900px) {
  .header__nav-logo {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .header__nav-contents {
    display: flex;
    flex-direction: column;
    height: calc(100% - 57px);
    justify-content: space-between;
  }
}

/*hamburger*/
.drawer--right.drawer-open .drawer-hamburger {
  right: 0;
}

.drawer-hamburger {
  width: 28px;
  height: 100%;
  display: none;
  position: relative;
  padding: 18px 0.75rem 26px;
}
@media screen and (max-width: 900px) {
  .drawer-hamburger {
    display: block;
  }
}

.drawer-hamburger-icon {
  background-color: #FCFCFC;
  margin-top: 8px;
}
.drawer-hamburger-icon::before, .drawer-hamburger-icon::after {
  background-color: #FCFCFC;
}

.drawer-nav {
  display: flex;
  background-color: #341fa8;
}
@media screen and (max-width: 900px) {
  .drawer-nav {
    width: 100%;
    height: 100vh;
    flex-direction: column;
    padding: 0 40px;
  }
}
@media screen and (max-width: 500px) {
  .drawer-nav {
    padding: 0 25px;
  }
}
.drawer-nav .header__logo {
  display: none;
}
@media screen and (max-width: 900px) {
  .drawer-nav .header__logo {
    display: block;
    height: 54px;
    margin-top: 5px;
    display: flex;
    align-items: center;
  }
}
.drawer-nav .drawer-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .drawer-nav .drawer-menu {
    margin-top: 32px;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
}
.drawer-nav .drawer-menu__item {
  color: #FCFCFC;
}
@media screen and (max-width: 900px) {
  .drawer-nav .drawer-menu__item {
    width: 100%;
    padding: 20px 0;
    border-bottom: solid 1px #555555;
  }
}
.drawer-nav .drawer-menu__item.contact-btn {
  margin-left: 12px;
}
@media screen and (max-width: 900px) {
  .drawer-nav .drawer-menu__item.contact-btn {
    margin-left: 0;
  }
}
.drawer-nav .drawer-menu__item.contact-btn a {
  display: flex;
  background-color: #D53722;
  border-radius: 100px;
  padding: 12px 24px;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .drawer-nav .drawer-menu__item.contact-btn a {
    background-color: rgba(255, 255, 255, 0);
    padding: 0;
    margin: 0;
  }
}
.drawer-nav .drawer-menu__item.contact-btn a:hover {
  background-color: #c72b16;
  opacity: 1;
}
@media screen and (max-width: 900px) {
  .drawer-nav .drawer-menu__item.contact-btn a:hover {
    background-color: rgba(255, 255, 255, 0);
    opacity: 0.7;
  }
}
@media screen and (max-width: 900px) {
  .drawer-nav .drawer-menu__item.contact-btn a p {
    border-right: none;
  }
}
@media screen and (max-width: 900px) {
  .drawer-nav .drawer-menu__item.contact-btn a img {
    display: none;
  }
}

.drawer--right .drawer-nav {
  position: inherit;
  width: fit-content;
}
@media screen and (max-width: 900px) {
  .drawer--right .drawer-nav {
    right: -100%;
    position: absolute;
    width: 100%;
  }
}

/*----------------------------------------------------------*/
/* フッター */
/*----------------------------------------------------------*/
.footer {
  background-color: #341fa8;
  color: #FCFCFC;
  padding-top: 40px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 100px;
  }
}
@media screen and (max-width: 500px) {
  .footer {
    margin-top: 20px;
    padding-bottom: 0;
  }
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  row-gap: 12px;
  width: fit-content;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    gap: 20px;
  }
}
.footer__logo {
  display: block;
  width: fit-content;
  margin: auto;
  margin-top: 40px;
}
.footer__copyright small {
  display: block;
  width: fit-content;
  text-align: center;
  font-size: 1.2rem;
  width: 100%;
  margin-top: 28px;
}

.footer__fix-link__contact {
  display: none;
}
/*----------------------------------------------------------*/
/* 下層ページ共通 */
/*----------------------------------------------------------*/
.page .sec_title {
  margin-bottom: 40px;
  width: 90%;
  max-width: 800px;
  background-color: #F0F0F0;
  padding: 60px 40px;
  margin-top: -260px;
  border-radius: 8px 8px 0 0;
}
@media screen and (max-width: 768px) {
  .page .sec_title {
    margin-bottom: 20px;
    width: 100%;
    padding: 24px 16px;
    margin-top: -180px;
  }
}
.page .sec_title::before {
  top: 50px;
}
@media screen and (max-width: 768px) {
  .page .sec_title::before {
    top: 20px;
    left: 40%;
  }
}
.page .p-header {
  width: 100%;
  height: 320px;
}
@media screen and (max-width: 768px) {
  .page .p-header {
    height: 260px;
  }
}
.page .p-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 800px;
  display: block;
  background-color: rgba(255, 255, 255, 0.05);
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 20%, transparent 40%), radial-gradient(rgba(255, 255, 255, 0.2) 20%, transparent 40%);
  background-size: 6px 6px;
  background-position: 0 0, 3px 3px;
}
.page .p-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.post table td{
border-collapse:collapse;
background-color:#F9F9F9;
text-align:left;
padding:8px;
border:1px solid #D6D6D6;
line-height:20px;
}

.post table th{
background-color:#F5F5F5;
text-align:right;
padding:8px;
white-space:nowrap;
color: #151515;
border-top:1px solid #D4D4D4;
border-right:4px solid #D4D4D4;
border-bottom:1px solid #D4D4D4;
border-left:1px solid #D4D4D4;
font-size:13px;
font-weight:normal;
letter-spacing:1px;
background-repeat:repeat-x;
background-position:top;
}



.post_2 table{
border-collapse:collapse;
margin:5px auto 15px auto;
}

.post_2 table td{
border-collapse:collapse;
background-color:#ffffff;
text-align:center;
padding:8px;
border:1px solid #ffffff;
line-height:20px;
}

.post_3 table{
border-collapse:collapse;
margin:5px auto 15px auto;
}

.post_3 table td{
border-collapse:collapse;
background-color:#ffffff;
text-align:center;
padding:8px;
border:1px solid #D6D6D6;
line-height:20px;
}

.post_3 table th{
background-color:#F5F5F5;
text-align:center;
padding:8px;
white-space:nowrap;
color: #151515;
border-top:1px solid #D4D4D4;
border-right:1px solid #D4D4D4;
border-bottom:1px solid #D4D4D4;
border-left:1px solid #D4D4D4;
font-size:13px;
font-weight:bold;
letter-spacing:1px;
background-repeat:repeat-x;
background-position:top;
}