@charset "UTF-8";
/* SCSS Document */
/*------------------------------------------------------------

reset

------------------------------------------------------------*/
/* 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;
}

/* アニメーション */
.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;
  }
}
/*------------------------------------------------------------

common

------------------------------------------------------------*/
:root {
  --primary-blue: #00479d;
  --light-blue: #052978;
  --yellow:#f59e0b;
  --bg-light: #eff6ff;
  --text-dark: #003366;
  --transition-speed: 0.3s;
  --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  counter-reset: item;
  background-color: #f8fafc;
}

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;
  }
}

* {
  box-sizing: border-box;
}

p {
  line-height: 1.75;
}

a {
  text-decoration: none;
}

.flex {
  display: flex;
}

.left {
  width: 30%;
}

.right {
  width: 70%;
}

.wht {
  color: #fff;
}

.bold {
  font-weight: bold;
}

.en {
  /* font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif; */
}

header {
  position: relative;
}

.logo {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
@media screen and (max-width: 480px) {
  .logo {
    width: 100%;
    text-align: center;
  }
}
.logo h1 {
  font-family: "Zen Antique Soft", serif;
  font-size: 3rem;
  color: #fff;
  font-weight: 400;
  text-shadow: 0 0 5px #000;
}
@media screen and (max-width: 480px) {
  .logo h1 {
    font-size: 1.3rem;
  }
}

.logo-image {
  max-width: 600px;
}
@media screen and (max-width: 480px) {
  .logo-image {
    max-width: 300px;
    margin: 0 auto;
  }
}
.logo-image img {
  width: 100%;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex--img {
  width: 50%;
}
@media screen and (max-width: 480px) {
  .flex--img {
    width: 100%;
  }
}

.flex--txt {
  width: 50%;
}
@media screen and (max-width: 480px) {
  .flex--txt {
    width: 100%;
  }
}

.txt-box {
  line-height: 1.75;
}

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

TOPナビゲーション

------------------------------------------------------------*/
.top__nav--area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
  z-index: 999;
  transition: 0.3s;
}
.top__nav--area.bgColor {
  background: rgba(255, 255, 255, 0.9);
  transition: 0.3s;
}

.top__nav--box {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .top__nav--box {
    padding: 20px 10px;
  }
}
.top__nav--box .top__nav--logo {
  padding: 10px !important;
  margin-right: auto;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 400/64;
}
@media screen and (max-width: 480px) {
  .top__nav--box .top__nav--logo {
    max-width: 280px;
  }
}
.top__nav--box .top__nav--logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top__nav--box .top__nav {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .top__nav--box .top__nav {
    display: none;
  }
}
.top__nav--box .top__nav li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #000;
  font-size: 1.1rem;
  font-weight: bold;
  transition: 0.3s;
}
.top__nav--box .top__nav li a span {
  font-family: "Century Gothic", "Arial", YuGothic, "Yu Gothic", sans-serif;
  display: block;
  font-size: 0.7rem;
}
.top__nav--box .top__nav li a:hover {
  color: #ccc;
  transition: 0.3s;
}
.top__nav--box .top__nav li.contact-nav-btn a {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 5px;
  padding: 15px 20px;
  color: #fff;
  background-color: var(--light-blue);
  border: solid 1px var(--light-blue);
  border-radius: 50px;
  background-size: 200% 100%;
  background-image: linear-gradient(to right, transparent 50%, rgb(239, 246, 255) 50%);
  transition: background-position 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
}
.top__nav--box .top__nav li.contact-nav-btn a::before {
  content: "\f0e0";
  /* FontAwesomeのPDFアイコンコード */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
}
.top__nav--box .top__nav li.contact-nav-btn a:hover {
  color: var(--light-blue);
  background-color: var(--light-blue);
  background-position: -100% 100%;
}

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

スマホナビ

------------------------------------------------------------*/
.navToggle {
  display: none;
}
@media screen and (max-width: 1024px) {
  .navToggle {
    display: block;
    position: fixed;
    right: 10px;
    top: 10px;
    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(--light-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(--light-blue);
    font-size: 11px;
    top: 45px;
  }
  .navToggle.nav_active span {
    box-shadow: none;
    text-shadow: none;
    border-bottom: solid 4px #fff;
  }
  .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: #fff;
    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: url(../img/global-bg.webp), rgb(0, 112, 192);
    background-size: cover;
    color: #fff;
    text-align: right;
    transform: translateX(5%);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
  }
  .globalMenuSp ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    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: #fff;
    font-weight: bold;
    padding: 0.6em 0;
    font-size: 1.1em;
  }
  .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;
  }
}

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

パンくずリスト

------------------------------------------------------------*/
.pan-list ol {
  display: flex;
  width: 100%;
  max-width: 1500px;
  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: ">";
}

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

コンテンツ

------------------------------------------------------------*/
.main {
  padding-top: 99px;
}
@media screen and (max-width: 480px) {
  .main {
    padding-top: 89.5px;
  }
}

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

hero--area

------------------------------------------------------------*/
.swiper__hero--area {
  position: relative;
  aspect-ratio: 980/465;
  width: 100%;
  overflow: hidden;
  /* 	@include sp {
  	height: 40vh;
  } */
}

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

.hero--area {
  position: relative;
  aspect-ratio: 980/465;
  width: 100%;
  overflow: hidden;
  background: url(../img/img_top02.webp);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 480px) {
  .hero--area {
    aspect-ratio: 600/716;
    background: url(../img/img_top02-sp.webp);
    background-size: cover;
    background-position: center;
  }
}

.sub__hero--area {
  position: relative;
  height: 25vh;
  background: #fff;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .sub__hero--area {
    height: 25vh;
  }
}
.sub__hero--area.profile--bg {
  background: url(../img/sub-header_01.webp), rgb(255, 255, 255);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}
.sub__hero--area .sub__hero--area--ttl {
  position: relative;
  width: 100%;
  height: 25vh;
  max-width: 1500px;
  margin-inline: auto;
}
@media screen and (max-width: 480px) {
  .sub__hero--area .sub__hero--area--ttl {
    height: 25vh;
  }
}
.sub__hero--area .sub__hero--area--ttl h2 {
  position: absolute;
  display: block;
  bottom: 30px;
  left: 10px;
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: 900;
  text-shadow: 0 0 5px #fff;
}
@media screen and (max-width: 480px) {
  .sub__hero--area .sub__hero--area--ttl h2 {
    font-size: 1.5rem;
    bottom: unset;
    top: 20px;
    left: 20px;
  }
}
.sub__hero--area .sub__hero--area--ttl h2 span {
  font-size: 1.2rem;
  margin-left: 15px;
  vertical-align: middle;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #666666;
}
@media screen and (max-width: 480px) {
  .sub__hero--area .sub__hero--area--ttl h2 span {
    font-size: 1rem;
    display: block;
    margin-left: unset;
    margin-top: 5px;
  }
}
.sub__hero--area .sub__hero--area--ttl .catch {
  position: absolute;
  right: 10px;
  bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .sub__hero--area .sub__hero--area--ttl .catch {
    text-align: right;
  }
}
.sub__hero--area .sub__hero--area--ttl .catch .jp {
  font-size: 1.2rem;
  color: var(--light-blue);
  font-weight: bold;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}
@media screen and (max-width: 480px) {
  .sub__hero--area .sub__hero--area--ttl .catch .jp {
    font-size: 0.9rem;
  }
}
.sub__hero--area .sub__hero--area--ttl .catch .jp span {
  font-size: 1.3rem;
}
@media screen and (max-width: 480px) {
  .sub__hero--area .sub__hero--area--ttl .catch .jp span {
    font-size: 1rem;
  }
}
.sub__hero--area .sub__hero--area--ttl .catch .en {
  font-size: 1rem;
  color: #fff;
  text-shadow: 0 0 3px #000;
}
@media screen and (max-width: 480px) {
  .sub__hero--area .sub__hero--area--ttl .catch .en {
    font-size: 0.8rem;
  }
}

/* .sub_hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 30vh;
  aspect-ratio: 515 / 268;

  img {
	height: 100%;
	object-fit: cover;
    }
} */
/*------------------------------------------------------------

TOPページコンテンツ

------------------------------------------------------------*/
.proposal__box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 100px 10px;
  background: var(--light-blue);
  background-image: linear-gradient(rgba(5, 41, 120, 0.5), rgba(5, 41, 120, 0.7)), url("../img/proposal-bg.webp");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .proposal__box {
    flex-wrap: wrap;
    background-image: unset;
    padding: 60px 10px;
  }
}
.proposal__box .section__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 280px;
}
@media screen and (max-width: 1024px) {
  .proposal__box .section__title {
    width: 100%;
    padding: 20px 0;
  }
}
.proposal__box .section__title h2 {
  text-align: center;
  font-size: clamp(2.3rem, 1.24vw + 2.01rem, 3rem);
  color: #fff;
  font-weight: 900;
  text-shadow: 0 0 3px #052978;
}
@media screen and (max-width: 480px) {
  .proposal__box .section__title h2 {
    font-size: 2.3rem;
  }
}
.proposal__box .section__title h2 .proposal__color {
  display: inline-block;
  color: var(--yellow);
  transform: skewX(-3deg);
  /* text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px,
  	#fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px,
  	#fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px,
  	#fff 2px -1px, #fff -2px -1px; */
}
.proposal__box .section__title h2 .en {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ccc;
  margin-top: 10px;
}

.proposal__list {
  display: flex;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  gap: 20px;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .proposal__list {
    flex-wrap: wrap;
  }
}
.proposal__list li {
  flex: 1;
  border-radius: 12px;
  transition: transform var(--transition-speed) cubic-bezier(0.25, 1, 0.5, 1), box-shadow var(--transition-speed) ease;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.15) 45%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
@media screen and (max-width: 1024px) {
  .proposal__list li {
    flex: 0 0 calc(50% - 10px);
  }
}
@media screen and (max-width: 480px) {
  .proposal__list li {
    flex: 0 0 100%;
  }
}
.proposal__list li a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 10px;
  text-decoration: none;
  height: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .proposal__list li a {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    padding: 10px;
  }
  .proposal__list li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
  }
}
.proposal__list li:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
  background: #f0f8ff;
}
@media screen and (max-width: 480px) {
  .proposal__list li:hover a::after {
    border-top: 2px solid var(--light-blue);
    border-right: 2px solid var(--light-blue);
  }
}
.proposal__list li:hover .fabox {
  background: var(--light-blue);
  transform: scale(1.1) rotate(5deg);
}
.proposal__list li:hover .fabox i {
  color: #fff;
}
.proposal__list li:hover span.jp {
  background: var(--light-blue);
  letter-spacing: 0.02rem;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .proposal__list li:hover span.jp {
    color: var(--light-blue);
    background: none;
  }
}
.proposal__list li:hover span.en {
  color: var(--light-blue);
  text-shadow: unset;
}
.proposal__list .proposal__list--item {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease, transform 1s ease;
}
.proposal__list .proposal__list--item.is-show {
  opacity: 1;
  transform: translateY(0);
}

.proposal__img {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition-speed) ease;
}
.proposal__img span.en {
  display: block;
  font-size: 2.2em;
  font-size: clamp(1.2rem, 1.77vw + 0.79rem, 2.2rem);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02rem;
  transition: color var(--transition-speed) ease;
  text-shadow: 0 0 3px #052978;
}
@media screen and (max-width: 480px) {
  .proposal__img span.en {
    font-size: 1.2rem;
  }
}

.fabox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--bg-light);
  transition: background var(--transition-speed) ease, transform var(--transition-speed) cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media screen and (max-width: 480px) {
  .fabox {
    width: 40px;
    height: 40px;
  }
}
.fabox i {
  font-size: 1.5rem;
  color: var(--primary-blue);
  transition: color var(--transition-speed) ease;
}
@media screen and (max-width: 480px) {
  .fabox i {
    font-size: 1.2rem;
  }
}

.proposal__txt {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.proposal__txt span.jp {
  display: block;
  font-size: 1.1rem;
  color: var(--light-blue);
  font-weight: 900;
  background: #fff;
  padding: 10px 8px;
  text-align: center;
  border-radius: 6px;
  transition: background var(--transition-speed) ease, letter-spacing var(--transition-speed) ease;
}
@media screen and (max-width: 480px) {
  .proposal__txt span.jp {
    color: #fff;
    background: none;
    text-align: left;
    padding: 5px;
  }
}

.top__contents {
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 50px;
  padding: 60px 10px 120px;
}
@media screen and (max-width: 1024px) {
  .top__contents {
    padding: 50px 10px;
  }
}
@media screen and (max-width: 480px) {
  .top__contents {
    padding: 0;
    gap: 50px;
  }
}
@media screen and (max-width: 480px) {
  .top__contents {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}

.left__area {
  position: sticky;
  top: 110px;
  width: 25%;
  overflow-y: auto;
}
@media screen and (max-width: 1024px) {
  .left__area {
    width: 30%;
    position: unset;
  }
}
@media screen and (max-width: 480px) {
  .left__area {
    width: 100%;
  }
}
.left__area .leftbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.left__area .leftbox li {
  background: #f5f5f5;
  border-radius: 10px;
}
.left__area .leftbox li a {
  position: relative;
  display: block;
  padding: 10px;
}
.left__area .leftbox li a .leftbox-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px 10px 10px;
}
.left__area .leftbox li a .img {
  position: absolute;
  aspect-ratio: 1;
  max-width: 70px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}
.left__area .leftbox li a .img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.left__area .leftbox li a .txt {
  position: relative;
  font-size: 1.2rem;
  color: #000;
  line-height: 1.5;
  font-weight: bold;
  text-align: right;
  z-index: 2;
  margin-left: auto;
}
.left__area .leftbox li a::after {
  position: absolute;
  inset: 0 5% 0 auto;
  /* 上 右 下 左 の順（right: 0 と同等） */
  margin-block: auto;
  /* 上下のマージンを自動計算して中央へ */
  height: -moz-fit-content;
  height: fit-content;
  /* 中身の高さに合わせる */
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid #007bff;
  border-right: 3px solid #007bff;
  transform: rotate(45deg);
  /* 45度回転させて右向きに */
}

.leftbox + .blog-ttl {
  margin-top: 20px;
}

.blog-ttl {
  aspect-ratio: 500/167;
}
.blog-ttl a img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.blog-ttl a:hover img {
  opacity: 0.7;
  transition: 0.3s;
}

.right__area {
  flex: 1;
}
@media screen and (max-width: 480px) {
  .right__area {
    width: 100%;
  }
}
.right__area .video__box {
  aspect-ratio: 470/265;
}
.right__area .video__box video {
  width: 100%;
}

.video__ttl--area {
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .video__ttl--area {
    padding: 20px 10px 10px;
  }
}
.video__ttl--area p.movie {
  display: inline-block;
  color: var(--light-blue);
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.25rem;
  background: var(--bg-light);
  padding: 5px 20px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.video__ttl--area .video__ttl {
  font-size: clamp(1.3rem, 1.77vw + 0.89rem, 2.3rem);
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--light-blue);
}
@media screen and (max-width: 480px) {
  .video__ttl--area .video__ttl {
    font-size: 1.3rem;
    text-align: center;
  }
}
.video__ttl--area .video__ttl i {
  color: var(--light-blue);
}
.video__ttl--area .video__ttl .impact {
  display: inline-block;
  font-size: clamp(2.3rem, 1.24vw + 2.01rem, 3rem);
  color: #fff;
  background-color: var(--light-blue);
  padding: 5px 20px 10px;
  transform: skewX(-3deg);
  border-radius: 0.5rem;
  margin-right: 0.2rem;
}
@media screen and (max-width: 1024px) {
  .video__ttl--area .video__ttl .impact {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 480px) {
  .video__ttl--area .video__ttl .impact {
    font-size: 2.3rem;
  }
}

.video__box + .youtube-ttl {
  margin-top: 60px;
}
.youtube-ttl {
  display: flex;
  padding: 10px;
  max-width: 100%;
  align-items: baseline;
}
@media screen and (max-width: 480px) {
  .youtube-ttl {
    flex-wrap: wrap;
    padding: 10px;
    justify-content: center;
  }
}
.youtube-ttl .youtube-img {
  aspect-ratio: 393/89;
  max-width: 150px;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .youtube-ttl .youtube-img {
    padding: 10px 0;
  }
}
.youtube-ttl .youtube-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.youtube-ttl .iwachan-img {
  aspect-ratio: 697/89;
  max-width: 310px;
  padding: 10px;
}
.youtube-ttl .iwachan-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.youtube-ttl .iwachan-txt {
  display: inline-block;
  width: 100%;
  position: relative;
  font-size: clamp(2.3rem, 1.24vw + 2.01rem, 3rem);
  font-weight: 900;
  transform: skewX(-3deg);
  padding: 0 15px;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}
@media screen and (max-width: 480px) {
  .youtube-ttl .iwachan-txt {
    font-size: 2.4rem;
  }
}
.youtube-ttl .iwachan-txt .iwachan-sub {
  font-size: clamp(1.5rem, 1.42vw + 1.17rem, 2.3rem);
}
@media screen and (max-width: 480px) {
  .youtube-ttl .iwachan-txt .iwachan-sub {
    font-size: 1.5rem;
  }
}
.youtube-ttl .iwachan-txt::after {
  position: absolute;
  display: block;
  right: 0;
  content: "";
  height: 20px;
  bottom: -5px;
  width: 100%;
  background-color: #e40127;
  z-index: -1;
  transform: skewX(-6deg);
}

.youtube-flex {
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 480px) {
  .youtube-flex {
    grid-template-columns: 1fr;
    padding: 10px;
  }
}

.youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 128/72;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.youtube iframe lite-youtube {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.more-btn {
  margin-top: 50px;
  text-align: center;
}
.more-btn.youtube-more a {
  display: inline-block;
  background-color: #e40127;
  border: solid 1px #e40127;
  color: #fff;
  font-weight: bold;
  padding: 20px 0;
  width: 300px;
  border-radius: 50px;
  background-size: 200% 100%;
  background-image: linear-gradient(to right, transparent 50%, rgb(255, 255, 255) 50%);
  transition: background-position 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
}
.more-btn.youtube-more a.btn-view-all::before {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  margin-right: 5px;
}
.more-btn.youtube-more a:hover {
  color: #000;
  background-color: #e40127;
  background-position: -100% 100%;
}
.more-btn.youtube-more a:hover::before {
  color: #e40127;
}

.sidebar-link-list {
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 480px) {
  .sidebar-link-list {
    max-width: 100%;
    padding: 20px;
  }
}
.sidebar-link-list span {
  line-height: 1.2;
}
.sidebar-link-list span.en {
  display: inline-block;
  color: #000;
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1.1rem;
  background: #fff;
  padding: 2px 12px;
  border-radius: 50px;
  margin-bottom: 5px;
}
.sidebar-link-list span.jp {
  display: block;
  font-size: clamp(1rem, 0.53vw + 0.88rem, 1.3rem);
  font-weight: 900;
  letter-spacing: 0.05rem;
  text-shadow: 1px 1px 0px #000;
}
@media screen and (max-width: 480px) {
  .sidebar-link-list span.jp {
    font-size: 1.2rem;
  }
}

.sidebar-link-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  height: 100px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.sidebar-link-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.sidebar-link-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.5);
  transition: transform 0.5s ease;
}

.sidebar-link-item:hover .sidebar-link-img {
  transform: scale(1.1);
  filter: brightness(0.4);
}

.sidebar-link-content {
  position: relative;
  z-index: 10;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
.sidebar-link-content i {
  font-size: 1.5rem;
}

@media screen and (max-width: 480px) {
  .sidebar-link-content-txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.blog__area {
  background: #fff;
  border-radius: 10px;
  margin-top: 20px;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .blog__area {
    margin-top: 0;
    border-radius: 0;
  }
}
.blog__area .blog__post--list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
@media screen and (max-width: 480px) {
  .blog__area .blog__post--list {
    padding: 50px 20px;
  }
}
.blog__area .blog__post--list li a {
  display: block;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
}
.blog__area .blog__post--list li a:hover {
  color: #ccc;
  transition: 0.3s;
}
.blog__area .blog__post--list li span {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--light-blue);
  font-weight: bold;
  line-height: 1.25rem;
  background: var(--bg-light);
  padding: 2px 12px;
  border-radius: 50px;
  margin-bottom: 5px;
}

footer {
  color: #fff;
  background: var(--light-blue);
  padding: 100px 10px 20px;
}
@media screen and (max-width: 480px) {
  footer {
    padding: 100px 20px 20px;
  }
}
footer .footer__inner {
  max-width: 1500px;
  margin-inline: auto;
}
footer .footer__inner--flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  footer .footer__inner--flex {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 480px) {
  footer .footerbox {
    display: none;
  }
}
footer p.footer-menu {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.8;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
footer p.footer-menu::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #fff;
  margin-right: 12px;
}
footer .footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 120px;
  line-height: 1.75;
}
footer .footer__nav li a {
  position: relative;
  color: #fff;
  padding-left: 1rem;
  font-weight: bold;
}
footer .footer__nav li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
footer .footer__nav li:last-child:nth-child(odd) {
  grid-column: 2;
  /* 強制的に2列目に配置 */
}
footer .office {
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  line-height: 1.75;
}
footer .office dt {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.8;
  display: flex;
  align-items: center;
}
footer .office dt::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #fff;
  margin-right: 12px;
}
footer .office dd {
  margin: 0;
}
footer .office address {
  font-style: normal;
  line-height: 1.6;
  font-size: 1.1rem;
  font-weight: bold;
}
footer .office address span {
  margin-right: 1rem;
}
@media screen and (max-width: 480px) {
  footer .office address span {
    display: block;
  }
}
footer .office address a {
  color: #fff;
}
footer .office address:last-child {
  font-size: 0.95rem;
  margin-top: 8px;
  opacity: 0.9;
}
footer .copyright {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

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

下層ページコンテンツ

------------------------------------------------------------*/
.sub__contents {
  padding: 50px 30px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  .sub__contents {
    padding: 50px 10px;
    background-color: unset;
    border-radius: unset;
    box-shadow: unset;
  }
}
.sub__contents h3 {
  font-size: 1.5rem;
  font-weight: 900;
  border-left: 3px solid var(--light-blue);
  color: var(--light-blue);
  padding-left: 1rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .sub__contents h3 {
    font-size: 1.3rem;
  }
}
.sub__contents p + p {
  margin-top: 1rem;
}
.sub__contents ol {
  list-style-type: decimal;
  padding-left: 1rem;
}
@media screen and (max-width: 480px) {
  .sub__contents ol {
    padding-top: 20px;
  }
}
.sub__contents ol li {
  margin-bottom: 20px;
}
.sub__contents ol li h4 {
  font-weight: bold;
  line-height: 1.75;
  margin-bottom: 10px;
  border-bottom: dotted 1px #ccc;
}
.sub__contents:last-of-type {
  border-bottom: unset;
}

@media screen and (max-width: 480px) {
  .sub__contents:nth-of-type(even) {
    background-color: #fff;
  }
}

.sub__contents + .sub__contents {
  margin-top: 60px;
}
@media screen and (max-width: 480px) {
  .sub__contents + .sub__contents {
    margin-top: 0;
  }
}

.sub__contents--float {
  display: flow-root;
}
@media screen and (max-width: 480px) {
  .sub__contents--float {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
  }
}
.sub__contents--float .sub__contents--float-img {
  float: right;
  padding-left: 1rem;
  aspect-ratio: 310/210;
  min-width: 310px;
}
@media screen and (max-width: 480px) {
  .sub__contents--float .sub__contents--float-img {
    float: unset;
    padding-left: unset;
  }
}
.sub__contents--float .sub__contents--float-img.float-left {
  float: left;
  padding-left: unset;
  padding-right: 1rem;
}
.sub__contents--float .sub__contents--float-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.sub__contents--flex {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 480px) {
  .sub__contents--flex {
    flex-direction: column;
  }
  .sub__contents--flex.reverse {
    flex-direction: column-reverse;
  }
}
.sub__contents--flex .sub__contents--flex-img {
  aspect-ratio: 310/210;
  min-width: 310px;
}
.sub__contents--flex .sub__contents--flex-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.sub__contents--flex + .sub__contents--flex-txt {
  margin-top: 1rem;
}

.sub__contents--section h3.post__ttl {
  display: flex;
  align-items: center;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--light-blue);
  border-left: unset;
  padding-left: unset;
  /* &::after {
            content: '';
            width: 20px;
            border-bottom: 4px solid #cbd5e1;
  	margin-left: 15px;
        } */
}
@media screen and (max-width: 480px) {
  .sub__contents--section h3.post__ttl {
    font-size: 1.25rem;
  }
}
.sub__contents--section h3.post__ttl::before {
  content: "";
  width: 20px;
  border-bottom: 3px solid #cbd5e1;
  margin-right: 15px;
}

.sub__contents--section + .sub__contents--section {
  margin-top: 100px;
}

.sub__contents--area--ttl {
  margin-bottom: 50px;
}
.sub__contents--area--ttl h2 {
  display: block;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .sub__contents--area--ttl h2 {
    font-size: 2rem;
    bottom: 40px;
  }
}
.sub__contents--area--ttl h2 span {
  font-size: 1rem;
  margin-left: 15px;
  vertical-align: middle;
  letter-spacing: 0.1em;
}

.latest-pdf-viewer {
  margin-top: 50px;
}
.latest-pdf-viewer h2 {
  color: #fff;
  background-color: var(--light-blue);
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 5px 30px;
  text-align: right;
}

.pdf__grid {
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 480px) {
  .pdf__grid {
    grid-template-columns: 1fr;
  }
}

.pdf__link a {
  position: relative;
  color: #4682b4;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}
.pdf__link a:hover {
  border-color: #94a3b8;
  background: var(--bg-light);
  transition: 0.3s;
}
.pdf__link a:hover .w-4 {
  margin-left: 20px;
  transition: 0.3s;
}
.pdf__link a::before {
  content: "\f1c1";
  /* FontAwesomeのPDFアイコンコード */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  color: #ef4444;
  background-color: #fee2e2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  margin-right: 10px;
}
.pdf__link a:visited {
  background-color: var(--bg-light);
}
.pdf__link a:visited:hover {
  border-color: unset;
  background: unset;
}
.pdf__link a:visited::before {
  color: #4682b4;
  background-color: #fff;
}
.pdf__link i {
  font-size: 1.5rem;
  margin-right: 5px;
}
.pdf__link .w-5 {
  width: 1.25rem;
}
.pdf__link .w-4 {
  width: 1.25rem;
  transition: 0.3s;
}

.pdf__grid.bn {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 480px) {
  .pdf__grid.bn {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.pdf__grid.bn li a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: bold;
  padding: 10px 25px;
  color: #4682b4;
  background-color: #fff;
  border: solid 1px #ccc;
  text-align: center;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  min-height: 105px;
}
.pdf__grid.bn li a:hover {
  border-color: #94a3b8;
  background: var(--bg-light);
  transition: 0.3s;
}
.pdf__grid.bn li a::before {
  content: "\f1c1";
  /* FontAwesomeのPDFアイコンコード */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  color: #ef4444;
  background-color: #fee2e2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  margin: 0 auto;
}
.pdf__grid.bn li a:visited {
  background-color: var(--bg-light);
}
.pdf__grid.bn li a:visited::before {
  color: #4682b4;
  background-color: #fff;
}
.pdf__grid.bn li select {
  position: relative;
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #4682b4;
  padding: 10px 25px;
  border: solid 1px #ccc;
  text-align: center;
  width: 100%;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.bn + .bn {
  margin-top: 20px;
}

/* タイトルの装飾 */
.sub__contents--area--ttl h2 span {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 0.25rem;
}

.more-btn {
  margin-top: 50px;
  text-align: center;
}
.more-btn a {
  display: inline-block;
  background-color: var(--light-blue);
  border: solid 1px var(--light-blue);
  color: #fff;
  font-weight: bold;
  padding: 20px 0;
  width: 300px;
  border-radius: 50px;
  background-size: 200% 100%;
  background-image: linear-gradient(to right, transparent 50%, rgb(239, 246, 255) 50%);
  transition: background-position 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
}
.more-btn a.btn-view-all::before {
  content: "\f518";
  /* FontAwesomeのPDFアイコンコード */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  margin-right: 5px;
}
.more-btn a:hover {
  color: var(--light-blue);
  background-color: var(--light-blue);
  background-position: -100% 100%;
}

.blog__area .more-btn {
  margin-top: 0;
  text-align: center;
  padding-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .blog__area .more-btn {
    padding-bottom: 50px;
  }
}
.blog__area .more-btn a {
  width: auto;
  padding: 10px 40px;
  font-size: 1rem;
}
@media screen and (max-width: 480px) {
  .blog__area .more-btn a {
    width: 300px;
    padding: 20px 0;
  }
}

.sub__contents--proposal {
  background-color: #fff;
  padding: 50px 30px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
@media screen and (max-width: 480px) {
  .sub__contents--proposal {
    padding: 50px 10px;
    background-color: unset;
    border-radius: unset;
    box-shadow: unset;
  }
}
.sub__contents--proposal h3 {
  padding-left: 15px;
  margin-bottom: 20px;
}
.sub__contents--proposal h3 span {
  display: block;
  line-height: 1.5;
}
.sub__contents--proposal h3 span.en {
  color: var(--light-blue);
  font-size: 1.3rem;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .sub__contents--proposal h3 span.en {
    font-size: 1rem;
  }
}
.sub__contents--proposal h3 span.jp {
  font-size: 2.2rem;
  font-weight: 900;
}
@media screen and (max-width: 480px) {
  .sub__contents--proposal h3 span.jp {
    font-size: 1.5rem;
  }
}
.sub__contents--proposal h4 {
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .sub__contents--proposal h4 {
    font-size: 1rem;
  }
}
.sub__contents--proposal p + h4 {
  margin-top: 20px;
}

.sub__contents--proposal:nth-of-type(even) {
  background: #fff;
}

.sub__contents--proposal + .sub__contents--proposal {
  margin-top: 50px;
}
@media screen and (max-width: 480px) {
  .sub__contents--proposal + .sub__contents--proposal {
    margin-top: 0;
  }
}

#life {
  scroll-margin-top: 150px;
  border-left: solid 4px #669900;
}
#life .en, #life .jp {
  color: #669900;
}

#parenting {
  scroll-margin-top: 150px;
  border-left: solid 4px #ff3366;
}
#parenting .en, #parenting .jp {
  color: #ff3366;
}

#local {
  scroll-margin-top: 150px;
  border-left: solid 4px #9966cb;
}
#local .en, #local .jp {
  color: #9966cb;
}

#challenge {
  scroll-margin-top: 150px;
  border-left: solid 4px #339a99;
}
#challenge .en, #challenge .jp {
  color: #339a99;
}

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

お問い合わせ

------------------------------------------------------------*/
.input__area .mfp_element_text, .input__area .mfp_element_number, .input__area .mfp_element_select-one, .input__area .mfp_element_email, .input__area .mfp_element_tel, .input__area .mfp_element_textarea, .input__area .mfp_element_date, .input__area .mfp_element_password {
  box-shadow: none !important;
}
.input__area .mfp_element_submit, .input__area .mfp_element_reset, .input__area .mfp_element_button, .input__area button.mfp_next, .input__area button.mfp_prev {
  background: #ccc !important;
  text-shadow: none !important;
  transition: 0.3s;
}
.input__area .mfp_element_submit:hover, .input__area .mfp_element_reset:hover, .input__area .mfp_element_button:hover, .input__area button.mfp_next:hover, .input__area button.mfp_prev:hover {
  box-shadow: none !important;
  background: #f5f5f5 !important;
  transition: 0.3s;
}
.input__area .must {
  text-shadow: none !important;
  box-shadow: none !important;
}

th.re_item {
  width: 300px;
}

.contact {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  background: #fff;
}
.contact tr {
  display: flex;
  padding: 20px 0;
  /*border-top: solid 1px #ccc;*/
}
@media screen and (max-width: 480px) {
  .contact tr {
    flex-wrap: wrap;
  }
}
.contact tr:nth-of-type(odd) {
  background: #F6F7F9;
}
.contact th,
.contact td {
  padding: 10px;
  line-height: 1.75;
}
.contact th {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .contact th {
    width: 100%;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 480px) {
  textarea {
    width: 100% !important;
  }
}

@media screen and (max-width: 480px) {
  form#mailformpro label.checkFlex {
    white-space: pre-line;
  }
}

@media screen and (max-width: 480px) {
  .small {
    display: block;
  }
}

.thanks {
  width: 100%;
  padding: 50px 0;
}
@media screen and (max-width: 480px) {
  .thanks {
    padding: 50px 0;
  }
}
.thanks h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .thanks h3 {
    font-size: 1.2rem;
  }
}

.thanks-txt {
  padding: 10px;
  line-height: 1.8em;
  box-sizing: border-box;
}

.note {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  line-height: 1.8em;
}

.policy {
  padding: 10px 0;
  font-weight: bold;
}

.policy__area {
  line-height: 1.5;
}
.policy__area h4 {
  font-size: 1.1rem;
  color: #2c5282;
  margin-top: 30px;
  margin-bottom: 15px;
}
.policy__area p, .policy__area ul {
  font-size: 15px;
  margin-bottom: 15px;
}
.policy__area ul {
  padding-left: 20px;
  list-style-type: disc;
}
.policy__area li {
  margin-bottom: 5px;
}
.policy__area .footer-info {
  background-color: #f7fafc;
  border: 1px solid #e2e8f0;
  padding: 20px;
  border-radius: 5px;
  margin-top: 30px;
}
.policy__area .footer-info p {
  margin-bottom: 8px;
}
.policy__area .footer-info p:last-child {
  margin-bottom: 0;
}
.policy__area .date {
  text-align: right;
  color: #718096;
  font-size: 14px;
  margin-top: 40px;
}/*# sourceMappingURL=style.css.map */