@charset "UTF-8";
:root {
  --blue: #0b5cad;
  --deep-blue: #073b74;
  --light-blue: #eaf4ff;
  --sky: #f5fbff;
  --accent: #2ba6cb;
  --text: #1f2d3d;
  --muted: #607083;
  --white: #ffffff;
  --border: #d7e8f7;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: bottom;
}

* {
  box-sizing: border-box;
}

/* アニメーション */
.js_FadeIn {
  transform: translateX(-1%);
  opacity: 0;
}

.js_FadeIn.fadeUp {
  transform: translateY(15px);
  opacity: 0;
}

.js_FadeIn.fadeIn {
  transform: translateX(0%);
  opacity: 0;
}

.huwa {
  animation: huwa 1s ease-out forwards;
}

.huwaUp {
  animation: huwa 1s ease-out forwards;
}

.huwaFade {
  animation: huwa 1.5s ease-out forwards;
}

@keyframes huwa {
  to {
    transform: initial;
    opacity: 1;
  }
}
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--sky);
  line-height: 1.8;
}

body.admin-bar .top__nav--area {
  top: 32px;
}
@media screen and (max-width: 480px) {
  body.admin-bar .top__nav--area {
    top: 46px;
  }
}

@media screen and (max-width: 480px) {
  body.admin-bar #wpadminbar {
    position: fixed;
  }
}
@media screen and (max-width: 480px) {
  body.admin-bar .navToggle {
    top: 56px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  font-weight: 900;
  color: var(--deep-blue);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.menu {
  display: flex;
  gap: 30px;
  font-size: 0.95rem;
  color: var(--muted);
  white-space: nowrap;
}
.menu li a {
  display: inline-block;
  padding: 10px;
  position: relative;
}
.menu li a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  width: 0;
  height: 2px;
  background: var(--deep-blue);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.menu li a:hover::after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.menu li:last-of-type a::after {
  content: none;
}
.menu li:last-of-type a {
  background: var(--deep-blue);
  color: white !important;
  padding: 0.8rem 2rem;
  border-radius: 9999px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(5, 150, 105, 0.2);
  transition: all 0.3s;
}

.hero {
  background: linear-gradient(120deg, rgba(7, 59, 116, 0.92), rgba(11, 92, 173, 0.76));
  color: var(--white);
  padding: 96px 24px 88px;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.hero-inner h2 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.28;
  margin: 0 0 20px;
  letter-spacing: 0.04em;
}

.swiper__hero--area {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  inset: 0;
  z-index: -1;
}
.hero-bg .swiper-slide {
  background-size: cover;
  background-position: top center;
}

.label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero p {
  max-width: 720px;
  font-size: 18px;
  margin: 0 0 32px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s;
}

.btn.primary {
  background: var(--white);
  color: var(--blue);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--white);
}

section {
  padding: 70px 24px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 38px;
}

.section-title span {
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.12em;
}

h2 {
  color: var(--deep-blue);
  font-size: 32px;
  margin: 6px 0 10px;
}

.section-title p {
  color: var(--muted);
  margin: 0;
}

.notice {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(7, 59, 116, 0.08);
  border: 1px solid var(--border);
}

.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.notice-list li:last-child {
  border-bottom: 0;
}

.date {
  color: var(--blue);
  font-weight: 700;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.photo-card {
  min-height: 330px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(11, 92, 173, 0.12), rgba(11, 92, 173, 0.04)), url("../img/peace.webp") center/cover;
  box-shadow: 0 18px 44px rgba(7, 59, 116, 0.15);
}

.lead {
  font-size: 17px;
  color: var(--text);
}

.activities {
  background: var(--light-blue);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(7, 59, 116, 0.07);
}

.card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.img1 {
  background-image: url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&w=900&q=80");
}

.img2 {
  background-image: url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=900&q=80");
}

.img3 {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=900&q=80");
}

.img4 {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=900&q=80");
}

.card-body {
  padding: 24px;
}

.card h3 {
  color: var(--deep-blue);
  font-size: 21px;
  margin: 0 0 8px;
}

.tag {
  display: inline-block;
  color: var(--blue);
  background: var(--light-blue);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.join {
  background: linear-gradient(120deg, var(--blue), var(--accent));
  color: var(--white);
  text-align: center;
}

.join h2 {
  color: var(--white);
}

.join-box {
  max-width: 760px;
  margin: 0 auto;
}

.fees {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.fee {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  padding: 16px 28px;
  font-weight: 700;
}

.contact {
  background: var(--white);
}

.contact-card {
  background: var(--sky);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  text-align: center;
}

footer {
  background: var(--deep-blue);
  color: rgba(255, 255, 255, 0.86);
  padding: 34px 24px;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 760px) {
  .menu {
    display: none;
  }
  .hero {
    padding: 72px 20px;
  }
  section {
    padding: 52px 20px;
  }
  .about-grid,
  .cards {
    grid-template-columns: 1fr;
  }
  .notice-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  h2 {
    font-size: 27px;
  }
}
.navToggle {
  display: none;
}
@media screen and (max-width: 1024px) {
  .navToggle {
    display: block;
    position: fixed;
    right: 5px;
    top: 5px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 101;
    text-align: center;
    border-radius: 5px;
  }
  .navToggle span {
    display: block;
    position: absolute;
    width: 47px;
    border-bottom: solid 4px var(--deep-blue);
    transition: 0.35s ease-in-out;
    left: 6px;
  }
  .navToggle span:nth-child(1) {
    top: 9px;
  }
  .navToggle span:nth-child(2) {
    top: 23px;
  }
  .navToggle span:nth-child(3) {
    top: 37px;
  }
  .navToggle span:nth-child(4) {
    font-family: "Century Gothic", "Arial", YuGothic, "Yu Gothic", sans-serif;
    border: none;
    color: var(--deep-blue);
    font-size: 11px;
    top: 45px;
  }
  .navToggle.nav_active span {
    box-shadow: none;
    text-shadow: none;
    border-bottom: solid 4px #000;
  }
  .navToggle.nav_active span:nth-child(1) {
    top: 22px;
    left: 6px;
    transform: rotate(-45deg);
  }
  .navToggle.nav_active span:nth-child(2), .navToggle.nav_active span:nth-child(3) {
    top: 22px;
    transform: rotate(45deg);
  }
  .navToggle.nav_active span:nth-child(4) {
    border: none;
    color: var(--deep-blue);
    font-size: 11px;
    font-weight: bold;
    top: 45px;
  }
}

.globalMenuSp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .globalMenuSp {
    display: block;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background: var(--white);
    background-size: cover;
    color: #000;
    text-align: right;
    transform: translateX(5%);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
  }
  .globalMenuSp ul {
    background-size: cover;
    margin: 0 auto;
    padding: 100px 50px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }
  .globalMenuSp ul li {
    font-size: 1.1rem;
    list-style-type: none;
    padding: 0;
    width: 100%;
    /*border-bottom: 1px dotted #fff;*/
  }
  .globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .globalMenuSp ul li .sub-menu {
    padding: 0;
  }
  .globalMenuSp ul li .sub-menu a {
    color: #888888;
  }
  .globalMenuSp ul li a {
    display: block;
    color: var(--deep-blue);
    font-weight: bold;
    padding: 0.6em 0;
    font-size: 1.1em;
    text-shadow: 1px 1px 3px #fff;
  }
  .globalMenuSp ul li a span {
    font-family: "Century Gothic", "Arial", YuGothic, "Yu Gothic", sans-serif;
    display: block;
    font-size: 0.7rem;
    margin-top: 5px;
  }
  .globalMenuSp ul li a:hover {
    background: rgba(245, 245, 245, 0.8);
  }
  .globalMenuSp.nav_active {
    transform: translateY(0%);
    visibility: visible;
    opacity: 1;
  }
}

.sub__hero--area {
  height: 30vh;
  background: linear-gradient(120deg, rgba(7, 59, 116, 0.92), rgba(11, 92, 173, 0.76)), url(../img/bg.webp);
  background-position: center;
  background-size: cover;
}
.sub__hero--area.member-bg {
  background: linear-gradient(120deg, rgba(7, 59, 116, 0.92), rgba(11, 92, 173, 0.76)), url(../img/member-bg.webp);
  background-position: center;
  background-size: cover;
}

.sub-section-title {
  text-align: center;
}
.sub-section-title span {
  color: var(--white);
}
.sub-section-title h2 {
  color: var(--white);
}

.sub-page h3 {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .sub-page h3 {
    font-size: 1.5rem;
  }
}
.sub-page h3::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, #be123c, #059669);
}

.member-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 480px) {
  .member-list {
    grid-template-columns: 1fr;
  }
}
.member-list .member-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-weight: bold;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(7, 59, 116, 0.08);
  border: 1px solid var(--border);
}
.member-list dt {
  position: relative;
  font-size: 1.1rem;
  color: #f43f5e;
  padding-bottom: 5px;
}
.member-list dt::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 16px;
  height: 1px;
  background: linear-gradient(90deg, #be123c, #059669);
}
.member-list dd .member-image {
  aspect-ratio: 474/568;
  max-width: 170px;
  margin-inline: auto;
}
.member-list dd .member-image img {
  width: 100%;
}
.member-list dd .member-name {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 10px;
}
.member-list dd .member-name span {
  font-size: 0.9rem;
}

