/* reset & init */
* {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
    font-size: 1.1vw;
    font-family: "Noto Sans JP", sans-serif;
    color: #131313;
    font-weight: 700;
    letter-spacing: .04em;
    font-feature-settings: 'palt';
}

.en {
	font-family: "Roboto Condensed", sans-serif;
}
.en-serif {
font-family: "Baskervville", serif;
}
.serif {
font-family: "Noto Serif JP", serif;
}

header,
footer {
  line-height: 1;
}

section {
  /*overflow: hidden;*/
}

h1, h2 {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

address {
  font-style: inherit;
}

ul {
  list-style: none;
}

a {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
a:hover{
  opacity: 0.7;
}
/* base */
/* header */
header {
}

.ls_bots li{
    list-style-type: disc;
}

.pc{
    display: block!important;
}
.sp{
    display: none!important;
}

header {
  border: none;
}
header .sec-inner{
  padding: 0;

}
.menu-trigger, .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box
}
.menu-trigger {
    position: relative;
    width: 60px;
    height: 60px;
    background: #002970;
    border-radius: 40px;
}
.menu-trigger span {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 44%;
    height: 2px;
    background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 26px
}
.menu-trigger span:nth-of-type(2) {
  top: 35px
}
.menu-trigger span:nth-of-type(3) {
  top: 44px
}
#sp-btn.active .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(0px) rotate(-45deg);
  transform: translateY(0px) rotate(-45deg)
    
}

#sp-btn.active .menu-trigger span:nth-of-type(2) {
  -webkit-transform: translateY(-8px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg)
}

#sp-btn.active {
}
#sp-btn.color-w {
  opacity: 1;
  cursor: pointer;
transition: .4s;
}
#sp-btn.color-w .menu-trigger span {
  background-color: #fff
}
#sp-btn.color-w.active .menu-trigger span {
  background-color: #fff
}
:root{
  --modal-dur: .42s; /* 開閉時間 */
  --modal-ease: cubic-bezier(.22,.61,.36,1); /* 減速しつつスッと止まる */
}

/* ベース */
.modal {
  position: fixed; inset: 0;
  display: grid; place-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--modal-dur) var(--modal-ease);
  z-index: 9999;
}
.modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

/* オーバーレイ（薄いブラーで奥行き） */
.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity var(--modal-dur) var(--modal-ease);
}
.modal.is-open .modal__overlay { opacity: 1; }

/* パネル（微スケール＋上下移動で“浮く”感じ） */
.modal__panel {
  position: relative;
  width: min(80vw, 1280px);
  max-height: min(80vh, 900px);
  overflow: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);

  /* 初期状態：少し下＆小さめ＆薄い */
  transform: translate3d(0,12px,0) scale(.975);
  opacity: 0;

  transition:
    transform var(--modal-dur) var(--modal-ease),
    opacity   var(--modal-dur) var(--modal-ease),
    box-shadow var(--modal-dur) var(--modal-ease);
  will-change: transform, opacity;
}

/* 開いた状態：フワッと定位置へ */
.modal.is-open .modal__panel {
  transform: translate3d(0,0,0) scale(1);
  opacity: 1;
  box-shadow: 0 24px 80px rgba(0,0,0,.28), 0 2px 10px rgba(0,0,0,.08);
}

/* “とろける”初動（任意）：キーframesで微バウンス */
@keyframes modalPopIn {
  0%   { transform: translate3d(0,16px,0) scale(.965); opacity: 0; }
  60%  { transform: translate3d(0,-2px,0) scale(1.008); opacity: 1; }
  100% { transform: translate3d(0,0,0) scale(1); }
}
/* 付けたい場合は下行のコメントアウトを外す */
 /* .modal.is-open .modal__panel { animation: modalPopIn .46s cubic-bezier(.2,.8,.2,1); } */

/* 文字・ボタン（そのまま） */
.modal__title { font-size: 20px; margin: 0 40px 10px 0; }
.modal__body {
    padding: 3vw 4vw 2vw 33%;
    line-height: 2;
}
.modal__body p {
    font-weight: 600;
    line-height: 2.4em;
	font-size: 0.88em;
}


