@charset "UTF-8";
/* ベース（reset, variables, mixin） */
/* Modern CSS Reset by Andy Bell */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/**
変数モジュール
**/
/* min in */
/*メディアクエリーブレイクポイント*/
/* コンテナクエリーブレイクポイント*/
/*
Minin
* Mixinモジュール
mum Sass version: 3.3.0
*/
/*左右パディング*/
/* Elementごとのレスポンシブ指定用Mixin */
/*ページナビ*/
/* PageNavi 全体 */
.wp-pagenavi {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 1rem;
  margin: 40px auto;
  width: -moz-fit-content;
  width: fit-content;
}

/* 数字リンク */
.wp-pagenavi a,
.wp-pagenavi span {
  padding: 10px 20px;
  color: #222222;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* 現在ページ */
.wp-pagenavi span.current {
  background-color: #eee;
  font-weight: bold;
}

/* --- 前へ・次へ（矢印） --- */
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  background-color: #1422B3;
  color: #ffffff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  padding: 0 !important;
  border: none;
}

/* ホバー */
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  background-color: #1422B3;
}

/* 矢印文字の変更（← →） */
.wp-pagenavi .previouspostslink::before {
  content: "←";
}

.wp-pagenavi .nextpostslink::before {
  content: "→";
}

/* 元のテキストを非表示にする（必要な場合） */
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  font-size: 0;
}

.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  font-size: 1.2rem;
}

html {
  font-size: 100%;
}

body {
  font-size: 1rem;
  color: #222222;
}

header,
footer,
.container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

/* フォント設定 */
html,
body {
  font-family: "Noto Sans JP", sans-serif;
}

.oswald {
  font-family: "Oswald", sans-serif;
}

/* レイアウト(header, footer, common) */
/* ベース（reset, variables, mixin） */
/* ベース（reset, variables, mixin） */
.btn_wrap_right {
  display: flex;
  justify-content: flex-end;
}

#header_container {
  max-width: 1920px;
  width: 100%;
  margin: 20px auto;
  display: flex;
  align-items: center;
}
#header_container {
  flex-direction: column;
}
@media (min-width: 610px) {
  #header_container {
    flex-direction: row;
  }
}
@media (min-width: 610px) {
  #header_container {
    margin: 0 auto;
  }
}

header {
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 480px) {
  header {
    height: 110px;
  }
}
header .logo_image img {
  max-height: 60px;
  max-width: 315px;
  width: 100%;
}
header #gNav-wrap {
  margin-left: auto;
  margin-right: 0;
  height: 75px;
  display: flex;
  align-items: center;
}

#gNav {
  position: absolute;
  width: 480px;
  max-width: 100%;
  height: calc(100vh - 110px);
  visibility: hidden;
  opacity: 0;
  bottom: 0;
  left: -20px;
  background: #ffffff;
  border-top: 1px solid #1877F2;
  transform: translate(-100%, 100%);
}
@media (min-width: 1365px) {
  #gNav {
    border-top: none;
    position: static;
    max-width: 100%;
    width: 449px;
    visibility: visible;
    opacity: 1;
    height: auto;
    transform: none;
  }
}

#gNav_list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding-top: 30px;
  flex-direction: column;
}
#gNav_list li a {
  padding: 10px;
  height: 50px;
  font-size: 1rem;
  line-height: 1.5;
  color: #222222;
  text-decoration: none;
  padding: 10px 0;
}
#gNav_list li a.is-active, #gNav_list li a:hover {
  border-bottom: 1px solid #1422B3;
}
@media (min-width: 1365px) {
  #gNav_list {
    flex-direction: row;
    padding-top: 0;
  }
}

#menuBtn_wrap {
  width: 64px;
  height: 64px;
  position: relative;
  z-index: 1001;
}
@media (min-width: 1365px) {
  #menuBtn_wrap {
    display: none;
  }
}

#menuBtn {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
#menuBtn .menuBtn-row {
  position: absolute;
  left: 50%;
  width: 60%;
  height: 4px;
  background-color: #1b94da;
  transition: 0.4s ease;
  transform-origin: center;
  transform: translateX(-50%);
}
#menuBtn .row1 {
  top: calc(50% - 10px);
}
#menuBtn .row2 {
  top: 50%;
}
#menuBtn .row3 {
  top: calc(50% + 10px);
}

