@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 100%;
  scroll-behavior: auto;
}

body {
  color: #222;
  background-color: #fff;
  font-family: "Noto Serif JP", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Roboto, MotoyaLCedar, sans-serif;
}

@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
}

@media screen and (min-width: 1441px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .br_sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 1441px) {
  .sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .sp {
    display: none;
  }
}

.wide {
  width: 1200px;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .wide {
    width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .wide {
    width: 350px;
  }
}

a, th, td {
  font-size: 1.1vw;
}

.fade-in {
  opacity: 0;
  transition-duration: 0.6s;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 40px);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

p {
  font-size: 1.1vw;
  line-height: 1.8;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  p {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 4vw;
  }
}

h1 {
  font-size: 3.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 8vw;
  }
}

h2 {
  font-size: 2.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h2 {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 6vw;
  }
}

h3 {
  font-size: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h3 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 5vw;
  }
}

h4 {
  font-size: 1.6vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h4 {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 4.5vw;
  }
}

h5 {
  font-size: 1.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h5 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 4.2vw;
  }
}

#lower {
  position: relative;
  margin-bottom: 3rem;
}
#lower .lower {
  width: 100%;
  height: 30vw;
  background-position: center;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower {
    height: 40vw;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower {
    height: 50vw;
  }
}
#lower .lower .lower_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#lower .lower_contents {
  position: absolute;
  top: 50%;
  left: 3%;
  display: inline-block;
}
#lower .lower_contents .headline {
  color: #fff;
  font-size: 2.5vw;
  letter-spacing: 0.4vw;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #lower .lower_contents .headline {
    font-size: 5.5vw;
  }
}
#lower .lower_contents p {
  font-family: "Cinzel", serif;
  color: #fff;
  font-size: 2vw;
  text-align: center;
}

.lower_headline {
  padding: 0.5vw 0;
  padding-left: 2vw;
  margin-bottom: 2vw;
  position: relative;
  color: #222;
  font-weight: 400;
  background-color: rgba(255, 255, 255, 0.1);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .lower_headline {
    padding: 1vw 0;
    padding-left: 1vw;
  }
}
@media screen and (max-width: 768px) {
  .lower_headline {
    padding: 2vw 0;
    padding-left: 2vw;
    font-size: 5vw;
  }
}
.lower_headline::before {
  position: absolute;
  content: "";
  width: 0.7vw;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #202d72;
}

.back-to-top {
  display: none;
  position: fixed;
  z-index: 9999;
  right: 5%;
  bottom: 5%;
  color: #fff;
  background-color: #202d72;
  padding: 0.5rem 1rem;
  font-size: 2vw;
  display: inline-block;
  text-decoration: none;
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3), 1px -1px 2px rgba(255, 255, 255, 0.3), -1px 1px 2px rgba(255, 255, 255, 0.3), -1px -1px 2px rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 768px) {
  .back-to-top {
    display: none !important;
  }
}

@media screen and (min-width: 1441px) {
  .topBtnSp {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .topBtnSp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .topBtnSp {
    display: none !important;
  }
}
.topBtnSp {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  color: #333;
  background-color: #fff;
  padding: 1rem;
  font-size: 3vw;
  width: 100% !important;
  text-decoration: none;
  text-align: center;
}
.topBtnSp::before {
  width: 100% !important;
  height: 20vw !important;
  border-radius: 0 !important;
}
.topBtnSp i {
  font-size: 4vw;
}
.topBtnSp p {
  font-size: 3vw;
}

.back-to-top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50px;
  z-index: -1;
}

.grecaptcha-badge {
  z-index: 99999 !important;
}