.modal__actions { margin-top: 16px; display: flex; gap: 10px; justify-content: flex-start; }
.modal__primary {
    padding: 0.7em 1.5em 0.6em;
    border-radius: 999px;
    color: #003686;
    font-weight: 600;
    cursor: pointer;
    border: #003686 solid 2px;
    line-height: 1em;
    font-size: 0.9em;
	transition: .4s;
}
.modal__primary:hover {
    color: #fff;
   background: #003686;
	transition: .4s;
}

.modal__close {
    position: absolute;
    right: 0.5em;
    top: 0.5em;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-size: 2em;
    line-height: 1;
    cursor: pointer;
}

/* 背景スクロール固定（そのまま） */
.body--no-scroll { overflow: hidden; }

/* 低モーション環境 */
.modal-pic {
    position: absolute;
    width: 29%;
    bottom: 0;
    z-index: 2;
}
.modal-copy {
    position: absolute;
    width: 30%;
    top: 0;
    left: 0;
	z-index: 1;
}
.sp-on {
	display: none;
}
@media (max-width: 2800px) {
	.modal__body {
    padding: 4vw 4vw 2vw 33%;
}	
}
@media (max-width: 2400px) {
	.modal__body {
    padding: 5vw 5vw 3vw 33%;
}	
}
@media (max-width: 1800px) {
.modal__body {
    padding: 6vw 6vw 3vw 35%;
}
.modal-pic {
    width: 30%;
}
.modal__body p {
    line-height: 2.3em;
   font-size: 0.95em;
}	

}
@media (max-width: 1400px) {
.modal__body p {
    font-weight: 600;
    line-height: 2.4em;
    font-size: 17px;
}
}

@media (max-width: 1200px) {
	.modal__body p {
    font-size: 16px;
}
.modal__panel {
    width: 90%;
    max-height: 100%;
}.modal-pic {
    width: 26%;
}.modal__body {
    padding: 50px 50px 24px 30%;
}.modal__close {
    position: absolute;
    right: 16px;
    top: 16px;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}.modal__primary {
    padding: 0.7em 1.5em 0.6em;
    border-radius: 999px;
    color: #003686;
    font-weight: 600;
    cursor: pointer;
    border: #003686 solid 2px;
    line-height: 1em;
    font-size: 14px;
    transition: .4s;
}
  .sec-inner-min {
    width: 80%;
    margin: 0 auto;
}
}

@media (max-width: 800px) {
.modal__body {
    padding: 50px 30px 24px 34%;
}
.modal__close {
    position: absolute;
    right: 12px;
    top: 12px;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}
	.modal__body p {
    font-weight: 600;
    line-height: 2em;
    font-size: 13px;
}
	.modal-pic {
    width: 30%;
}
	
}


@keyframes load-scale {
0% {
 opacity: 0;

}
 100% {
 opacity: 1;

 } 
}
@-webkit-keyframes load-scale {
0% {
 opacity: 0;
 
}
 100% {
 opacity: 1;

 } 
}

/* section */
.sec-inner {
  margin: 0 auto;
width: 84%;
}


	.jimin {
    font-size: 24px;
    padding-top: 5px;
    padding-bottom: 4px;
}.jimin-fukushima {
    background: #0e2b90;
    padding: 7px 10px 5px;
    color: #fff;
    font-size: 15px;
    line-height: 1em;
    border-radius: 6px;
}.h-logo a {
    padding-left: 36px;
	    line-height: 1.3;
    padding-top: 10px;
}