.is-menu-open #menuBtn .menuBtn-row {
  top: 50%;
}
.is-menu-open #menuBtn .row1 {
  transform: translateX(-50%) rotate(45deg);
}
.is-menu-open #menuBtn .row2 {
  width: 0;
  opacity: 0;
  transform: translateX(-50%);
}
.is-menu-open #menuBtn .row3 {
  transform: translateX(-50%) rotate(-45deg);
}

#menuOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 1000;
}

.is-menu-open #menuOverlay {
  opacity: 1;
  visibility: visible;
}

.is-menu-open #gNav {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s;
  transform: translate(0, 100%);
  z-index: 2;
}

/* ベース（reset, variables, mixin） */
/* footer styles */
.sns_wrap {
  font-size: min(3.9vw, 1.5rem);
  margin-bottom: 40px;
}
.sns_wrap p {
  font-weight: 700;
  text-align: center;
}
.sns_wrap p {
  padding: 20px 0;
}
@media (min-width: 610px) {
  .sns_wrap p {
    padding: 40px;
  }
}
.sns_wrap .sns_list {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  gap: 20px;
  padding-top: 40px;
  padding-bottom: 20px;
}
.sns_wrap .sns_list li {
  text-align: center;
}

.footer_upper {
  background-color: #5897E8;
  color: #ffffff;
  text-align: center;
  padding: 40px 0 60px;
  font-size: 1rem;
}
.footer_upper .footer_cnt_title {
  min-height: 40px;
  border-bottom: 1px solid #ffffff;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 10px;
}
.footer_upper .footer_cnt_title p {
  display: block;
  font-size: 1.625rem;
  line-height: 1;
}
.footer_upper .footer_cnt_text {
  width: 100%;
}
.footer_upper .footer_cnt_text p {
  padding: 40px 0;
  font-size: min(3.1vw, 1.125rem);
  line-height: 1.5;
}

.footer_lower {
  margin-top: 20px;
}
.footer_lower .footer_nav {
  display: flex;
  padding: 0 80px;
}
.footer_lower .footer_nav {
  flex-direction: column;
}
@media (min-width: 1280px) {
  .footer_lower .footer_nav {
    flex-direction: row;
  }
}
.footer_lower .footer_nav .footer_logo img {
  width: 315px;
  margin: 20px auto;
}
@media (min-width: 1280px) {
  .footer_lower .footer_nav .footer_logo img {
    margin: auto;
  }
}
.footer_lower .footer_nav .footer_menu {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1280px) {
  .footer_lower .footer_nav .footer_menu {
    margin-right: 0;
  }
}
.footer_lower .footer_nav .footer_menu_list {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.footer_lower .footer_nav .footer_menu_list a {
  text-decoration: none;
  color: #222222;
}
.footer_lower .footer_nav .footer_menu_list {
  flex-direction: column;
}
@media (min-width: 1280px) {
  .footer_lower .footer_nav .footer_menu_list {
    flex-direction: row;
  }
}
.footer_lower .footer_address {
  font-size: 0.875rem;
  padding: 30px 80px;
}
.footer_lower .footer_address ul {
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1280px) {
  .footer_lower .footer_address ul {
    margin: 0;
  }
}
.footer_lower .footer_copyright {
  text-align: center;
  font-size: 0.875rem;
}

/* ベース（reset, variables, mixin） */
/* common styles */
.margin_auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.snsbtn {
  display: flex;
  padding: 14px 50px 14px 20px;
  width: 300px;
  height: 58px;
  border-radius: 29px;
  text-align: center;
  text-decoration: none;
  align-items: center;
}
.snsbtn span {
  width: 100%;
}
.snsbtn.snsbtn-facebook {
  background-color: #1877F2;
  color: #ffffff;
  transition: 0.3s ease;
}
.snsbtn.snsbtn-facebook::before {
  display: inline-block;
  content: "";
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background-image: url("../images/icons/fb.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.snsbtn.snsbtn-facebook::before, .snsbtn.snsbtn-facebook::after {
  transition: 0.3s ease;
}
.snsbtn.snsbtn-facebook:hover {
  background-color: #1877F2;
  transform: translateY(-2px);
  /* 下方向に濃いめの影を落とす */
  box-shadow: 3px 6px 12px rgba(0, 0, 0, 0.75);
}
.snsbtn.snsbtn-facebook:hover::after {
  transform: translateX(4px);
}
.snsbtn.snsbtn-line {
  background-color: #00B900;
  color: #ffffff;
  transition: 0.3s ease;
}
.snsbtn.snsbtn-line::before {
  display: inline-block;
  content: "";
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background-image: url("../images/icons/line.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.snsbtn.snsbtn-line::before, .snsbtn.snsbtn-line::after {
  transition: 0.3s ease;
}
.snsbtn.snsbtn-line:hover {
  background-color: #00B900;
  transform: translateY(-2px);
  /* 下方向に濃いめの影を落とす */
  box-shadow: 3px 6px 12px rgba(0, 0, 0, 0.75);
}
.snsbtn.snsbtn-line:hover::after {
  transform: translateX(4px);
}

.bg-blue {
  background-color: #1422B3;
  color: #ffffff;
}

.bg-green {
  background-color: #559F31;
  color: #ffffff;
}

.menu_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  text-decoration: none;
  height: 58px;
  margin-left: 10px;
  min-width: 30px;
}
.menu_btn .menu_text {
  display: none;
}
@media (min-width: 1365px) {
  .menu_btn {
    padding: 20px 40px 20px 20px;
    border-radius: 29px;
    min-width: 215px;
  }
  .menu_btn .menu_text {
    display: inline;
  }
}
.menu_btn .icon-community {
  width: 29px;
  height: 18px;
  background-image: url("../images/icons/icon-community.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.menu_btn .icon-contact {
  width: 24px;
  height: 18px;
  background-image: url("../images/icons/icon-mail.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.menu_btn:hover {
  opacity: 0.8;
}

.circle {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  margin-left: 10px;
  font-size: 0.875rem;
  font-weight: 700;
}

.circle-blue {
  border: 2px solid #1422B3;
  color: #1422B3;
}

.tit {
  font-weight: 700;
}
.tit.tit_center {
  text-align: center;
}
.tit.tit_ruby {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1rem;
}
.tit.tit_ruby .en {
  color: #1422B3;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}

h1.tit {
  font-size: clamp(2rem, 10vw, 4rem);
}
h1.tit.tit_ruby .en {
  font-size: clamp(1rem, 3vw, 1.5rem);
}
h1.tit.tit_ruby .jp {
  font-size: clamp(2rem, 10vw, 4rem);
}

h2.tit {
  font-size: 3rem;
}
h2.tit.tit_ruby .en {
  font-size: 1rem;
}
h2.tit.tit_ruby .jp {
  font-size: 3rem;
}

.bread_wrap {
  margin-top: 40px;
  margin-bottom: 40px;
}
.bread_wrap .bread {
  color: #222222;
  display: flex;
}
.bread_wrap .bread li:not(:last-child) {
  flex: 0 0 auto;
}
.bread_wrap .bread li:last-child {
  flex: 1;
}
.bread_wrap .bread a {
  color: #222222;
}
.bread_wrap .bread li:not(:last-child)::after {
  display: inline;
  margin-left: 10px;
  margin-right: 10px;
  content: ">";
  color: #222222;
}

.blue {
  color: #1422B3;
}

.text-bold {
  font-weight: 700;
}

.mb-2em {
  margin-bottom: 2em;
}

.btn2 {
  width: 340px;
  height: 80px;
  display: flex;
  border-radius: 40px;
  font-size: 1.25rem;
  color: #ffffff;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.btn2::before {
  display: inline;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.btn2::after {
  display: inline;
  content: "→";
  width: 20px;
}

.btn_footer {
  width: 366px;
  max-width: 100%;
  height: 80px;
  display: flex;
  border-radius: 40px;
  font-size: 1.25rem;
  color: #ffffff;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #1422B3;
  transition: 0.3s ease;
}
.btn_footer::before {
  display: inline;
  content: "";
  width: 32px;
  height: 20px;
  background: url("../images/icons/icon-community.svg") no-repeat center;
}
.btn_footer::before, .btn_footer::after {
  transition: 0.3s ease;
}
.btn_footer:hover {
  background-color: #1422B3;
  transform: translateY(-2px);
  /* 下方向に濃いめの影を落とす */
  box-shadow: 3px 6px 12px rgba(0, 0, 0, 0.75);
}
.btn_footer:hover::after {
  transform: translateX(4px);
}

.btn_blue {
  background-color: #1422B3;
  transition: 0.3s ease;
}
.btn_blue::before {
  background: radial-gradient(circle at center, transparent 5px, #559F31 5px);
}
.btn_blue::before, .btn_blue::after {
  transition: 0.3s ease;
}
.btn_blue:hover {
  background-color: #1422B3;
  transform: translateY(-2px);
  /* 下方向に濃いめの影を落とす */
  box-shadow: 3px 6px 12px rgba(0, 0, 0, 0.75);
}
.btn_blue:hover::after {
  transform: translateX(4px);
}

.btn_green {
  background-color: #559F31;
  transition: 0.3s ease;
}
.btn_green::before {
  background: radial-gradient(circle at center, transparent 5px, #1422B3 5px);
}
.btn_green::before, .btn_green::after {
  transition: 0.3s ease;
}
.btn_green:hover {
  background-color: #559F31;
  transform: translateY(-2px);
  /* 下方向に濃いめの影を落とす */
  box-shadow: 3px 6px 12px rgba(0, 0, 0, 0.75);
}
.btn_green:hover::after {
  transform: translateX(4px);
}

.btn_more {
  width: 210px;
  font-size: 1rem;
  padding: 20px;
  height: 53px;
  border-radius: 26.5px;
  background-color: #222222;
  color: #ffffff;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  transition: 0.3s ease;
}
.btn_more::before, .btn_more::after {
  transition: 0.3s ease;
}
.btn_more:hover {
  background-color: #222222;
  transform: translateY(-2px);
  /* 下方向に濃いめの影を落とす */
  box-shadow: 3px 6px 12px rgba(0, 0, 0, 0.75);
}
.btn_more:hover::after {
  transform: translateX(4px);
}
.btn_more::after {
  content: "→";
  display: inline;
}

.note-right {
  text-align: right;
}

.inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 40px);
  padding-right: clamp(20px, 5vw, 40px);
}

.s_inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.inner_outside {
  max-width: calc(1280px + clamp(40px, 10vw, 80px) * 2);
  padding-left: clamp(20px, 5vw, 40px);
  padding-right: clamp(20px, 5vw, 40px);
}

.tit_sub {
  display: flex;
}
.tit_sub {
  flex-direction: column;
}
@media (min-width: 610px) {
  .tit_sub {
    flex-direction: row;
  }
}
.tit_sub {
  padding: 20px 0;
}
@media (min-width: 610px) {
  .tit_sub {
    padding: 40px 0;
  }
}
@media (min-width: 610px) {
  .tit_sub {
    align-items: center;
  }
}

.tit_sub2 {
  border-left: 5px solid #1422B3;
  padding: 8px 20px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

/*flexbox*/
.flex_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
}
.flex_wrap > * {
  flex: 0 0 calc(50% - 20px);
  max-width: 580px;
}

/*フォントサイズ*/
.fs-2_5rem {
  font-size: 2.5rem;
}

.fs-2rem {
  font-size: 2rem;
}

.fs-1_5rem {
  font-size: 1.5rem;
}

.fs-1rem {
  font-size: 1rem;
}

/* ベース（reset, variables, mixin） */
.input1 {
  max-width: 760px;
  width: 100%;
  border: 1px solid #B6B6B6;
  background-color: #F6F6F6;
  padding: 10px;
  height: 53px;
}

.input2 {
  max-width: 120px;
  width: 100%;
  border: 1px solid #B6B6B6;
  background-color: #F6F6F6;
  padding: 10px;
  height: 53px;
}

.textarea {
  max-width: 760px;
  min-height: 150px;
  width: 100%;
  border: 1px solid #B6B6B6;
  background-color: #F6F6F6;
  padding: 10px;
  height: 53px;
}

.form_line {
  display: flex;
  flex-flow: row wrap;
  gap: 10px 40px;
  padding: 16px 0;
  border-top: 1px solid #B6B6B6;
  container-type: inline-size;
  container-name: form;
}
.form_line dt {
  font-size: 0.875rem;
  width: 200px;
}
.form_line dd {
  width: 760px;
  max-width: 100%;
}
.form_line .is-required {
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: center;
}
.form_line .is-required::after {
  content: "※必須";
  color: #ED1C00;
  font-weight: 700;
}
@container form (min-width: 1000px) {
  .form_line dt {
    font-size: 1rem;
  }
  .form_line .is-required {
    justify-content: space-between;
  }
}

.form_column {
  border-top: 1px solid #B6B6B6;
  padding-top: 17px;
  padding-bottom: 17px;
  container-type: inline-size;
  container-name: form;
}
.form_column dt {
  font-weight: 700;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
}
.form_column dt .mark {
  color: #5897E8;
}
.form_column .form_selectbtn {
  display: flex;
  flex-flow: row wrap;
  padding-top: 20px;
  padding-bottom: 60px;
  gap: 20px;
}
.form_column .form_selectbtn li {
  width: 100%;
}
.form_column .form_selectbtn label {
  width: 100%;
  border: 1px solid #5a5a5a;
  border-radius: 8px;
  padding: 30px 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
}
.form_column .form_selectbtn label input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
@container form (min-width: 980px) {
  .form_column .form_selectbtn li {
    width: 480px;
  }
}
@container form (min-width: 1000px) {
  .form_column .form_selectbtn li {
    width: 490px;
  }
  .form_column dt {
    font-size: 1.5rem;
  }
}

.form_submit {
  padding: 14px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.form_submit .submit_btn {
  color: #ffffff;
  background-color: #222222;
  border-radius: 30px;
  height: 60px;
  padding: 0 80px;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
}
.form_submit .submit_btn::before, .form_submit .submit_btn::after {
  transition: 0.3s ease;
}
.form_submit .submit_btn:hover {
  background-color: #222222;
  transform: translateY(-2px);
  /* 下方向に濃いめの影を落とす */
  box-shadow: 3px 6px 12px rgba(0, 0, 0, 0.75);
}
.form_submit .submit_btn:hover::after {
  transform: translateX(4px);
}

/* ページ(top, page) */
/* ベース（reset, variables, mixin） */
/* ベース（reset, variables, mixin） */
/* Top Page styles */
#information > .inner {
  padding-top: 100px;
  padding-bottom: 80px;
  padding-left: clamp(20px, 5vw, 40px);
  padding-right: clamp(20px, 5vw, 40px);
  display: flex;
}
#information > .inner {
  flex-direction: column;
}
@media (min-width: 1365px) {
  #information > .inner {
    flex-direction: row;
  }
}
#information > .inner .leftCnt {
  width: 100%;
  text-align: center;
}
#information > .inner .leftCnt .tit {
  margin-bottom: 40px;
}
@media (min-width: 1365px) {
  #information > .inner .leftCnt {
    text-align: left;
    max-width: 300px;
  }
}
#information > .inner .leftCnt .btn_more {
  margin-left: auto;
}
@media (min-width: 1365px) {
  #information > .inner .leftCnt .btn_more {
    margin-left: 0;
  }
}
#information > .inner .rightCnt {
  flex-grow: 1;
  max-width: 900px;
}
#information > .inner .rightCnt li a {
  width: 100%;
  text-decoration: none;
  color: #222222;
  display: flex;
  gap: 0px 30px;
}
#information > .inner .rightCnt li a {
  flex-direction: column;
}
@media (min-width: 610px) {
  #information > .inner .rightCnt li a {
    flex-direction: row;
  }
}
@media (min-width: 610px) {
  #information > .inner .rightCnt li a {
    align-items: center;
  }
}
#information > .inner .rightCnt li a {
  padding: 15px 5px;
}
@media (min-width: 610px) {
  #information > .inner .rightCnt li a {
    padding: 32px 20px;
  }
}
#information > .inner .rightCnt li a:hover {
  background-color: rgb(204.6281407035, 208.567839196, 249.3718592965);
}