.loading {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  font-size: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
}
.loading .loading_text {
  width: 50vw;
  height: 50vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.loading .loadinglogo {
  animation: 0.5s flashing infinite;
  width: 40%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .loading .loadinglogo {
    width: 80%;
  }
}
.loading .loadinglogo img {
  width: 100%;
}

.spinner-box {
  width: 300px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
.spinner-box .pulse-container {
  width: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.spinner-box .pulse-container .pulse-bubble {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #202d72;
}
.spinner-box .pulse-container .pulse-bubble-1 {
  animation: pulse 0.4s ease 0s infinite alternate;
}
.spinner-box .pulse-container .pulse-bubble-2 {
  animation: pulse 0.4s ease 0.2s infinite alternate;
}
.spinner-box .pulse-container .pulse-bubble-3 {
  animation: pulse 0.4s ease 0.4s infinite alternate;
}

@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0.25;
    transform: scale(0.75);
  }
}
.loading.active {
  opacity: 1;
  visibility: visible;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
}
header #header_pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2vw;
}
@media screen and (max-width: 768px) {
  header #header_pc {
    display: none;
  }
}
header #header_pc .header_logo {
  width: 10%;
  padding-top: 2vw;
}
header #header_pc .header_logo img {
  width: 100%;
}
header #header_pc .header_menu {
  width: 50%;
}
header #header_pc .header_menu ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
header #header_pc .header_menu ul li {
  height: 100%;
}
header #header_pc .header_menu ul li a {
  display: block;
  height: 100%;
  text-decoration: none;
  font-size: 1.1vw;
  color: #fff;
  position: relative;
  padding: 0 1vw 0.5vw;
  padding-top: 2vw;
  transition: all 0.4s;
  text-shadow: 0 0 5px #000;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  header #header_pc .header_menu ul li a {
    font-size: 1.2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc .header_menu ul li a {
    font-size: 1.3vw;
  }
}
header #header_pc .header_menu ul li a:hover {
  color: #dce2ff;
}
header #header_pc .header_menu ul li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #dce2ff;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s; /*変形の時間*/
}
header #header_pc .header_menu ul li a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
header #header_pc .header_menu ul li a.current {
  color: #dce2ff;
}
header #header_pc .header_menu ul li .new_twitter:before {
  content: "𝕏" !important;
  font-family: sans-serif !important;
  font-weight: bold;
}
@media screen and (min-width: 1441px) {
  header #header_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  header #header_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_sp {
    display: none;
  }
}
header #header_sp .header_sp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4vw;
  height: 60px;
}
header #header_sp .header_sp .header_logo {
  width: 25vw;
  margin-top: 2rem;
}
header #header_sp .header_sp .header_logo img {
  width: 100%;
}
header #header_sp .header_sp_bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(32, 46, 114, 0.9);
}
header #header_sp .header_sp_bottom ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
  list-style: none;
}
header #header_sp .header_sp_bottom ul li a {
  text-decoration: none;
  color: #fff;
}
header #header_sp .header_sp_bottom ul li a .header_icon {
  text-align: center;
  margin-top: 2vw;
  height: 8vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
header #header_sp .header_sp_bottom ul li a .header_icon i {
  font-size: 6vw;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  z-index: 10005;
  width: 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  position: relative;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #fff;
  transition: 0.3s ease-in-out;
}

.hamburger p {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
}

.hamburger span:nth-child(1) {
  top: 5px;
  left: 50%;
  transform: translate(-50%, 0);
}

.hamburger span:nth-child(2) {
  top: 15px;
  left: 50%;
  transform: translate(-50%, 0);
}

.hamburger span:nth-child(3) {
  top: 25px;
  left: 50%;
  transform: translate(-50%, 0);
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 15px;
  background: #fff;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  left: 15px;
  background: #fff;
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 10000;
  bottom: 0;
  left: 0;
  color: #fff;
  background: rgba(32, 46, 114, 0.9);
  text-align: center;
  width: 100%;
  height: 50vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

nav.globalMenuSp .ul {
  margin: auto;
  margin-top: 0 !important;
  margin-bottom: 4vw !important;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
nav.globalMenuSp .ul .new_twitter:before {
  content: "𝕏" !important;
  font-family: sans-serif !important;
  font-weight: bold;
}

.sns {
  justify-content: center !important;
}

nav.globalMenuSp .ul li {
  list-style-type: none;
  padding: 0;
  width: 45%;
  transition: 0.4s all;
  margin-bottom: 20px;
}

nav.globalMenuSp .ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp .ul li:hover {
  background: #dce2ff;
}

nav.globalMenuSp .ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  font-size: 3.5vw;
  padding: 0 4vw;
  padding-bottom: 2vw;
  border-bottom: 1px solid #fff;
}
nav.globalMenuSp .ul li a i {
  margin-right: 2vw;
}

.header_sp_policy {
  text-align: center;
  margin-bottom: 8vw;
}
.header_sp_policy a {
  text-decoration: none;
  color: #fff;
  font-size: 3.5vw;
  padding: 0 4vw;
  padding-bottom: 2vw;
  border-bottom: 1px solid #fff;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  visibility: visible;
}

#top_main {
  overflow: hidden;
}
#top_main .top_main {
  width: 100vw;
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top_main .top_main {
    height: 100vw;
  }
}
#top_main .top_main .top_main_title {
  width: 100%;
  position: absolute;
  text-align: center;
  z-index: 10;
  top: 45%;
  left: 0%;
  text-shadow: 1px 1px 2px #333;
}
#top_main .top_main .top_main_title #top_text01 {
  color: #fff;
  font-size: 3vw;
  animation: fadeIn 3s ease 2s forwards normal;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #top_main .top_main .top_main_title #top_text01 {
    font-size: 5vw;
  }
}
#top_main .top_main .top_main_title #top_text02 {
  color: #fff;
  padding-top: 1vw;
  font-size: 3vw;
  animation: fadeIn 3s ease 4s forwards normal;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #top_main .top_main .top_main_title #top_text02 {
    font-size: 5vw;
  }
}
#top_main .top_main .slider {
  width: 100%;
  height: 100%;
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
  position: relative;
}
#top_main .top_main .slider::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.0025);
  top: 0;
  left: 0;
}
#top_main .top_main .slider .slick-list {
  width: 100%;
  height: 100%;
}
#top_main .top_main .slider .slick-list .slick-track {
  width: 100%;
  height: 100%;
}
#top_main .top_main .slider .slick-list .slick-track .slick-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