.hero-name {
    position: absolute;
    width: 19vw;
    top: 8vw;
    left: 15vw;
}
.hero-jimin {
    width: 9vw;
    position: absolute;
    top: 4.2vw;
    left: 2.5vw;
}
.hero-copy {
    width: 16vw;
    position: absolute;
    right: 20vw;
    top: 8vw;
}
	.hero {
    position: relative;
    background: #26afe0;
    background: radial-gradient(circle, rgba(38, 175, 224, 1) 0%, rgba(0, 80, 161, 1) 48%, rgba(0, 70, 156, 1) 100%);
}
.hero-img img {
    width: 100%;
}
.hero h1 {
    font-size: 0.78em;
    color: #fff;
    position: absolute;
    left: 2.5vw;
    top: 2vw;
    line-height: 1.4em;
	text-align: left;
    font-weight: 500;
}
.home-lead {
    position: relative;
}
.home-lead-copy {
    font-size: 3.8em;
    padding-bottom: 0.5em;
    line-height: 1.3;
    font-weight: 900;
}
.home-lead .sec-inner {
    position: absolute;
    top: 12vw;
    z-index: 2;
    right: 8vw;
    color: #00489d;
    width: 45%;
    text-align: left;
}
.home-lead p {
    font-size: 1.3em;
    line-height: 1.8em;
}
.pic-items {
    display: flex;
    padding-top: 3em;
}
.sec-title-jp {
    position: relative;
    font-size: 1.6em;
    font-weight: 700;
    color: #00479c;
    padding-left: 2em;
    line-height: 1em;
    margin-bottom: 4em;
}
.sec-title-jp::before {
    content: "";
    position: absolute;
    left: 0;
    top: 55%;
    transform: translateY(-50%);
    width: 1.6em;
    height: 1px;
    background: #00479c;
}
.sec-copy {
    text-align: center;
    font-size: 3.4em;
    font-weight: 900;
}
.home-policy {
    padding: 8vw 0;
}


.policy-items.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	padding-top: 4em;
}
.policy-item {
    width: calc(33.333% - 1.4em);
    padding-bottom: 2em;
}.policy-item li {
    font-size: 0.95em;
    text-indent: -1.3em;
    padding-left: 1.3em;
    line-height: 1.5;
    padding-bottom: 0.4em;
    letter-spacing: 0;
    font-weight: 500;
}
.policy-item li strong {
    color: #e32e2e;
}

.policy-item ul {
}
.policy-item-title {
    font-size: 1.4em;
    font-weight: 700;
    color: #fff;
    line-height: 1.3em;
    border-radius: 0.2em;
    letter-spacing: 0;
    vertical-align: middle;
    min-height: 3em;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}
.pic-item img{
    border-radius: 0.2em;
}
.policy-item-detail {
    padding: 2em 0.5em;
}
.policy-item-subtitle {
    font-weight: 600;
    width: 100%;
    font-size: 1.1em;
	padding-bottom: 1em;
}
.policy-item span.ico {
    padding-right: 0.3em;
}
.cat01 .policy-item-title{
    background: #ed4d4d;
}
.cat01 .policy-item-subtitle,.cat01 span.ico {
color: #ed4d4d;
}
.cat02 .policy-item-title{
    background: #38a8d5;
}
.cat02 .policy-item-subtitle,.cat02 span.ico {
color: #38a8d5;
}
.cat03 .policy-item-title {
    background: #3db1a7;
}
.cat03 .policy-item-subtitle,.cat03 span.ico {
color: #3db1a7;
}
.cat04 .policy-item-title {
    background: #ed8ab6;
}
.cat04 .policy-item-subtitle,.cat04 span.ico {
color: #ed8ab6;
}
.cat05 .policy-item-title {
    background: #a6c553;
}
.cat05 .policy-item-subtitle,.cat05 span.ico {
color: #a6c553;
}
.cat06 .policy-item-title{
    background: #9471a5;
}
.cat06 .policy-item-subtitle,.cat06 span.ico {
color: #9471a5;
}
.cat07 .policy-item-title {
    background: #f5ab1d;
}
.cat07 .policy-item-subtitle,.cat07 span.ico {
color: #f5ab1d;
}
.cat08 .policy-item-title{
    background: #b79e8b;
}
.cat08 .policy-item-subtitle,.cat08 span.ico {
color: #b79e8b;
}

.cat09 .policy-item-title{
    background: #5f83b4;
}
.cat09 .policy-item-subtitle,.cat09 span.ico {
color: #5f83b4;
}
section.home-report {
    background: #d4e2f1;
    padding: 8vw 0;
}
.archive-parents {
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-start;
  gap: 1.5em;    
}
.archive-item {
  width: calc((100% - 1.5em * 4) / 5);
  padding-bottom: 3em;
}
.archive-item-tmb {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 0.4em;
}
.archive-item-tmb img {
width: 100%;
}
.archive-item-title {
    font-size: 0.86em;
    font-weight: 500;
    line-height: 1.5em;
    padding-top: 1em;
}
.archive-item-data {
    font-size: 0.7em;
    font-weight: 600;
    padding-top: 0.4em;
    color: #8e8e8e;
}
.sec-title-en {
    font-size: 9em;
    color: #d4e2f1;
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 900;
}
.home-report .sec-title-en {
    color: #fff;
}
.home-profile .sec-title-en {
    font-size: 3em;
    padding-bottom: 0.5em;
    color: #fff;
}
.prof-title {
    font-size: 1.1em;
    padding-bottom: 0.5em;
}
.home-profile p {
    font-weight: 400;
    font-size: 0.88em;
    line-height: 1.7em;
    padding-bottom: 2em;
}
.home-profile li {
    font-weight: 400;
    font-size: 0.9em;
    line-height: 1.7em;
    text-indent: -1em;
  padding-left: 1em;
}
.lead-bg {
    width: 100%;
}
.lead-bg img {
    width: 100%;
}