.supporter-list .supporter-item {
  margin-bottom: 30px;
}
.supporter-list .supporter-item dt {
  width: 250px;
  font-weight: bold;
}
.supporter-list .supporter-item dd ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 20px;
}
@media screen and (max-width: 480px) {
  .supporter-list .supporter-item dd ul {
    grid-template-columns: 1fr;
  }
}
.supporter-list .supporter-item dd ul li {
  min-width: 195px;
}

/*------------------------------------------------------------

Wordpress レイアウト

------------------------------------------------------------*/
strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.wp-block-image img {
  width: 100% !important;
  height: auto !important;
}

p + .wp-block-image img {
  margin-top: 20px;
}

.cat_ttl {
  font-size: 2em;
  padding: 30px 0;
  text-align: center;
  color: #00008b;
}
@media screen and (max-width: 480px) {
  .cat_ttl {
    font-size: 1.5em;
  }
}

.pan-list ol {
  display: flex;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 0.9em;
  padding: 10px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .pan-list ol {
    padding: 10px;
    flex-wrap: wrap;
    line-height: 1.5em;
  }
}
.pan-list ol li {
  padding: 0 10px;
}
.pan-list ol li a {
  position: relative;
  border-bottom: solid 1px #00008b;
}
.pan-list ol li a::after {
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: inline-block;
  content: ">";
}