#top_news {
  background-color: #f7f7f7;
  overflow: hidden;
}
#top_news .top_news {
  width: 80%;
  margin: auto;
  padding: 2vw 0;
  margin-bottom: 3rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news {
    width: 95%;
    padding: 8vw 0;
  }
}
#top_news .top_news .top_news_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_flex {
    margin-bottom: 8vw;
  }
}
#top_news .top_news .top_news_flex .top_headline {
  color: #202d72;
}
#top_news .top_news .top_news_flex .top_headline h2 {
  font-family: "Cinzel", serif;
  margin-bottom: 0.5vw;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_flex .top_headline h2 {
    font-size: 8vw;
    margin-bottom: 1vw;
  }
}
#top_news .top_news .top_news_flex .top_headline p {
  text-align: center;
}
#top_news .top_news .top_news_flex .top_news_btn a {
  text-decoration: none;
  transition: all 0.2s;
}
#top_news .top_news .top_news_flex .top_news_btn a:hover {
  border-bottom: 1px solid #333;
  opacity: 0.8;
}
#top_news .top_news .top_news_flex .top_news_btn a button {
  border: none;
  background-color: rgba(0, 0, 0, 0);
  color: #333;
  letter-spacing: 0.2vw;
  cursor: pointer;
}
#top_news .top_news .top_news_flex .top_news_btn a button i {
  margin-left: 0.25rem;
}
#top_news .top_news .top_news_contents ul {
  list-style: none;
}
#top_news .top_news .top_news_contents ul a {
  text-decoration: none;
}
#top_news .top_news .top_news_contents ul a li {
  border-bottom: 2px dotted #333;
  padding-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul a li {
    padding-bottom: 2vw;
  }
}
#top_news .top_news .top_news_contents ul a li .outline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul a li .outline {
    flex-flow: column;
    align-items: flex-start;
  }
}
#top_news .top_news .top_news_contents ul a li .outline .date {
  padding: 0.5vw;
  color: #fff;
  background-color: #202d72;
  margin-right: 2vw;
  font-size: 0.8vw;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul a li .outline .date {
    margin-right: 0;
    margin-bottom: 2vw;
    font-size: 3vw;
  }
}
#top_news .top_news .top_news_contents ul a li .outline .title {
  color: #333;
  font-size: 1.2vw;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul a li .outline .title {
    font-size: 3vw;
  }
}

#top_contents {
  overflow: hidden;
}
#top_contents .top_contents {
  position: relative;
  padding: 5rem 0;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #top_contents .top_contents {
    padding: 0;
  }
}
#top_contents .top_contents:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 5;
}
#top_contents .top_contents .contents {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  padding: 4vw 0;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contents .top_contents .contents {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #top_contents .top_contents .contents {
    width: 100%;
    flex-flow: column;
  }
}
#top_contents .top_contents .contents .contents_image {
  width: 50%;
  height: 40vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contents .top_contents .contents .contents_image {
    width: 50%;
    height: 50vw;
  }
}
@media screen and (max-width: 768px) {
  #top_contents .top_contents .contents .contents_image {
    width: 100%;
    height: 70vw;
  }
}
#top_contents .top_contents .contents .contents_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_contents .top_contents .contents .contents_writing {
  position: relative;
  width: 42.5vw;
  padding: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contents .top_contents .contents .contents_writing {
    padding: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #top_contents .top_contents .contents .contents_writing {
    width: 100%;
    padding: 3rem 2rem;
  }
}
#top_contents .top_contents .contents .contents_writing .headline {
  position: relative;
  margin-bottom: 2vw;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #top_contents .top_contents .contents .contents_writing .headline {
    margin-bottom: 8vw;
  }
}
#top_contents .top_contents .contents .contents_writing .headline::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #333;
  bottom: 0%;
  left: 0;
}
@media screen and (max-width: 768px) {
  #top_contents .top_contents .contents .contents_writing .headline::after {
    bottom: -10%;
  }
}
#top_contents .top_contents .contents .contents_writing .headline h2 {
  font-family: "Cinzel", serif;
  color: #333;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 768px) {
  #top_contents .top_contents .contents .contents_writing .headline h2 {
    width: 100%;
  }
}
#top_contents .top_contents .contents .contents_writing .headline h3 {
  color: #202d72;
  padding: 0 1vw;
  font-size: 1.3vw;
}
@media screen and (max-width: 768px) {
  #top_contents .top_contents .contents .contents_writing .headline h3 {
    font-size: 3.5vw;
  }
}
#top_contents .top_contents .contents .contents_writing .text p {
  color: #333;
}

#contents_divide {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: grayscale(80%);
  height: 40vw;
}
@media screen and (max-width: 768px) {
  #contents_divide {
    height: 60vw;
    background-attachment: scroll;
  }
}

#bottom_contents {
  overflow: hidden;
  background: #fff;
}
#bottom_contents .bottom_contents {
  padding: 5rem 0;
}
#bottom_contents .bottom_contents .contents {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  padding: 4vw 0;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #bottom_contents .bottom_contents .contents {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents {
    width: 100%;
    flex-flow: column;
  }
}
#bottom_contents .bottom_contents .contents .contents_image {
  width: 50%;
  height: 40vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #bottom_contents .bottom_contents .contents .contents_image {
    width: 50%;
    height: 50vw;
  }
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents .contents_image {
    width: 100%;
    height: 70vw;
  }
}
#bottom_contents .bottom_contents .contents .contents_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#bottom_contents .bottom_contents .contents .contents_writing {
  position: relative;
  width: 42.5vw;
  padding: 2vw;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #bottom_contents .bottom_contents .contents .contents_writing {
    padding: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents .contents_writing {
    width: 100%;
    padding: 3rem 2rem;
  }
}
#bottom_contents .bottom_contents .contents .contents_writing .headline {
  position: relative;
  margin-bottom: 2vw;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents .contents_writing .headline {
    margin-bottom: 8vw;
  }
}
#bottom_contents .bottom_contents .contents .contents_writing .headline::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #333;
  bottom: 0%;
  left: 0;
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents .contents_writing .headline::after {
    bottom: -10%;
  }
}
#bottom_contents .bottom_contents .contents .contents_writing .headline h2 {
  font-family: "Cinzel", serif;
  color: #333;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents .contents_writing .headline h2 {
    width: 100%;
  }
}
#bottom_contents .bottom_contents .contents .contents_writing .headline h3 {
  color: #202d72;
  padding: 0 1vw;
  font-size: 1.3vw;
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents .contents_writing .headline h3 {
    font-size: 3.5vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #bottom_contents .bottom_contents .contents .contents_writing .text {
    line-height: 3.5vw;
  }
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents .contents_writing .text {
    line-height: 5vw;
  }
}
#bottom_contents .bottom_contents .contents .contents_writing .text p {
  color: #333;
}
#bottom_contents .bottom_contents .contents .contents_writing .top_recruit_btn {
  width: 50%;
  margin: 0 auto;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents .contents_writing .top_recruit_btn {
    width: 100%;
    margin: auto;
    margin-top: 2rem;
  }
}
#bottom_contents .bottom_contents .contents .contents_writing .top_recruit_btn a {
  text-decoration: none;
}
#bottom_contents .bottom_contents .contents .contents_writing .top_recruit_btn a button {
  width: 100%;
  font-size: 1vw;
  color: #fff;
  background-color: #202d72;
  padding: 0.5vw 1vw;
  border: none;
  border-radius: 10px;
  transition: all 0.4s;
  cursor: pointer;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #bottom_contents .bottom_contents .contents .contents_writing .top_recruit_btn a button {
    font-size: 1.8vw;
    padding: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents .contents_writing .top_recruit_btn a button {
    padding: 2.5vw;
    font-size: 3.5vw;
  }
}
#bottom_contents .bottom_contents .contents .contents_writing .top_recruit_btn a button i {
  margin-left: 1rem;
}
#bottom_contents .bottom_contents .contents .contents_writing .top_recruit_btn a button:hover {
  color: #fff;
  background-color: #333;
}
#bottom_contents .bottom_contents .contents_child03 {
  margin-left: auto;
  flex-flow: row-reverse;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #bottom_contents .bottom_contents .contents_child03 {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents_child03 {
    width: 100%;
    flex-flow: column;
  }
}
#bottom_contents .bottom_contents .contents_child03 img {
  -o-object-position: center;
     object-position: center;
}

#flex_contents {
  overflow: hidden;
}
#flex_contents .flex_contents {
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #flex_contents .flex_contents {
    margin-bottom: 0;
  }
}
#flex_contents .flex_contents ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 20vw;
  list-style: none;
}
@media screen and (max-width: 768px) {
  #flex_contents .flex_contents ul {
    flex-flow: column;
    height: auto;
  }
}
#flex_contents .flex_contents ul li {
  width: 33.3333333333%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  #flex_contents .flex_contents ul li {
    width: 100%;
    height: 60vw;
  }
}
#flex_contents .flex_contents ul li .list {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: all 0.4s;
}
#flex_contents .flex_contents ul li .list:hover {
  transform: scale(1.1);
}
#flex_contents .flex_contents ul li .list .list_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}
#flex_contents .flex_contents ul li .list .list_bg:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#flex_contents .flex_contents ul li .list .list_bg .wt {
  width: 65%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-100%, 0);
  transition: all 0.4s;
}
#flex_contents .flex_contents ul li .list .list_bg .wb {
  width: 30vw;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 87%;
  left: 190%;
  transform: translate(-100%, 0);
  transition: all 0.4s;
}
#flex_contents .flex_contents ul li .list .list_bg .ht {
  width: 1px;
  height: 50%;
  background-color: #fff;
  position: absolute;
  bottom: -100%;
  left: 35%;
  transform: translate(0, -100%);
  transition: all 0.4s;
}
#flex_contents .flex_contents ul li .list .list_bg .hb {
  width: 1px;
  height: 90%;
  background-color: #fff;
  position: absolute;
  bottom: 10%;
  left: 91%;
  transform: translate(0, -100%);
  transition: all 0.4s;
}
#flex_contents .flex_contents ul li .list_headline {
  position: absolute;
  top: 60%;
  right: 10%;
  width: 50%;
  pointer-events: none;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #flex_contents .flex_contents ul li .list_headline {
    width: 40%;
  }
}
#flex_contents .flex_contents ul li .list_headline h2 {
  font-family: "Cinzel", serif;
  font-size: 1.3vw;
  color: #202d72;
  background-color: #fff;
  padding: 0.3vw 0;
}
@media screen and (max-width: 768px) {
  #flex_contents .flex_contents ul li .list_headline h2 {
    padding: 1vw 0;
    font-size: 3.3vw;
  }
}
#flex_contents .flex_contents ul li .list_headline p {
  padding: 0.3vw 0;
  color: #fff;
  background-color: #202d72;
  font-size: 0.9vw;
}
@media screen and (max-width: 768px) {
  #flex_contents .flex_contents ul li .list_headline p {
    padding: 1vw 0;
    font-size: 1.6vw;
  }
}

#service .service {
  width: 100%;
}
#service .service .service_text {
  width: 90%;
  margin: 5rem auto;
}
@media screen and (max-width: 768px) {
  #service .service .service_text {
    width: 95%;
  }
}
#service .service .service_contents ul {
  list-style: none;
}
#service .service .service_contents ul li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  #service .service .service_contents ul li {
    flex-flow: column;
    background-attachment: scroll;
    width: 100%;
    height: auto;
    padding: 5rem 0;
  }
}
#service .service .service_contents ul li:nth-child(odd):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#service .service .service_contents ul li:nth-child(even):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#service .service .service_contents ul li:nth-child(even) {
  flex-flow: row-reverse;
}
@media screen and (max-width: 768px) {
  #service .service .service_contents ul li:nth-child(even) {
    flex-flow: column;
  }
}
#service .service .service_contents ul li .list_writing {
  width: 50%;
  padding: 3vw;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents ul li .list_writing {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents ul li .list_writing {
    width: 95%;
    margin: auto;
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
}
#service .service .service_contents ul li .list_writing h2 {
  font-size: 2vw;
  margin-bottom: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents ul li .list_writing h2 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents ul li .list_writing h2 {
    text-align: center;
    font-size: 6vw;
  }
}
#service .service .pdf_block {
  text-align: center;
  padding: 3rem 2rem;
  background: #f7f8fc;
  border-radius: 12px;
}
@media screen and (max-width: 768px) {
  #service .service .pdf_block {
    padding: 3rem 0;
  }
}
#service .service .pdf_block h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #202E72;
}
#service .service .pdf_block p {
  margin-bottom: 2rem;
  color: #333;
}
#service .service .pdf_block .pdf_btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #202E72;
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: 0.3s;
  text-decoration: none;
}
#service .service .pdf_block .pdf_btn:hover {
  opacity: 0.8;
}

.service_category {
  margin-bottom: 6rem;
}
.service_category:nth-child(even) .service_contents ul {
  list-style: none;
}
.service_category:nth-child(even) .service_contents ul li {
  flex-flow: row-reverse;
}
@media screen and (max-width: 768px) {
  .service_category:nth-child(even) .service_contents ul li {
    flex-flow: column;
  }
}
.service_category .service_category_title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.service_category .service_category_title .en {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: #202E72;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.service_category .service_category_title .jp {
  display: block;
  font-size: 2.4vw;
  font-weight: bold;
  color: #111;
}
@media screen and (max-width: 768px) {
  .service_category .service_category_title .jp {
    font-size: 6vw;
  }
}
.service_category .service_category_title:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #202E72;
  margin: 1rem auto 0;
  border-radius: 2px;
}
.service_category .service_category_title:before {
  content: "SERVICE";
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5vw;
  color: rgba(32, 46, 114, 0.08);
  letter-spacing: 0.2em;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .service_category .service_category_title:before {
    font-size: 10vw;
  }
}

.list_writing {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}
.list_writing .mini_label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  background: #202d72;
  color: #fff;
  margin-bottom: 1rem;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .list_writing .mini_label {
    text-align: center;
    display: table;
    margin: 0 auto 1rem auto;
  }
}
.list_writing p {
  line-height: 1.8;
}

.security_cert {
  max-width: 700px;
  margin: 4rem auto 0;
  padding: 3rem 2rem;
  background: #fff;
  border: 2px solid #202E72;
  border-radius: 12px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .security_cert {
    padding: 3rem 0;
  }
}
.security_cert:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(32, 46, 114, 0.2);
  border-radius: 10px;
  pointer-events: none;
}
.security_cert .security_cert_head {
  margin-bottom: 1.5rem;
}
.security_cert .security_cert_head .label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: #202E72;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.security_cert .security_cert_head h3 {
  font-size: 1.6rem;
  color: #202E72;
  font-weight: bold;
}
.security_cert p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.security_cert .cert_btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #202E72;
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: 0.3s;
  text-decoration: none;
}
.security_cert .cert_btn:hover {
  opacity: 0.8;
}

#company .company {
  padding: 3rem 0;
}
#company .company .company_contents {
  width: 80%;
  margin: auto;
  margin-bottom: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company .company_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents {
    width: 95%;
    margin-bottom: 2rem;
  }
}
#company .company .company_contents .representative_photo {
  width: 300px;
  margin: 0 auto 3rem;
}
#company .company .company_contents .representative_photo img {
  width: 100%;
  height: auto;
  display: block;
}
#company .company .company_contents table {
  width: 100%;
  margin: auto;
  margin-bottom: 2vw;
  border-collapse: collapse;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company .company_contents table {
    width: 100%;
    margin-bottom: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table {
    width: 100%;
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table tr {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column;
    border-bottom: 1px solid #222;
  }
}
#company .company .company_contents table tr th, #company .company .company_contents table tr td {
  padding: 1.5vw;
  color: #222;
  border-bottom: 1px solid #222;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company .company_contents table tr th, #company .company .company_contents table tr td {
    padding: 3vw;
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table tr th, #company .company .company_contents table tr td {
    padding: 8vw 4vw;
    font-size: 3.3vw;
    text-align: start;
    border-bottom: none;
  }
}
#company .company .company_contents table tr th {
  width: 30%;
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table tr th {
    width: 100%;
    padding-bottom: 1.5vw;
  }
}
#company .company .company_contents table tr td {
  width: 70%;
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table tr td {
    width: 100%;
    padding-top: 1.5vw;
  }
}
#company .company .company_contents table tr .ceo {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
#company .company .company_contents table tr .ceo img {
  display: block;
  width: 120px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
#company .company .company_contents .map {
  width: 100%;
}
#company .company .company_contents .map iframe {
  width: 100%;
}

#sales .sales {
  width: 80%;
  margin: auto;
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #sales .sales {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #sales .sales {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #sales .sales .lower_headline {
    margin-bottom: 6vw;
  }
}
#sales .sales ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #sales .sales ul {
    flex-flow: column;
  }
}
#sales .sales ul li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 45%;
  margin-bottom: 2vw;
  padding-bottom: 1vw;
  border-bottom: 1px solid #222;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #sales .sales ul li {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  #sales .sales ul li {
    width: 100%;
  }
}
#sales .sales ul li .sales_name {
  width: 40%;
}
#sales .sales ul li .sales_name h4 {
  color: #222;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #sales .sales ul li .sales_name h4 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #sales .sales ul li .sales_name h4 {
    font-size: 3.3vw;
  }
}
#sales .sales ul li .sales_contents {
  width: 60%;
}
#sales .sales ul li .sales_contents p {
  color: #222;
  margin-bottom: 0.5vw;
}
#sales .sales ul li .sales_contents .tel {
  color: #202d72;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #sales .sales ul li .sales_contents .tel {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #sales .sales ul li .sales_contents .tel {
    font-size: 3.3vw;
  }
}
#sales .sales ul li .sales_contents .tel i {
  margin-right: 1vw;
}

#philosophy .philosophy {
  width: 80%;
  margin: auto;
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #philosophy .philosophy {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #philosophy .philosophy {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #philosophy .philosophy .lower_headline {
    margin-bottom: 6vw;
  }
}
#philosophy .philosophy table {
  width: 100%;
}
#philosophy .philosophy table tbody {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #philosophy .philosophy table tbody {
    flex-flow: column;
  }
}
#philosophy .philosophy table tr {
  width: 45%;
  margin-bottom: 2vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #222;
}
@media screen and (max-width: 768px) {
  #philosophy .philosophy table tr {
    width: 100%;
    margin-bottom: 6vw;
  }
}
#philosophy .philosophy table tr th, #philosophy .philosophy table tr td {
  color: #222;
  padding: 0.5vw;
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #philosophy .philosophy table tr th, #philosophy .philosophy table tr td {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #philosophy .philosophy table tr th, #philosophy .philosophy table tr td {
    font-size: 3.3vw;
  }
}
#philosophy .philosophy table tr th {
  width: 40%;
}
#philosophy .philosophy table tr td {
  width: 60%;
}

#contact .contact {
  width: 80%;
  margin: auto;
  margin-bottom: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact {
    width: 95%;
  }
}
#contact .contact .contact_text {
  text-align: center;
  margin-bottom: 3rem;
}
#contact .contact .contact_text p {
  font-size: 1.2vw;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_text p {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_text p {
    text-align: left;
    font-size: 3.3vw;
  }
}
#contact .contact .contact_ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_ul {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}
#contact .contact .contact_ul li a {
  display: inline-block;
  padding: 1rem 2rem;
  border: 1px solid #ddd;
  color: #202d72;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1vw;
  border-radius: 50px;
  transition: all 0.3s ease;
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_ul li a {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_ul li a {
    font-size: 3.8vw;
    width: 100%;
    text-align: center;
  }
}
#contact .contact .contact_ul li a:hover {
  background-color: #202d72;
  color: #fff;
  transform: translateY(-2px);
}
#contact .contact .contact_ul li a:active {
  transform: translateY(0);
}
#contact .contact .contact_contents {
  margin-bottom: 5rem;
}
#contact .contact .contact_contents .form {
  width: 100%;
}
#contact .contact .contact_contents .form h4 {
  text-align: center;
  font-size: 2vw;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #202d72;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_contents .form h4 {
    font-size: 2.8vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents .form h4 {
    font-size: 6vw;
  }
}
#contact .contact .contact_contents .form .contact_tel {
  font-size: 2vw;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #202d72;
  text-align: center;
}
#contact .contact .contact_contents .form .contact_tel a {
  font-size: 1.5rem;
  color: inherit;
  text-decoration: none;
}
#contact .contact .contact_contents .form .contact_tel a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_contents .form .contact_tel {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents .form .contact_tel {
    font-size: 1rem;
  }
}
#contact .contact .contact_contents .form .contact_lead {
  text-align: center;
  font-size: 1vw;
  line-height: 2;
  margin-bottom: 2rem;
  color: #555;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_contents .form .contact_lead {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents .form .contact_lead {
    text-align: left;
    font-size: 3.5vw;
  }
}
#contact .contact .contact_contents .form .wpcf7 {
  color: #333;
  background-color: #f0f0f0;
  padding: 5rem;
  border-radius: 10px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents .form .wpcf7 {
    padding: 5rem 1rem;
  }
}
#contact .contact .contact_contents .form .wpcf7 label {
  display: block;
  margin-bottom: 2rem;
  font-size: 100%;
  font-weight: 600;
  color: #333333;
}
#contact .contact .contact_contents .form .wpcf7 label .red {
  background-color: #ff0000;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 10px;
  font-size: 80%;
}
#contact .contact .contact_contents .form .wpcf7 label .blue {
  background-color: #2986ff;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 10px;
  font-size: 80%;
}
#contact .contact .contact_contents .form .wpcf7 label .wpcf7-form-control-wrap input {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
}
#contact .contact .contact_contents .form .wpcf7 label textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #cccccc;
  border-radius: 5px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #ffffff;
  height: 250px;
  resize: vertical;
}
#contact .contact .contact_contents .form .wpcf7 label.policy {
  text-align: center;
}
#contact .contact .contact_contents .form .wpcf7 label.policy input {
  width: auto;
}
#contact .contact .contact_contents .form .wpcf7 .wpcf7 input[type=url],
#contact .contact .contact_contents .form .wpcf7 .wpcf7 input[type=email],
#contact .contact .contact_contents .form .wpcf7 .wpcf7 input[type=tel] {
  padding: 2rem;
  margin-bottom: 2rem;
  height: 20px;
}
#contact .contact .contact_contents .form .wpcf7 input[type=submit] {
  color: #fff;
  background-color: #202d72;
  cursor: pointer;
  transition: background-color 0.4s ease;
  border: none;
  width: 80%;
  margin: auto 10%;
  font-size: 120%;
  font-weight: 600;
  padding: 1rem;
  border-radius: 10px;
}
#contact .contact .contact_contents .form .wpcf7 input[type=submit]:hover {
  opacity: 0.7;
}
#contact .contact .contact_contents .form .wpcf7 .wpcf7-response-output {
  font-size: 160%;
  text-align: center;
  padding: 1rem;
  color: #333;
  font-weight: 600;
}
#contact .contact .contact_contents .form .wpcf7 .wpcf7-form-control {
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}
#contact .contact .contact_contents .form .thanks {
  text-align: center;
  font-size: 140%;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents .form .thanks {
    text-align: left;
    font-size: 100%;
  }
}