footer#footer {
    background: #023e85;
    color: #fff;
    font-weight: 400;
    padding: 6vw 0;
}
.office-inner.flex {
    width: 84%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.office-item.flex {
    display: flex;
    justify-content: flex-start;
    gap: 1.5em;
	align-items: center;
}
.office-inner.flex {
    width: 84%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3em;
}

.office-item-address {
    font-size: 0.9em;
    padding-bottom: 0.6em;
}
.office-item-address a{
text-decoration: underline;
}
.office-item-tel {
    font-size: 1.2em;
	font-weight: 600;
}
.foot-title {
    text-align: center;
    padding-top: 3em;
    font-size: 1.1em;
}

p.txt-link a{
  text-decoration: underline;
}
.f--bottom {
    text-align: center;
    padding-top: 1em;
    font-size: 0.8em;
}
p.txt-link {
    padding-top: 1em;
    text-align: center;
    font-size: 0.85em;
}

.sns-links-title {
    text-align: center;
	padding-bottom: 2em;
}
.sns-items {
    display: flex;
    justify-content: center;
    gap: 1.5em;
	align-items: center;
}
.sns-item {
    width: 4vw;
}
.takaichi {
    display: flex;
    align-items: center;
    margin: 0 auto;
    background: #e32e2e;
    border-radius: 0.8em;
    overflow: hidden;
    margin-top: 3vw;
}
.takaichhi-pic {
    width: 24%;
}
.takaichhi-pic img {
    width: 100%;
}
.takaichi-txt {
    padding: 2em 3em;
    line-height: 2em;
    font-size: 1.1em;
    width: 76%;
    color: #fff;
    font-weight: 600;
}
.takaichi-name {
    text-align: right;
    font-size: 1.4em;
    font-weight: 600;
}
.takaichi-name span {
    font-size: 0.6em;
  padding-right: 0.4em;
}
.office-item-name {
    line-height: 1em;
    border: #fff solid 1px;
    padding: 1em;
    font-size: 1.1em;
    align-items: center;
    display: flex;
}
section#profile {
    background: #00479c;
    color: #fff;
}
.profile-pic {
    width: 50%;
}
.profile-detail {
    width: 50%;
}
.profile-items {
    align-items: center;
    display: flex;
}


 /* modal-menu */
.modal-menu {
    width: 100%;
    background: #001d51;
    background-size: cover;
    right: -100%;
    position: fixed;
    padding: 40px;
    color: #fff;
    z-index:6;
    box-sizing: border-box;
    transition: 0.5s;
    height: 100%;
    overflow: auto;
    transition: 0.6s;
}
div#sp-btn {
    display: none;
}
/* modal-menu */
#modal-site-id {
text-align: center;
  margin: 60px auto;
  overflow: hidden;
  display: block;
}
#modal-site-id img{
    height: 48px;
}
.modal-menu ul {
   padding: 0 20px;
}
.modal-menu ul.sub {
  margin-top: 30px;
}
.modal-menu li {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 6px;
    overflow: hidden;
    display: block;
}
.modal-menu .sub {
    margin-top: 20px;
}
.modal-menu .sub li {
    font-size:16px;
      padding-bottom: 6px;
}

.modal-menu-sns {
    width: 36px;
    margin: 50px auto 0;
}
.active #modal-site-id a  {

  display: block;
}
.active.modal-menu li a {

  display: block;
}



.modal-menu.active {
  right: 0%;
}
  
.menu-wrap {
    position: absolute;
    z-index: 2;
    right: 2.5vw;
    top: 2vw;
}
.global {
    text-align: right;
    font-size: 1.1em;
    font-weight: 600;
    padding-bottom: 1em;
}
.global a {
    color: #fff;
    padding-top: 0.4em;
    display: inline-block;
    margin-top: 0.4em;
    border-top: #fff dotted 2px;
    padding-right: 0.4em;
    padding-left: 0.4em;
}.head-sns-item {
    width: 2.2vw;
}
.head-sns-item img{
    width: 100%;
}
.head-sns-wrap {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 1em;
}
h2.head__text {
    padding: 3em;
    text-align: center;
}
.page-title-en.en {
    font-size: 3em;
    color: #d4e2f1;
}
.page-title-jp {
    font-size: 0.9em;
    color: #00479c;
}
.sec-inner-min {
    width: 50%;
    margin: 0 auto;
}
p.sec-report_detail_date {
    font-size: 1.8em;
    text-align: center;
    padding-bottom: 2em;
    font-weight: 700;
}
.sec-inner-min h3 {
    font-size: 2.8em;
    padding: 0.3em 0 0.2em;
    line-height: 1.3em;
    text-align: center;
}
.single-archive-list {
    background: #d4e2f1;
    padding: 8vw 0 4vw;
}
.single-archive-list .sec-title-en {
    padding-bottom: 1em;
    font-size: 2em;
    color: #023e85;
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 700;
}
.sec-report_detail {
    padding-bottom: 8vw;
}
header.page-header {
    position: relative;
    background: radial-gradient(circle, rgba(38, 175, 224, 1) 0%, rgba(0, 80, 161, 1) 48%, rgba(0, 70, 156, 1) 100%);
}
h1.page-logo {
    width: 30vw;
    padding: 1.2vw 2vw;
}
.page-header .global a {
    color: #fff;
    padding-top: 0.4em;
    display: inline-block;
    margin-top: 0.4em;
    border-top: none;
    padding-right: 0.4em;
    padding-left: 0.4em;
}

.page-header .global ul {
    display: flex;
    justify-content: flex-end;
}
.page-header .head-sns-wrap {
    position: absolute;
    right: 2vw;
    padding: 0;
    top: 1.3vw;
}
.page-header .global {
    position: absolute;
    right: 1.8vw;
    top: 3vw;
    padding: 0;
    font-size: 1em;
}
.sec-report_detail_text p{
    font-weight: 400;
    line-height: 2em;
    padding-bottom: 1.5em;
  font-size: 1.1em;
}
.sec-report_detail_text img {
    width: 100%;
    margin-bottom: 1.5em;
}
.back a {
    font-size: 1.5em;
    border-bottom: #333 solid 2px;
    display: inline-block;
}
.back {
    text-align: center;
}

.policy-item li.ls {
    letter-spacing: -0.05em;
}
.policy-item.fs li {
    font-size: 0.9em;
}

  @media (max-width: 1100px) {
    .policy-item {
    width: calc(50% - 1.4em);
    padding-bottom: 2em;
}
    body {
    font-size: 16px;
}
.hero h1 {
    font-size: 12px;
    color: #fff;
    position: absolute;
    left: 24px;
    top: 20px;
    line-height: 1.4em;
    text-align: left;
    font-weight: 500;
}.hero-jimin {
    width: 120px;
    position: absolute;
    top: 50px;
    left: 24px;
}.head-sns-item {
    width: 30px;
}.global {
    text-align: right;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 1em;
}.home-lead-copy {
    font-size: 40px;
    padding-bottom: 0.5em;
    line-height: 1.3;
    font-weight: 900;
}.home-lead p {
    font-size: 22px;
    line-height: 2.6em;
    width: 88%;
    margin: 0 auto;
    padding-bottom: 80px;
}.home-lead .sec-inner {
    top: 10vw;
}.sec-title-en {
    font-size: 100px;
}.sec-title-jp {
    font-size: 24px;
}.sec-copy {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
}.policy-item-title {
    font-size: 24px;
}.policy-item li {
    font-size: 16px;
}
.policy-item.fs li {
    font-size: 16px;
}
    .takaichi-txt {
    padding: 2em 3em;
    line-height: 2em;
    font-size: 17px;
    width: 68%;
    color: #fff;
    font-weight: 600;
}.takaichhi-pic {
    width: 32%;
}
    .archive-item {
    width: calc((100% - 1.5em * 4) / 4);
    padding-bottom: 3em;
}
    .archive-item:nth-child(5) {
display: none;
}
    .office-item-name {
    line-height: 1em;
    border: #fff solid 1px;
    padding: 1em;
    font-size: 17px;
    align-items: center;
    display: flex;
}
    .home-profile .sec-title-en {
    font-size: 40px;
    padding-bottom: 0.5em;
    color: #fff;
}.office-item-address {
    font-size: 14px;
    padding-bottom: 0.6em;
}.office-item-tel {
    font-size: 18px;
    font-weight: 600;
}.foot-title {
    text-align: center;
    padding-top: 3em;
    font-size: 18px;
}small.f--copyright {
    font-size: 11px;
}
    p.txt-link {
    padding-top: 1em;
    text-align: center;
    font-size: 14px;
}
    
    
    
}
  @media (max-width: 800px) {
	      .pc{
      display: none!important;
    }
    .sp{
      display: block!important;
    }
    .copy2024-02 {
    font-size: 40px;
}.copy2024-03 {
    text-align: center;
    font-size: 20px;
    line-height: 1.5;
}.h-logo {
    margin: 0 auto;
}	.jimin {
    font-size: 15px;
    padding-top: 24px;
    padding-bottom: 4px;
    text-align: center;
}.jimin-fukushima {
    width: 12em;
    background: #0e2b90;
    padding: 7px 10px 5px;
    color: #fff;
    font-size: 15px;
    line-height: 1em;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    margin: 0 auto 10px;
}.h-wrap.sec-inner {
    height: auto; 
	text-align: center;
}    html {
        margin-top: 0px !important;
    }
	      .h-wrap {
        position: relative;
        display: block;
    }    .page-top .main-area {
        padding-top: 20px;
    }.h-logo a {
    display: block;
		padding-left:0;
    padding-bottom: 20px;
}
 .global {
    text-align: right;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 1em;
    display: none;
}
  .menu-wrap {
    position: absolute;
    z-index: 2;
    right: 100px;
    top: 20px;
}  
.hero-copy {
    width: 25%;
    position: absolute;
    right: 4%;
    top: 14%;
}.home-lead .sec-inner {
    position: relative;
    top: 0;
    z-index: 2;
    right: 0;
    color: #00489d;
    width: 100%;
    text-align: left;
}
    .home-lead-copy {
    width: 86%;
    margin: 0 auto;
    padding-bottom: 80px;

}.home-lead p {
        font-size: 19px;
        line-height: 2.5em;
        width: 88%;
        margin: 0 auto;
}
    
    .policy-items.flex {
    display: block;
    padding-top: 30px;
}.policy-item {
    width: 100%;
    padding-bottom: 2em;
}.policy-item-detail {
    padding: 2em 0.5em 0;
}.takaichi {
    display: block;
    align-items: center;
    margin: 0 auto;
    background: #e32e2e;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 40px;
}
    .pic-item img {
    border-radius: 10px;
}
    .takaichhi-pic {
    width: 100%;
}
    .takaichi-txt {
    padding: 24px;
    line-height: 2em;
    font-size: 16px;
    width: 100%;
    color: #fff;
    font-weight: 600;
}section.home-report {
    background: #d4e2f1;
    padding: 40px 0;
}.sec-inner {
    margin: 0 auto;
    width: 87%;
}.archive-item {
    width: calc((100% - 1em * 2) / 2);
    padding-bottom: 1em;
}.sns-links {
    padding-top: 40px;
}.home-profile p {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.7em;
    padding-bottom: 2em;
}.home-profile li {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.7em;
    text-indent: -1em;
    padding-left: 1em;
}.home-profile .sec-title-en {
    font-size: 24px;
    padding-bottom: 0.5em;
    color: #fff;
}.prof-title {
    font-size: 18px;
    padding-bottom: 0.5em;
}.office-inner.flex {
    width: 88%;
    display: block;
}.office-item.flex {
    display: flex;
    justify-content: flex-start;
    gap: 1.5em;
    align-items: center;
    padding-bottom: 20px;
}
    div#sp-btn {
    display: block;
    position: fixed;
    z-index: 10;
    right: 14px;
    top: 14px;
}
    