.news__area--single {
  background: var(--white);
  padding: 50px 24px;
}

.wpmain-box {
  display: flex;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  justify-content: space-around;
  padding: 50px 0;
  box-sizing: border-box;
  gap: 30px;
}
@media screen and (max-width: 480px) {
  .wpmain-box {
    flex-wrap: wrap;
    padding: 0;
  }
}

.wp-main {
  width: calc(75% - 15px);
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .wp-main {
    width: 100%;
  }
}
.wp-main .wp-list {
  padding: 0;
}

.wp-sub {
  width: calc(25% - 15px);
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .wp-sub {
    width: 100%;
    padding: 30px 10px;
  }
}
.wp-sub ul {
  padding: 10px 10px 10px 24px;
}
.wp-sub ul li {
  list-style-position: outside;
  line-height: 1.5;
}
.wp-sub ul li + li {
  margin-top: 10px;
}

.news-post {
  box-sizing: border-box;
}
.news-post li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.news-post h3, .news-post h4 {
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .news-post h3, .news-post h4 {
    width: 100%;
    margin-bottom: 10px;
  }
}

.single_cat {
  font-size: 1.3em;
  font-weight: bold;
  border-bottom: solid 1px #ccc;
}

.state {
  font-size: 0.9em;
  color: #696969;
}
@media screen and (max-width: 480px) {
  .state {
    width: 100%;
    text-align: right;
  }
}

h2.sidebar {
  font-size: 1.3em;
  font-weight: bold;
  border-bottom: solid 1px #ccc;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  h2.sidebar {
    font-size: 1em;
  }
}

.wp-news li, .category li, .archive li {
  list-style-type: disc;
  list-style-position: inside;
}

.wp-ttl, .wp-ttl2 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
}

.wp-ttl2 {
  font-weight: bold;
  border-bottom: solid 1px #ccc;
  margin-bottom: 10px;
}
.wp-ttl2 h2 {
  font-size: 1.3em;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .wp-ttl2 h2 {
    font-size: 1.1em;
    line-height: 1.5em;
  }
}

.single_date {
  border-radius: 50px;
  font-size: 0.9em;
  color: #4682b4;
}
@media screen and (max-width: 480px) {
  .single_date {
    margin-left: auto;
  }
}

.entry_main {
  background: #fff;
  box-sizing: border-box;
  padding: 50px;
}
@media screen and (max-width: 480px) {
  .entry_main {
    padding: 20px 10px;
  }
}
.entry_main h2 {
  font-size: 1.3em;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .entry_main h2 {
    font-size: 1.1em;
    line-height: 1.5em;
  }
}
.entry_main p {
  line-height: 1.75em;
}
.entry_main h2 + p {
  margin-top: 10px;
}
.entry_main p + h2 {
  margin-top: 30px;
}
.entry_main p + p {
  margin-top: 10px;
}

.single-pager {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 20px;
}
@media screen and (max-width: 480px) {
  .single-pager {
    justify-content: space-between;
  }
}
.single-pager li a {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 1.2em;
  color: #fff;
  background: #000;
}
@media screen and (max-width: 480px) {
  .single-pager li a {
    font-size: 1em;
  }
}

/* p */
.wrap p {
  line-height: 1.8em;
  padding: 5px 0;
}