.policy_contents {
  width: 80%;
  margin: auto;
  padding: 3rem 0;
}
@media screen and (max-width: 768px) {
  .policy_contents {
    width: 90%;
  }
}
.policy_contents h2 {
  font-size: 1.4vw;
  margin-bottom: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .policy_contents h2 {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  .policy_contents h2 {
    font-size: 4vw;
  }
}
.policy_contents p {
  margin-bottom: 3rem;
}

#footer_contact {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#footer_contact:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 1;
}
#footer_contact .footer_contact_contents {
  position: relative;
  z-index: 10;
  padding: 3rem 1rem;
}
#footer_contact .footer_contact_contents .headline {
  color: #202d72;
  text-align: center;
  margin-bottom: 3rem;
}
#footer_contact .footer_contact_contents .headline h2 {
  font-family: "Cinzel", serif;
}
#footer_contact .footer_contact_contents .headline p {
  text-align: center;
}
#footer_contact .footer_contact_contents .footer_contact_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #footer_contact .footer_contact_contents .footer_contact_content {
    flex-flow: column;
  }
}
#footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form {
    width: 90%;
  }
}
#footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel a, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form a {
  text-decoration: none;
}
#footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel a button, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form a button {
  width: 100%;
  padding: 1vw;
  border: none;
  letter-spacing: 0.2vw;
  font-size: 1.2vw;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel a button, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form a button {
    font-size: 1.8vw;
    padding: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel a button, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form a button {
    padding: 2.5vw;
    font-size: 4vw;
  }
}
#footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel a button i, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form a button i {
  margin-right: 1vw;
}
#footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel button, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form button {
  width: 100%;
  font-family: "Cinzel", serif;
  font-size: 1.2vw;
  font-weight: 600;
  padding: 1vw;
  line-height: 1;
  border: none;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel button, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form button {
    font-size: 1.8vw;
    padding: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel button, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form button {
    padding: 2.5vw;
    font-size: 3.5vw;
  }
}
#footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel button i, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form button i {
  margin-right: 1vw;
}
@media screen and (max-width: 768px) {
  #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form {
    margin-top: 4vw;
  }
}
#footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form button {
  color: #202d72;
  background-color: #fff;
  transition: all 0.4s;
  cursor: pointer;
}
#footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form button:hover {
  color: #fff;
  background-color: #202d72;
}
#footer_contact .footer_contact_contents .text {
  text-align: center;
  color: #fff;
  margin-bottom: 0.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #footer_contact .footer_contact_contents .text {
    margin-bottom: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  #footer_contact .footer_contact_contents .text {
    font-size: 90%;
    margin-bottom: 2.5vw;
  }
}

footer {
  background-color: #202d72;
}
@media screen and (max-width: 768px) {
  footer {
    height: 70vw;
  }
}
footer .footer_menu {
  padding-top: 4vw;
}
@media screen and (max-width: 768px) {
  footer .footer_menu {
    padding-top: 8vw;
  }
}
footer .footer_menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: auto;
  margin-bottom: 2vw;
  list-style: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_menu ul {
    margin-bottom: 3vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_menu ul {
    width: 95%;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_menu ul li {
    margin-bottom: 4vw;
  }
}
footer .footer_menu ul li a {
  font-size: 1vw;
  color: #fff;
  text-decoration: none;
  padding: 0 2vw;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_menu ul li a {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_menu ul li a {
    font-size: 3vw;
    padding: 0 4vw;
  }
}
footer .footer_menu ul li a:hover {
  color: #dce2ff;
}
footer .footer_menu ul li .new_twitter:before {
  content: "𝕏" !important;
  font-family: sans-serif !important;
  font-weight: bold;
}
footer .copyright {
  text-align: center;
  padding-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    padding-bottom: 4vw;
    padding-top: 8vw;
  }
}
footer .copyright p {
  color: #fff;
  font-size: 0.8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .copyright p {
    font-size: 1vw;
  }
}
@media screen and (max-width: 768px) {
  footer .copyright p {
    font-size: 2.5vw;
  }
}/*# sourceMappingURL=style.css.map */