.hero-copy {
    width: 32%;
    position: absolute;
    right: 5%;
    top: 20%;
} .hero h1 {
  
}
    .hero-jimin {
    width: 100px;
    position: absolute;
    top: 15px;
    left: 25px;
}
.hero-name {
    position: absolute;
    width: 80%;
    top: auto;
    bottom: 5%;
    left: 0;
    right: 0;
    margin: 0 auto;
}   
.modal-menu .sns-wrap {
    display: flex;
    justify-content: center;
    gap: 5px;
}
 
    .modal-prof {
    width: 85%;
    margin: 0 auto;
    padding: 60px 0;
}
.modal-menu li a {
    display: block;
    padding: 13px 0;
    border-bottom: #fff solid 1px;
} .modal-menu .sns-wrap-title {
    text-align: center;
    padding-bottom: 10px;
    padding-top: 30px;
}
    .modal-menu .sns-item {
    width: 42px;
}
    .policy-item li.last {
    padding-bottom: 0;
}
    
}

  @media (max-width:650px) {

.policy-item-title {
    font-size: 20px;
}
.sec-title-en {
    font-size: 60px;
    letter-spacing: 0;
}.archive-item-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5em;
    padding-top: 1em;
}
  .archive-item-data {
    font-size: 10px;
    font-weight: 600;
    padding-top: 0.4em;
    color: #8e8e8e;
}  
    .sns-links-title {
    text-align: center;
    padding-bottom: 2em;
    font-size: 15px;
}
    .sns-items {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}
    .sns-item {
    width: 32px;
}.sec-title-jp {
    font-size: 20px;
    padding-left: 30px;
}
  .sec-title-jp::before {
    width: 24px;
}  .hero-jimin {
    width: 85px;
    position: absolute;
    top: 53px;
    left: 25px;
}.head-sns-wrap {
    display: none;
}.home-lead .sec-inner {

}.home-lead-copy {

}.sec-copy {
    text-align: center;
    font-size: 30px;
    font-weight: 900;
}.archive-parents {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.8em;
}.archive-item {
    width: calc((100% - 0.8em * 2) / 2);
    padding-bottom: 1em;
}.profile-pic {
    width: 60%;
}.profile-detail {
    width: 55%;
    position: absolute;
    left: 40%;
}.home-profile p {
    font-weight: 400;
    font-size: 11px;
    line-height: 1.7em;
    padding-bottom: 2em;
}.home-profile li {
    font-weight: 400;
    font-size: 11px;
    line-height: 1.7em;
    text-indent: -1em;
    padding-left: 1em;
}.office-item.flex {
    display: block;
    justify-content: flex-start;
    gap: 1.5em;
    align-items: center;
    padding-bottom: 20px;
}.office-item-name {
    line-height: 1em;
    border: #fff solid 1px;
    padding: 1em;
    font-size: 17px;
    align-items: center;
    display: block;
    text-align: center;
}.office-item-address {
    font-size: 14px;
    padding-bottom: 0.6em;
    padding-top: 1em;
    text-align: center;
}.office-item-tel {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}.foot-title {
    text-align: center;
    padding-top: 3em;
    font-size: 15px;
    line-height: 1.5;
}.home-policy {
    padding: 0 0 60px;
}.sec-title-jp {
    margin-bottom: 60px;
}.policy-item-subtitle {
    font-weight: 600;
    width: 100%;
    font-size: 18px;
    padding-bottom: 1em;
}.takaichi {

    margin-top: 0px;
}.takaichi-txt {
    padding: 24px;
    line-height: 2em;
    font-size: 14px;
    width: 100%;
    color: #fff;
    font-weight: 600;
}.takaichi-name {
    text-align: right;
    font-size: 18px;
    font-weight: 600;
}.takaichi-name span {
    font-size: 12px;
    padding-right: 0.4em;
}footer#footer {
    background: #023e85;
    color: #fff;
    font-weight: 400;
    padding: 40px 0;
}h2.head__text {
    padding: 40px 0;
    text-align: center;
}
    .sec-inner-min h3 {
    font-size: 30px;
    padding: 0.3em 0 0.2em;
    line-height: 1.3em;
    text-align: center;
}
    .page-title-en.en {
    font-size: 40px;
    color: #d4e2f1;
}
    .page-title-jp {
    font-size: 18px;
    color: #00479c;
}p.sec-report_detail_date {
    font-size: 18px;
    text-align: center;
    padding-bottom: 40px;
    font-weight: 700;
}.back a {
    font-size: 18px;
    border-bottom: #333 solid 2px;
    display: inline-block;
}.single-archive-list .sec-title-en {
    padding-bottom: 30px;
    font-size: 24px;
    color: #023e85;
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 700;
}h1.page-logo {
    width: 220px;
    padding: 20px 0 20px 20px;
    box-sizing: border-box;
}.office-inner.flex {
    width: 80%;
    display: block;
}.sec-inner-min {
    width: 80%;
    margin: 0 auto;
}.sec-report_detail_text p {
    font-weight: 400;
    line-height: 2em;
    padding-bottom: 1.5em;
    font-size: 14px;
}.single-archive-list {
    background: #d4e2f1;
    padding: 40px 0 20px;
}.archive-parents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.8em;
}.archive-item {
    width: calc((100% - 0.5em * 2) / 2);
    padding-bottom: 1em;
}.archive-parents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5em;
}.home-lead-copy {

}.home-lead p {
    font-size: 19px;
    line-height: 2.5em;
    width: 88%;
    margin: 0 auto;
}
    .home-lead-copy {
    width: 88%;
    margin: 0 auto;
    padding-bottom: 60px;
}
    
    
}
@media (max-width: 450px) {
  .home-lead .sec-inner {

}.sec-copy {
    text-align: center;
    font-size: 24px;
    font-weight: 900;
}.policy-item li {
    font-size: 14px;
}
  .policy-item-detail {
    padding: 20px 10px 0;
}.policy-item.fs li {
    font-size: 13px;
}.takaichi-name {
    text-align: right;
    font-size: 16px;
    font-weight: 600;
    padding-top: 10px;
}.office-item-name {
    line-height: 1em;
    border: #fff solid 1px;
    padding: 1em;
    font-size: 15px;
    align-items: center;
    display: block;
    text-align: center;
}.office-item-address {
    font-size: 13px;
    padding-bottom: 0.6em;
    padding-top: 1em;
    text-align: center;
}.office-item-tel {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}.foot-title {
    text-align: center;
    padding-top: 3em;
    font-size: 14px;
    line-height: 1.5;
}p.txt-link {
    padding-top: 1em;
    text-align: center;
    font-size: 12px;
}.sec-inner-min {
    width: 85%;
    margin: 0 auto;
    overflow: hidden;
}.hero-name {
    position: absolute;
    width: 85%;
    top: auto;
    bottom: 6%;
    left: 0;
    right: 0;
    margin: 0 auto;
}.home-lead-copy {
    width: 88%;
    margin: 0 auto;
    padding-bottom: 40px;
  padding-top: 10px;
}.home-lead p {
    font-size: 17px;
    line-height: 2.3em;
    width: 88%;
    margin: 0 auto;
    padding-bottom: 100px;
    text-align: justify;
}
}
@media (max-width: 380px) {
.home-lead .sec-inner {

}
  .policy-item li {
    font-size: 13px;
}.policy-item-title {
    font-size: 18px;
}.sec-inner {
    margin: 0 auto;
    width: 90%;
}.takaichi-txt {
    padding: 24px;
    line-height: 1.8;
    font-size: 14px;
    width: 100%;
    color: #fff;
    font-weight: 500;
}.sec-title-en {
    font-size: 50px;
    letter-spacing: 0;
}.sec-inner-min h3 {
    font-size: 24px;
    padding: 0.3em 0 0.2em;
    line-height: 1.3em;
    text-align: center;
}.archive-item-title {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4em;
    padding-top: 1em;
}.office-item-tel {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}.office-item-address {
    font-size: 12px;
    padding-bottom: 0.6em;
    padding-top: 1em;
    text-align: center;
}.modal-prof {
    width: 85%;
    margin: 0 auto;
    padding: 30px 0;
}.policy-item-detail {
    padding: 20px 0px 0 6px;
    letter-spacing: -0.05em;
}.home-lead p {
    font-size: 17px;
    line-height: 2.3em;
    width: 88%;
    margin: 0 auto;
    padding-bottom: 100px;
    text-align: justify;
}
}