.top-greeting_Cnt {
  display: flex;
  padding-top: 40px;
  padding-bottom: 60px;
  gap: 40px;
}
.top-greeting_Cnt > * {
  flex: 1;
}
.top-greeting_Cnt {
  flex-direction: column;
}
@media (min-width: 1280px) {
  .top-greeting_Cnt {
    flex-direction: row;
  }
}

.top-greeting_imageCnt {
  max-width: 600px;
  margin: auto;
}
.top-greeting_imageCnt .img_wrap {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 610px) {
  .top-greeting_imageCnt .img_wrap {
    height: 500px;
  }
}
.top-greeting_imageCnt .img_wrap img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.inner_greeting_textCnt .greeting_title {
  color: #1422B3;
  line-height: 1.215;
  margin-bottom: 40px;
}
.inner_greeting_textCnt .greeting_title {
  font-size: 8vw;
}
@media (min-width: 610px) {
  .inner_greeting_textCnt .greeting_title {
    font-size: 2.5rem;
  }
}
.inner_greeting_textCnt .greeting_title > span {
  font-size: 11vw;
}
@media (min-width: 610px) {
  .inner_greeting_textCnt .greeting_title > span {
    font-size: 3.5rem;
  }
}
.inner_greeting_textCnt .btn_wrap_profile {
  display: flex;
  justify-content: center;
}
@media (min-width: 1280px) {
  .inner_greeting_textCnt .btn_wrap_profile {
    justify-content: flex-end;
  }
}

.top-ideology {
  width: 100%;
  display: flex;
  padding-bottom: 80px;
  padding-left: clamp(20px, 5vw, 40px);
  padding-right: clamp(20px, 5vw, 40px);
  align-items: center;
  flex-direction: column;
  aspect-ratio: 1920/1086;
  background-image: url("../images/top/Ideology.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
}
@media (min-width: 1280px) {
  .top-ideology {
    background-position: center;
  }
}
.top-ideology .tagline {
  margin-bottom: 80px;
  color: #559F31;
  line-height: 1.3;
  font-weight: 700;
  font-size: min(4.5vw, 4rem);
}
.top-ideology .tagline {
  margin-top: 40px;
}
@media (min-width: 1280px) {
  .top-ideology .tagline {
    margin-top: 160px;
  }
}
.top-ideology .ideology_listwrap {
  padding-bottom: 40px;
}
@media (min-width: 1280px) {
  .top-ideology .ideology_listwrap {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.top-ideology .ideology_list {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
@media (min-width: 1280px) {
  .top-ideology .ideology_list {
    width: 1200px;
    max-width: 100%;
  }
}
.top-ideology .ideology_list .ideology_item {
  background-color: #ffffff;
  border-radius: 20px;
  font-size: 1.875rem;
  color: #559F31;
  box-shadow: 0 4px 14px rgb(115, 115, 115);
  padding: 10px 20px;
}
@media (min-width: 1280px) {
  .top-ideology .ideology_list .ideology_item {
    width: 380px;
    padding: 40px;
    font-size: min(2vw, 1.875rem);
  }
}
.top-ideology .ideology_list .ideology_item span:not([class]) {
  display: inline;
}
@media (min-width: 610px) {
  .top-ideology .ideology_list .ideology_item span:not([class]) {
    display: inline-block;
  }
}
@media (min-width: 1280px) {
  .top-ideology .ideology_list .ideology_item span:not([class]) {
    display: inline;
  }
}
.top-ideology .ideology_list .ideology_item br:not([class]) {
  display: none;
}
@media (min-width: 1280px) {
  .top-ideology .ideology_list .ideology_item br:not([class]) {
    display: inline;
  }
}
.top-ideology .ideology_list {
  flex-direction: column;
}
@media (min-width: 1280px) {
  .top-ideology .ideology_list {
    flex-direction: row;
  }
}

/* ベース（reset, variables, mixin） */
/*新着情報一覧*/
.information_list li {
  padding: 15px 5px;
}
@media (min-width: 610px) {
  .information_list li {
    padding: 32px 20px;
  }
}
.information_list li a {
  width: 100%;
  text-decoration: none;
  color: #222222;
  display: flex;
  gap: 0px 30px;
}
.information_list li a {
  flex-direction: column;
}
@media (min-width: 610px) {
  .information_list li a {
    flex-direction: row;
  }
}
@media (min-width: 610px) {
  .information_list li a {
    align-items: center;
  }
}
.information_list li a:hover {
  background-color: rgb(158.7537688442, 166.2814070352, 244.2462311558);
}

.single_title_wrap time {
  display: block;
  text-align: right;
  font-size: 1.14rem;
}

.single-tit {
  font-size: 1.6875rem;
}

.back {
  margin-top: 40px;
  text-align: center;
}

.btn_back {
  color: #1422B3;
}

.post_content {
  min-height: 600px;
}

/* ベース（reset, variables, mixin） */
/*プロフィール*/
.visual_inner {
  display: grid;
}
.visual_inner figcaption {
  grid-area: 1/1;
  line-height: 1.25;
  font-weight: 700;
}
.visual_inner img {
  grid-area: 1/1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.profile_visual figcaption {
  color: #1422B3;
  font-size: 6vw;
  margin-left: 4vw;
  margin-top: 3vh;
}
@media (min-width: 1920px) {
  .profile_visual figcaption {
    font-size: 6.5rem;
    margin-left: 360px;
    margin-top: 141px;
  }
}

.profile_container {
  container-type: inline-size;
  container-name: profile_container;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 40px;
}

.profile_card {
  flex-direction: column-reverse;
}
.profile_card {
  padding: 10px 0;
}
@media (min-width: 610px) {
  .profile_card {
    padding: 40px;
  }
}
@container profile_container (min-width: 1000px) {
  .profile_card {
    flex-direction: row;
  }
}
.profile_card .profile_info {
  padding-top: 10px;
}
@media (min-width: 610px) {
  .profile_card .profile_info {
    padding-top: 20px;
  }
}
.profile_card .profile_info {
  padding-bottom: 10px;
}
@media (min-width: 610px) {
  .profile_card .profile_info {
    padding-bottom: 20px;
  }
}
.profile_card .profile_info dd span {
  display: inline-block;
}
@media (min-width: 610px) {
  .profile_card .profile_info dd span {
    display: inline;
  }
}

.profile_list {
  display: flex;
  border-top: 1px solid #E2E8EE;
  padding: 10px;
  font-weight: 700;
}
.profile_list {
  flex-direction: column;
}
@media (min-width: 610px) {
  .profile_list {
    flex-direction: row;
  }
}
.profile_list {
  align-items: flex-start;
}
@media (min-width: 610px) {
  .profile_list {
    align-items: center;
  }
}
.profile_list:last-child {
  border-bottom: 1px solid #E2E8EE;
}
@media (min-width: 610px) {
  .profile_list dt,
  .profile_list dd {
    padding: 10px;
  }
}
.profile_list dt {
  width: 50%;
  max-width: 90px;
}
.profile_list dt {
  font-size: 0.8rem;
}
@media (min-width: 610px) {
  .profile_list dt {
    font-size: 1rem;
  }
}

.profile_photo_sub {
  display: flex;
  align-items: center;
  gap: 5px;
}
.profile_photo_sub .photo1 {
  max-width: 810px;
  flex: 810 1 0;
}
.profile_photo_sub .photo2 {
  max-width: 385px;
  flex: 385 1 0;
}
.profile_photo_sub img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  min-width: 0;
}
.profile_photo_sub {
  flex-direction: column;
}
@media (min-width: 610px) {
  .profile_photo_sub {
    flex-direction: row;
  }
}

.profile_activities {
  background-color: #F0F6FD;
}

.activities_wrap {
  padding-top: 40px;
  padding-bottom: 40px;
}

.activities_photo {
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
  max-height: 800px;
}

.activities_history {
  padding: 15px 0;
}

/* ベース（reset, variables, mixin） */
/*
政治理念
*/
.ideology_visual figcaption {
  color: #559F31;
  font-size: 5.5vw;
  margin-left: 4vw;
  width: 100%;
  max-width: 1320px;
  margin-top: 3vh;
}
@media (min-width: 1920px) {
  .ideology_visual figcaption {
    font-size: 4.375rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
  }
}
.ideology_visual .visual_ideology_list {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1320px;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
  margin-top: auto;
  grid-area: 2/1;
  align-items: center;
}
@media (min-width: 1365px) {
  .ideology_visual .visual_ideology_list {
    margin-bottom: 50px;
    grid-area: 1/1;
  }
}
@media (min-width: 1920px) {
  .ideology_visual .visual_ideology_list {
    margin-bottom: 100px;
  }
}
.ideology_visual .visual_ideology_list {
  flex-direction: column;
}
@media (min-width: 1365px) {
  .ideology_visual .visual_ideology_list {
    flex-direction: row;
  }
}
.ideology_visual .visual_ideology_list .visual_ideology_item {
  padding: 20px 30px;
  background-color: #ffffff;
  border-radius: 10px;
  flex: 1;
  gap: 10px;
  display: flex;
  flex-direction: column;
  max-width: 95%;
}
.ideology_visual .visual_ideology_list .visual_ideology_item dt {
  font-size: min(7vw, 1.857rem);
  font-weight: 700;
  color: #559F31;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}
.ideology_visual .visual_ideology_list .visual_ideology_item dd {
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.6;
  color: #222222;
}
@media (min-width: 1365px) {
  .ideology_visual .visual_ideology_list .visual_ideology_item {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    gap: 20px;
    padding: 30px 60px;
    max-width: 80%;
    height: 210px;
  }
  .ideology_visual .visual_ideology_list .visual_ideology_item dt {
    font-size: 1.857rem;
  }
}

.ideology_content_wrap {
  padding-top: 40px;
  padding-bottom: 60px;
}

.ideology_content {
  padding-bottom: 10px;
}

.ideology_tit {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  border-bottom: 1px solid #E3E8EE;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  line-height: 1;
}
.ideology_tit span {
  color: #5897E8;
  font-size: 2.5rem;
}

.ideology_text {
  padding: 15px 20px;
}
.ideology_text h5 {
  font-size: clamp(1rem, 3vw, 1.1125rem);
  margin-bottom: 10px;
}
.ideology_text aside {
  margin-top: 10px;
  background-color: #E3E8EE;
  max-width: 517px;
  margin-left: auto;
  padding: 5px;
  font-size: 0.875rem;
}

/* ベース（reset, variables, mixin） */
/*会員募集*/
.member_section {
  margin-bottom: 40px;
}

.download_section {
  text-align: center;
  background-color: #F0F6FD;
}

.recuitment_btn {
  width: 507px;
  max-width: 100%;
  height: 70px;
  display: flex;
  border-radius: 10px;
  font-size: 1.25rem;
  color: #ffffff;
  background-color: #1422B3;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  margin: 20px auto;
  transition: 0.3s ease;
}
.recuitment_btn::before, .recuitment_btn::after {
  transition: 0.3s ease;
}
.recuitment_btn:hover {
  background-color: #1422B3;
  transform: translateY(-2px);
  /* 下方向に濃いめの影を落とす */
  box-shadow: 3px 6px 12px rgba(0, 0, 0, 0.75);
}
.recuitment_btn:hover::after {
  transform: translateX(4px);
}
.recuitment_btn::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/file.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.form_Sectrion {
  padding: 10px;
}
@media (min-width: 1365px) {
  .form_Sectrion {
    padding: 0;
  }
}

/* ベース（reset, variables, mixin） */
/*お問い合わせ*/
/* ベース（reset, variables, mixin） */
/*プライバシーポリシー*/
.privacy_section {
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 700;
}
.privacy_section p {
  letter-spacing: 0.04rem;
  margin-bottom: 20px;
}
.privacy_section h3 {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: min(1.5rem, 5vw);
}
.privacy_section ul, .privacy_section ol {
  color: #559F31;
  margin-bottom: 20px;
}
.privacy_section ul {
  list-style: disc inside;
}
.privacy_section ol {
  list-style: decimal inside;
}
@media (min-width: 1920px) {
  .privacy_section {
    padding: 0;
  }
}

.privacy_address {
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 700;
  margin-bottom: 80px;
}
.privacy_address .privacy_address_title {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1.5rem;
}
.privacy_address .privacy_address_text span {
  display: inline-block;
}/*# sourceMappingURL=style.css.map */