/* img */
.wrap img {
  width: 100% !important;
  max-width: 800px !important;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto !important;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

/* 引用 */
blockquote {
  position: relative;
  padding: 30px 15px 8px 15px;
  box-sizing: border-box;
  background: #EFEFEF;
  color: #555;
}

blockquote:before {
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 3px;
  content: "“";
  color: #CFCFCF;
  font-size: 90px;
  line-height: 1;
}

blockquote p {
  padding: 0;
  margin: 10px 0;
  line-height: 1.7;
}

blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

.pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 10px;
  font-size: 1.2em;
  color: #fff;
  background: #ccc;
  border-radius: 50%;
  overflow: hidden;
}
.page-numbers.next {
  color: #ccc;
  background: none;
}
.page-numbers.prev {
  color: #ccc;
  background: none;
}
.page-numbers.current {
  background: #000;
}
.page-numbers.current::after {
  content: none;
}

.wp-list {
  padding: 50px 0;
}
@media screen and (max-width: 480px) {
  .wp-list {
    padding: 10px;
  }
}
.wp-list li {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.wp-ttl {
  display: flex;
  width: 100%;
  padding: 10px;
  border-bottom: dotted 1px #ccc;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .wp-ttl {
    flex-direction: column;
  }
}
.wp-ttl h3 {
  margin-right: auto;
  font-size: 1.3em;
}
@media screen and (max-width: 480px) {
  .wp-ttl h3 {
    font-size: 1.1em;
  }
}
.wp-ttl h3 span {
  margin-left: 10px;
}
.wp-ttl h3 a {
  font-size: 1.1em;
  font-weight: bold;
  color: #4682b4;
}
@media screen and (max-width: 480px) {
  .wp-ttl h3 a {
    font-size: 1em;
  }
}
.wp-ttl h4 {
  margin-right: auto;
  font-size: 1.1rem;
}
@media screen and (max-width: 480px) {
  .wp-ttl h4 {
    width: 100%;
    font-size: 1rem;
    margin-right: unset;
  }
}
.wp-ttl h4 span {
  margin-left: 10px;
}
@media screen and (max-width: 480px) {
  .wp-ttl h4 span {
    margin-left: 0;
  }
}
.wp-ttl h4 a {
  font-weight: bold;
  color: #4682b4;
}
@media screen and (max-width: 480px) {
  .wp-ttl h4 a {
    display: block;
    font-size: 1em;
    margin-bottom: 10px;
  }
}
.wp-ttl .state {
  font-size: 0.9em;
}
@media screen and (max-width: 480px) {
  .wp-ttl .state {
    margin-left: auto;
  }
}

.wp__ttl--flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media screen and (max-width: 480px) {
  .wp__ttl--box {
    width: 100%;
  }
}

p.faicon {
  padding: 10px;
}
p.faicon a {
  font-size: 2em;
  color: var(--deep-blue);
}

.wp__cat-box {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 480px) {
  .wp__cat-box {
    width: 100%;
    justify-content: flex-end;
    margin-bottom: 5px;
  }
}

.wp__cat {
  display: inline-block;
  font-size: 0.7em;
  padding: 10px 15px;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  background: #4682b4;
}

.form__section {
  padding: 100px 10px;
  background: #fff;
}
@media screen and (max-width: 480px) {
  .form__section {
    padding: 50px 10px;
  }
}

@media screen and (max-width: 480px) {
  .form7 {
    padding: 10px;
  }
}
.form7 dl {
  font-weight: 500;
}
.form7 dl:nth-of-type(2n) {
  background: #fff;
}
.form7 dt {
  padding: 10px;
}
.form7 dd {
  padding: 10px;
}
.form7 dd p {
  margin-bottom: 5px;
}
.form7 dd .address-dd {
  margin-right: 16px;
  font-weight: 500;
}
.form7 input {
  border: solid 1px #CCC;
  border-radius: 3px;
  padding: 3px 8px;
  margin: 2px;
  vertical-align: middle;
}
@media screen and (max-width: 480px) {
  .form7 input {
    width: 100%;
  }
}
.form7 textarea {
  width: 500px;
  height: 150px;
  border: solid 1px #CCC;
  border-radius: 3px;
  padding: 3px 8px;
  margin: 2px;
  vertical-align: middle;
}
@media screen and (max-width: 480px) {
  .form7 textarea {
    width: 100%;
    height: 300px;
  }
}

.required {
  display: inline-block;
  font-size: 10px;
  color: white;
  background: #ff4500;
  padding: 5px;
  margin-right: 10px;
}

.rec-submit {
  margin-top: 20px;
  text-align: center;
}
.rec-submit input {
  border-radius: 5px;
  padding: 5px 10px;
  border: solid 1px #CCC;
  font-size: 18px;
  cursor: pointer;
  outline: none;
}
@media screen and (max-width: 480px) {
  .rec-submit input {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */