@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 1570px) {
  html {
    font-size: 1.0191082803vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-btn-center a {
  margin-inline: auto;
}

.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1570px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    max-width: 31.25rem;
  }
}

.l-mt60 {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .l-mt60 {
    margin-top: 3rem;
  }
}

.l-text-center {
  text-align: center;
}


.button02 {
  display: inline-block;
  text-align: center;
  padding: 1em 2em;
  text-transform: uppercase;
  cursor: pointer;
  color: #333;
  font-size: max(1.125rem, 12px);
  position: relative;
  overflow: hidden;
  outline: 1px solid #333;
  width: 15rem;
  font-weight: 500;
  text-decoration: none;
  margin-left: 0;
  transition: color 0.5s, outline 1s, box-shadow 1s, transform 1s;
}
/* 疑似要素のz-indexを1に */
.button02::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #00235f;
  transform: skewX(45deg);
  z-index: 1;
  transition: width 0.5s;
}
/* テキストはz-indexを2に（疑似要素より前！） */
.button02 span {
  position: relative;
  z-index: 2;
  transition: color 0.5s;
  color: #333;
}
.button02:hover {
  outline: 2px solid #70bdca;
  box-shadow: 4px 5px 17px -4px #268391;
  transform: scale(1.1);
}
.button02:hover::before {
  width: 250%;
}
/* ホバー時テキストを白に */
.button02:hover span {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .button02 {
    width: 10.125rem;
    padding: 0.5rem;
    font-size: max(0.875rem, 12px);
  }
}







.c-btn {
  display: block;
  padding: 1rem;
  font-size: max(1rem, 12px);
  width: 15rem;
  max-width: 100%;
  border: 1px solid #333;
  text-align: center;
  font-weight: 500;
  font-size: max(1.125rem, 12px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .c-btn:hover {
    opacity: 0.8;
    background-color: #00235f;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 10.125rem;
    padding: 0.5rem;
    font-size: max(0.875rem, 12px);
  }
}

.c-fadeInMv {
  opacity: 0;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
.c-hamburger {
  display: block;
  width: 2.125rem;
  height: 1.125rem;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    width: 1.4375rem;
  }
}

.c-hamburger span {
  display: inline-block;
  -webkit-transition: ease 0.5s all;
  transition: ease 0.5s all;
  position: absolute;
  height: 0.4375rem;
  background-color: #fff;
  width: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: calc(50% - 1px);
}
@media screen and (max-width: 767px) {
  .c-hamburger span {
    height: 5px;
  }
}

.c-hamburger span:nth-child(1) {
  -webkit-transform: translateY(-0.9375rem);
          transform: translateY(-0.9375rem);
}
@media screen and (max-width: 767px) {
  .c-hamburger span:nth-child(1) {
    -webkit-transform: translateY(-11px);
            transform: translateY(-11px);
  }
}

.c-hamburger span:nth-child(3) {
  -webkit-transform: translateY(0.9375rem);
          transform: translateY(0.9375rem);
}
@media screen and (max-width: 767px) {
  .c-hamburger span:nth-child(3) {
    -webkit-transform: translateY(11px);
            transform: translateY(11px);
  }
}

/*OPEN時の動き*/
.js-open.p-header__hamburger {
  margin-left: auto;
}

.js-open .c-hamburger span {
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.js-open .c-hamburger span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.js-open .c-hamburger span:nth-child(2) {
  opacity: 0;
}

.js-open .c-hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 100%;
  left: 0;
  right: 0;
}

.c-hoverRun {
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
  background-image: linear-gradient(90deg, #fff, #fff);
  background-repeat: no-repeat;
  display: inline;
  background-position: left bottom;
  background-size: 0 1px;
  -webkit-transition: background-size 0.5s;
  transition: background-size 0.5s;
}

.c-hoverRun:hover {
  background-size: 100% 1px;
}

.c-hoverRun--black {
  background-image: -webkit-gradient(linear, left top, right top, from(#333), to(#333));
  background-image: linear-gradient(90deg, #333, #333);
}

.c-section-title {
  width: 25.875rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 0.75rem;
  }
}

.c-section-title--no-border {
  border: none;
}

.c-section-title__ja {
  font-size: max(1rem, 12px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-section-title__ja {
    font-size: max(0.875rem, 12px);
  }
}

.c-section-title__en {
  margin-top: 0.625rem;
  height: 2.75rem;
}
@media screen and (max-width: 767px) {
  .c-section-title__en {
    height: auto;
    width: 10.75rem;
  }
}
.c-section-title__en img {
  width: auto;
  /*height: 100%;*/
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 767px) {
  .c-section-title__en--news {
    width: 6.1875rem;
  }
}

@media screen and (max-width: 767px) {
  .c-section-title__en--access {
    width: 8.5rem;
  }
}

.c-slidein {
  opacity: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.c-slidein.c-slidein-left {
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}
.c-slidein.c-slidein-right {
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}
.c-slidein.c-slidein-up {
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
}
.c-slidein.c-slidein-bottom {
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
}
.c-slidein.scrollin {
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
  opacity: 1 !important;
}

.p-cta {
  padding-block: 10.25rem;
  background: url(../images/cta-back.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding-block: 2.875rem;
    background: url(../images/sp_cta-back.webp) no-repeat center center/cover;
  }
}

.p-cta__list {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
  width: 51.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-cta__list {
    gap: 0.75rem;
    grid-template-columns: 1fr;
    width: 100%;
  }
}

.p-cta__link {
  height: 100%;
  min-height: 7.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 4.125rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 1.25rem 2.375rem;
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-cta__link {
    min-height: 6.25rem;
    gap: 1.875rem;
    grid-template-columns: 3.25rem 1fr;
    border-radius: 0.375rem;
  }
}
@media (any-hover: hover) {
  .p-cta__link:hover {
    opacity: 0.9;
  }
  .p-cta__link:hover::before {
    -webkit-transform: translateY(-50%) translateX(0.3em);
            transform: translateY(-50%) translateX(0.3em);
  }
}
.p-cta__link::before {
  position: absolute;
  content: "";
  background: url(../images/icon-arrow-maru.svg) no-repeat center center/contain;
  right: 2.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  .p-cta__link::before {
    right: 1.5625rem;
    width: 1.5625rem;
    height: 1.5625rem;
  }
}
.p-cta__link img {
  width: 100%;
  height: auto;
}





.daihyo img{
display: block;
margin-left: auto;
margin-right: 0;
max-width: 250px;
margin-top: 2em;
}

.sp-br{
display: none;
}

.sp1em {
  height: 1em;
}
.sp2em {
  height: 2em;
}
.sp3em {
  height: 3em;
}
.pc_sp1em {
  height: 1em;
}
.pc_sp2em {
  height: 2em;
}
.pc_sp3em {
  height: 3em;
}
.sp_sp1em {
  display: none;
}
.sp_sp2em {
  display: none;
}
.sp_sp3em {
  display: none;
}

.eng_ttl{
font-size:61px;
font-family: Arial, sans-serif;
font-weight: 900;
letter-spacing: -4px;
color: #00235f;
padding-top: 0.2em;
}

.toha{
font-size: 35px;
font-family: 'Noto Sans JP', sans-serif;
font-weight: 900;
text-align: center;
margin-top: 2em;
margin-bottom: 2.5em;
}

.pc-toggle {
display: block;
}
.sp-toggle {
display: none;
}

.privacy-h3 {
font-size: 40px;
font-weight: bold;
margin-bottom: 1.1em;
}

.contxt{
font-size: max(1.0625rem, 12px);
line-height: 180%;
}

.contxt_red{
color: red;
}

.form-wrap {

}

.form-box {
width: 100%;
max-width: 980px;
margin: 1em auto 0em;
text-align: center;
background-color: #e9ecf2;
border-radius: 12px;
padding: 0.3em 0em 3em 0em;
margin-top: 3.5em;
}

.form-table {
width: 100%;
max-width: 898px;
margin: 0px auto;
border-collapse: separate;
border-spacing: 10px;
padding: 0em 0em 0em 0em;
margin-top: 2em !important;
}

.form-table th {
display: block;
padding: 0.2em 0.5em;
line-height: 180%;
text-align: left;
vertical-align: top;
color: #000;
width: 100%;
font-size: max(1.0625rem, 12px);
font-family: 'Noto Sans JP', sans-serif;
font-weight: 600;
}

.form-table td {
display: block;
padding: 0em 0.5em 0.5em 0em;
line-height: 180%;
text-align: left;
vertical-align: top;
color: #222;
width: 100%;
font-size: max(1.0625rem, 12px);
font-family: 'Noto Sans JP', sans-serif;
font-weight: 400;
}

::placeholder {
color: #c3c3c3;
}

.doui {
display: block;
padding: 0em 2.8em;
line-height: 180%;
text-align: center;
vertical-align: top;
color: #5f3700;;
width: 100%;
font-size: 18px;
font-family: 'Noto Sans JP', sans-serif;
font-weight: 600;
}

.cyuui{
color: red;
font-size: 16px;
}

.douinoue{
color: #000;
font-size: clamp(15.5px, 1.0vw, 21px);
font-family: 'Noto Sans JP', sans-serif;
font-weight: 600;
line-height: 170%;
word-break: break-all;
text-align: center;
margin-bottom: 3em;
}

.douinoue a{
color: #4169e1;
text-decoration: underline;
}

.btn-contact03{
width: 370px;
margin: 0 auto;
margin-top: 1em;
display: flex;
justify-content: center;
padding: 0.7em;
border: 2px solid;
border-color: #00235f;
/*border-radius: 150px;*/
background-color: #00235f !important;
color: #FFFFFF;
font-weight: 600;
font-size: 20px;
border-radius: 100px;
}

.btn-contact03:hover{
background-color: #FFFFFF !important;
color: #00235f;
border: 2px solid;
border-color: #00235f;
/*border-radius: 150px;*/
}

input, select {
  border: solid 1px #CCC;
  background-color: #FFFFFF !important;
  color: #333333;
  padding: 0.5em;
  margin: 0.5em;
  
  /*cursor: pointer;*/
  vertical-align: middle;
}
textarea {
  border: solid 1px #CCC;
  background-color: #FFFFFF !important;
  color: #333333;
  padding: 0.5em;
  margin: 0.5em;
}
input#submit_button {
  width: 18%;
  cursor: pointer;
}
input#reset_button {
  width: 18%;
  cursor: pointer;
}

::placeholder {
  color:#CCC;
  font-size: 1em;
}

.hissu {
  text-align: center;
  font-size: 12px;
  line-height: 140%;
  color: #FFF;
  background-color: #ff5555;
  display: inline-block;
  padding: 3px 5px;
  margin: 0px 0 0 4px;
border-radius: 4px;
}

.ppind{
text-indent: -1em;
padding-left: 1em;
margin-top: 0.5em;
}

.other-top {
position: relative;
background-size: cover;
min-height: 500px;
display: flex;
justify-content: center;
align-items: center;
}

.main-section {
max-width: 1200px;
margin: 0 auto;
padding: 50px 0 60px;
font-size: max(1.0625rem, 12px);
line-height: 180%;
padding-right: 1.5625rem;
padding-left: 1.5625rem;
}

.main-section p {
word-wrap: break-word;
}

.main-section .c-section-title {
width: fit-content;
padding-right: 0px;
/*margin-top: 100px;*/
}

.main-section_r {
max-width: 1600px;
margin: 0 auto;
padding: 50px 0 60px;
font-size: max(1.0625rem, 12px);
line-height: 180%;
padding-right: 1.5625rem;
padding-left: 1.5625rem;
}

.main-section_r p {
word-wrap: break-word;
}

.main-section_r .c-section-title_r {
width: fit-content;
padding-right: 0px;
/*margin-top: 100px;*/
}

.btnnin{
background-color: #39b24a;
border-radius: 16px;
padding: 3px 14px;
color: #FFFFFF;
font-weight: normal;
border: 2px solid #39b24a !important;
}

.r_copy{
width: 90%;
max-width: 953px;
margin: 0 auto;
margin-top: 13rem;
}

.r_topimg{
margin-top: 3em;
}

.r_ttl_1{
text-align: center;
font-size: 2rem;
font-family: "メイリオ", Meiryo, sans-serif;
position: relative;          /* 擬似要素の配置基準にする */
margin-bottom: 0.7rem;       /* 線と下の見出しに間を空ける */
margin-top: 3em;
}

/* 線を引く */
.r_ttl_1::after{
  content: "";
  display: block;
  width: 100%;                 /* 幅いっぱい */
  max-width: 640px;            /* 最大 640px */
  height: 2px;             /* = 1pt（気になるなら 1px でもOK） */
  background: #ffe378;
  margin: 0.75rem auto 0;      /* 上下余白, 中央配置 */
}

.r_ttl_2{
text-align: center;
font-size: 1.125rem;
font-family: "メイリオ", Meiryo, sans-serif;
font-weight: 700;
color: #ffe378;
}

.r_ttl_3{
text-align: center;
font-size: 1.875rem;
font-family: "メイリオ", Meiryo, sans-serif;
margin-top: 3.3em;
margin-bottom: 0.8em;
}

.r_ttl_4{
text-align: center;
font-size: 1.25rem;
font-family: "メイリオ", Meiryo, sans-serif;
}

.r_back_yellow{
background-color: #ffe378;
padding: 3em;
margin-top: 5em;
}

/* -----------------------
   白い箱
----------------------- */
.r_back_white{
  position:relative;          /* 擬似要素・見出しの基準 */
  background:#fff;
  border-radius:30px;
  max-width:1600px;
  margin:0 auto;
  /*padding-top:80px;*/         /* 日本語見出しが食い込んでも
                                 下側に空きを残す */
}

/* ドーム -------------------- */
.r_back_white::before{
  content:'';
  position:absolute;
  top:-80px;                  /* ボックス上辺より上へ */
  left:50%;
  width:465px;
  height:80px;                /* half-ellipse の高さ */
  transform:translateX(-50%);
  /*    ↓ 背景を inline-SVG にする ↓ */
  background:
    url("data:image/svg+xml;utf8,\
      <svg xmlns='http://www.w3.org/2000/svg' width='465' height='80' viewBox='0 0 465 80'>\
        <path d='M0,80 Q232.5,0 465,80 Z' fill='%23ffffff'/>\
      </svg>")
    no-repeat center / cover;
  /* ↑ viewBox 幅 465px × 高 80px の放物線パス
       M0,80 …… 左下開始
       Q232.5,0 …… 頂点を中央上(放物線の頂点)
       465,80 …… 右下で閉じる         */
}


.r_ttl_5{
text-align: center;
font-size: 2rem;
font-family: "メイリオ", Meiryo, sans-serif;
  position:relative;
  top:-40px;        /* ドーム中心へ食い込ませる量 */
  margin:0;         /* 余計なマージンを消す       */
  z-index:1;        /* ドームより前面へ           */
}

.sogyo{
font-size: 1rem;
}

.pc-br {
display: block;
}
.sp-br {
display: none;
}















/*-----iPadPro用------*/
/*　画面サイズが980pxから1024pxまではここを読み込む　*/	
@media screen and (min-width:769px) and ( max-width:1024px) {

}


/*-----iPad用------*/
/*　画面サイズが768pxから979pxまではここを読み込む　*/	
@media screen and (min-width:768px) and ( max-width:979px) {

.other-top {
padding: 0 10%;
}
	
.main-section {
margin: 0 auto;
width:90%;
}

.main-section_r {
margin: 0 auto;
width:90%;
}

.other-top {
min-height: 300px;
}

.other-top  img{
padding-top: 1.8em;
max-width: 500px;
}

}


/*******SMART用*********/
@media print, screen and (max-width: 767px) {

  .sp1em {
    height: 1em;
  }
  .sp2em {
    height: 2em;
  }
  .sp3em {
    height: 3em;
  }
  .pc_sp1em {
    display: none;
  }
  .pc_sp2em {
    display: none;
  }
  .pc_sp3em {
    display: none;
  }
  .sp_sp1em {
    height: 1em;
  }
  .sp_sp2em {
    height: 2em;
  }
  .sp_sp3em {
    height: 3em;
  }

.pc-br {
display: none;
}
.sp-br {
display: block;  
}

.daihyo img{
display: block;
margin-left: auto;
margin-right: 0;
max-width: 250px;
margin-top: 0.5em;
margin-bottom: 1em;
}

.sp-br{
display: block;
}

.sogyo{
font-size: 0.9rem;
}

.btnnin{
background-color: #39b24a;
border-radius: 16px;
padding: 3px 14px;
color: #FFFFFF;
font-weight: normal;
border: 2px solid #39b24a !important;
margin-bottom:0.5em;
margin-top:1em;
font-size: 1em;
}

.eng_ttl{
font-size:33px;
font-family: 'Noto Sans JP', sans-serif;
font-weight: 900;
letter-spacing: -2px;
color: #00235f;
padding-top: 0.2em;
}

.toha{
font-size: 26px;
font-family: 'Noto Sans JP', sans-serif;
font-weight: 900;
text-align: center;
margin-top: 2em;
margin-bottom: 1.5em;
}

.pc-toggle {
display: none;
}
.sp-toggle {
display: block;
}

.privacy-h3 {
font-size: 26px;
font-weight: bold;
margin-bottom: 0.5em;
text-align: center;
}

.contxt{
font-size: max(1.0625rem, 12px);
line-height: 180%;
}

.contxt_red{
color: red;
}

.form-wrap {

}

.form-box {
width: 100%;
max-width: 980px;
margin: 1em auto 0em;
text-align: center;
background-color: #e9ecf2;
border-radius: 12px;
padding: 0.0em 0em 2.5em 0em;
margin-top: 2.5em;
}

.form-table {
width: 100%;
max-width: 898px;
margin: 0px auto;
border-collapse: separate;
border-spacing: 10px;
padding: 1em 0em 0em 0em;
margin-top: 2em !important;
}

.form-table th {
display: block;
padding: 0.2em 0.5em;
line-height: 180%;
text-align: left;
vertical-align: top;
color: #000;
width: 100%;
font-size: max(1.0625rem, 12px);
font-family: 'Noto Sans JP', sans-serif;
font-weight: 600;
}

.form-table td {
display: block;
padding: 0em 0.5em 0.5em 0em;
line-height: 180%;
text-align: left;
vertical-align: top;
color: #222;
width: 97%;
font-size: max(1.0625rem, 12px);
font-family: 'Noto Sans JP', sans-serif;
font-weight: 400;
}

::placeholder {
color: #c3c3c3;
}

.doui {
display: block;
padding: 0em 2.8em;
line-height: 180%;
text-align: center;
vertical-align: top;
color: #5f3700;;
width: 100%;
font-size: 18px;
font-family: 'Noto Sans JP', sans-serif;
font-weight: 600;
}

.cyuui{
color: red;
font-size: 16px;
}

.douinoue{
color: #000;
font-size: max(1.0625rem, 12px);
font-family: 'Noto Sans JP', sans-serif;
font-weight: 600;
line-height: 170%;
word-break: break-all;
text-align: center;
margin: 0 auto;
margin-bottom: 2em;
width: 90%;
}

.douinoue a{
color: #4169e1;
text-decoration: underline;
}

.btn-contact03{
width: 80%;
margin: 0 auto;
margin-top: 1em;
display: flex;
justify-content: center;
padding: 0.7em;
border: 2px solid;
border-color: #00235f;
/*border-radius: 150px;*/
background-color: #00235f !important;
color: #FFFFFF;
font-weight: 600;
font-size: max(1.0625rem, 12px);
border-radius: 100px;
}

.btn-contact03:hover{
background-color: #FFFFFF !important;
color: #00235f;
border: 2px solid;
border-color: #00235f;
/*border-radius: 150px;*/
}

input, select {
  border: solid 1px #CCC;
  background-color: #FFFFFF !important;
  color: #333333;
  padding: 0.5em;
  margin: 0.5em;
  
  /*cursor: pointer;*/
  vertical-align: middle;
}
textarea {
  border: solid 1px #CCC;
  background-color: #FFFFFF !important;
  color: #333333;
  padding: 0.5em;
  margin: 0.5em;
}
input#submit_button {
  width: 18%;
  cursor: pointer;
}
input#reset_button {
  width: 18%;
  cursor: pointer;
}

::placeholder {
  color:#CCC;
  font-size: 1em;
}

.hissu {
  text-align: center;
  font-size: 11px;
  line-height: 140%;
  color: #FFF;
  background-color: #ff5555;
  display: inline-block;
  padding: 3px 5px;
  margin: 0px 0 0 4px;
border-radius: 4px;
}

	
.other-top {
	position: relative;
	background-size: cover;
	min-height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.other-top  img{
padding-top: 1.8em;
}

}









.p-footer-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-footer-address {
    display: block;
  }
}

.p-footer-address__item {
  line-height: 1.7;
  font-size: max(1rem, 12px);
}
@media screen and (max-width: 767px) {
  .p-footer-address__item:nth-child(2) {
    margin-top: 0.75rem;
  }
}

.p-footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
  font-size: max(1rem, 12px);
}
@media screen and (max-width: 767px) {
  .p-footer-menu {
    display: grid;
    text-align: center;
  }
}

.p-footer {
  padding-block: 3.75rem 1.75rem;
  background-color: #ebf2f5;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: 3.125rem 0.625rem;
  }
}

.p-footer__logo-shinko {
  width: 23rem;
  margin-inline: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-footer__logo-shinko {
    width: 14.25rem;
  }
}
.p-footer__logo-shinko a {
  display: block;
  cursor: pointer;
}
@media (any-hover: hover) {
  .p-footer__logo-shinko a:hover {
    opacity: 0.8;
  }
}
.p-footer__logo-shinko img {
  width: 100%;
  height: auto;
}

.p-footer__menu {
  margin-top: 3.125rem;
}

.p-footer__address {
  margin-top: 3.4375rem;
}

.p-footer__logo-sasaki {
  margin-top: 4.875rem;
  margin-inline: auto;
  width: 26.25rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-footer__logo-sasaki {
    margin-top: 2.5rem;
    width: 20.375rem;
    height: auto;
  }
}
.p-footer__logo-sasaki a {
  display: block;
}
@media (any-hover: hover) {
  .p-footer__logo-sasaki a:hover {
    opacity: 0.8;
  }
}
.p-footer__logo-sasaki img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__copy {
  margin-top: 3.125rem;
  font-size: max(0.875rem, 12px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    margin-top: 3.625rem;
    font-size: 11px;
  }
}

.p-footer__page-top {
  position: fixed;
  right: 0.625rem;
  bottom: 0.625rem;
  width: 3.125rem;
  aspect-ratio: 1/1;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-footer__page-top {
    bottom: 1.25rem;
    width: 2.75rem;
  }
}
@media (any-hover: hover) {
  .p-footer__page-top:hover {
    opacity: 0.8;
  }
}

body.noscroll {
  overflow: hidden;
}

.p-header {
  width: 100%;
  max-height: 100%;
  height: 8.875rem;
  padding: 0;
  position: fixed;
  z-index: 100;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 4.5rem;
  }
}

.p-header.js-up {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
.p-header.js-down {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
  top: 0px;
  background-color: #fff;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-header__inner {
  background-color: transparent;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  height: inherit;
  z-index: 10;
}
.p-header__inner_r {
  display:flex;
  align-items:center;     /* 上下中央揃え */
  gap: 24px;              /* お好みで */
  background-color: transparent;
  width: 100%;
  padding-left: 1rem;
  padding-right: 0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  height: inherit;
  z-index: 10;
  background: transparent;
  transition: background-color 0.3s ease;  /* なめらかに変化 */
}

/* スクロール後の状態 */
.p-header__inner_r.is-scrolled{
  background: rgba(255,255,255,0.8);        /* 半透明の白 */
  backdrop-filter: blur(6px);               /* お好み：ぼかし */
}



@media screen and (max-width: 767px) {
  .p-header__inner {
    background-color: transparent;
    padding-left: 1rem;
    padding-right: 0.625rem;
  }
  .p-header__inner_r {
    background-color: transparent;
    padding-left: 1rem;
    padding-right: 0.625rem;
  }
}

.p-header__logo {
  max-width: 17.5625rem;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
padding-bottom: 2em;
}
.p-header__logo_r {
  max-width: 189px;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* ロゴは固定幅でも OK。なければ何もしない */
.p-header__logo_r { flex-shrink:0; }

/* お問い合わせボタン（右端）も shrink しないようにする */
.p-header__contact{ flex-shrink:0; /* 必要ならパディング・色など追加 */ }

/* ─ グローバルメニュー ────────────────── */
.p-header__gnav{
  flex:1;                 /* 余ったスペースをすべて占有＝中央寄せの元 */
}
.p-header__gnavList{
  display:flex;
  justify-content:center; /* 中央寄せ */
  gap: 60px;              /* メニュー同士の間隔 */
  list-style:none;
  margin:0;
  padding:0;
}
.p-header__gnavItem a{
  text-decoration:none;
  color:#333;
  font-weight:600;
font-size: 1.25rem;
}

/* レスポンシブで折り返したい場合はメディアクエリで */
@media (max-width: 768px){
  .p-header__gnav{
    display:none;         /* 例：モバイルでは消す */
  }
}





@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 12.0625rem;
padding-bottom: 1.2em;
  }
  .p-header__logo_r {
    max-width: 12.0625rem;
padding-bottom: 1.2em;
  }
}
.p-header__logo img {
  width: 100%;
  height: auto;
}
.p-header__logo a:hover {
  opacity: 0.7;
}
.p-header__logo_r img {
  width: 100%;
  height: auto;
}
.p-header__logo_r a:hover {
  opacity: 0.7;
}






.p-header__logo {
  position: relative;
}
.p-header__logo_r {
  position: relative;
}
.logo {
  position: absolute;
  top: 0; left: 0;
  transition: opacity 0.3s;
}
.logo--white {
  opacity: 1;
  z-index: 2;
}
.logo--color {
  opacity: 0;
  z-index: 1;
}
.p-header__logo.is-scrolled .logo--white {
  opacity: 0;
}
.p-header__logo.is-scrolled .logo--color {
  opacity: 1;
}

.p-header__logo_r.is-scrolled .logo--white {
  opacity: 0;
}
.p-header__logo_r.is-scrolled .logo--color {
  opacity: 1;
}








.p-header__hamburger {
  display: block;
  position: relative;
  margin-left: auto;
  z-index: 2;
  width: 4.875rem;
  height: 4.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: #00235f;
}
.p-header__contact {
  display: block;
  position: relative;
  margin-left: auto;
  z-index: 2;
  width: 11.25rem;
  height: 11.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
color: #FFFFFF;
font-size: 1.3rem;
font-weight: bold;
background-color: #333333;
top:15%;
right: 0%;
}

@media screen and (max-width: 767px) {
  .p-header__hamburger {
    width: 3.3125rem;
    height: 3.3125rem;
  }

  .p-header__contact {
    width: 3.3125rem;
    height: 3.3125rem;
  }

}
.p-header__hamburger.js-open {
  background-color: rgba(255, 255, 255, .5);
}

.p-spNav {
  display: block;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 5;
  width: 100%;
  height: 101vh;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  color: #333;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: #00235f;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 1.25rem 1.25rem 6.875rem;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  /*Google Chrome、Safariへの対応*/
}
.p-spNav::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-spNav {
    padding-bottom: 0;
  }
}

.p-spNav.js-open {
  -webkit-transform: translateX(75%);
          transform: translateX(75%);
}
@media screen and (max-width: 767px) {
  .p-spNav.js-open {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.p-spNav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 5.625rem;
  width: 23%;
}
@media screen and (max-width: 767px) {
  .p-spNav__list {
    margin-top: 3.4375rem;
    width: 100%;
  }
}

.p-spNav__item {
  position: relative;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.p-spNav__item--banner {
  border: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .p-spNav__item--banner a:hover {
    opacity: 0.8;
  }
}
.p-spNav__item--banner img {
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-spNav__item--banner img {
    margin-inline: auto;
  }
}

.p-spNav__link {
  display: block;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  position: relative;
  text-align: left;
  padding: 1.25rem 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-spNav__link {
    text-align: center;
  }
}
@media (any-hover: hover) {
  .p-spNav__link:hover {
    opacity: 0.7;
  }
}
.p-spNav__link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  background-color: #333;
  opacity: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.p-spNav__link span {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
}

@media screen and (min-width: 900px) {
  .p-spNav__link:hover:after {
    opacity: 1;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
}
.p-spNav__logo {
  width: 20.6875rem;
  margin: 5.125rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-spNav__logo {
    width: 210px;
    margin: 2.5rem auto 0;
  }
}

.c-cross {
  position: absolute;
  top: 2.1875rem;
  right: 0.9375rem;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.c-cross:before,
.c-cross:after {
  content: "";
  display: block;
  background-color: #333;
  position: absolute;
  top: 46%;
  width: 0.9375rem;
  height: 0.125rem;
  right: 0.27rem;
}

.c-cross:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.is-active .c-cross::after {
  opacity: 0;
}

.is-active .c-cross::before {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.c-accordion {
  width: 100%;
  display: none;
  position: relative;
  padding: 0;
  margin-top: -1.25rem;
  margin-bottom: 1.25rem;
}

.c-accordion li {
  width: 100%;
  margin-left: 0.625rem;
}

.c-accordion li a {
  display: block;
  font-size: 0.875rem;
  padding-left: 0.75rem;
  padding: 0.9375rem 0rem 0.3125rem 0.75rem;
}

.p-text-loop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.p-text-loop__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: scroll-left 80s infinite linear 0.5s both;
          animation: scroll-left 80s infinite linear 0.5s both;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-text-loop__list {
    gap: 3.125rem;
  }
}

.p-text-loop__item {
  width: 175.4385964912vw;
}
@media screen and (max-width: 767px) {
  .p-text-loop__item {
    width: 243.9024390244vw;
  }
}
.p-text-loop__item img {
  width: 100%;
  height: auto;
}

.p-text-loop__item > img {
  width: 100%;
}

@-webkit-keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.p-top-access {
  padding-block: 11.6875rem 8.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-access {
    padding-block: 4.25rem 3.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-access__inner {
    max-width: calc(71.75rem + 50px);
  }
}

.p-top-access__title-en {
  color: #00235f;
  font-size: max(1.375rem, 12px);
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-top-access__title-en::before {
  position: absolute;
  content: "";
  background: #00235f;
  right: -2.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 3px;
  width: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-access__title-en::before {
    height: 1px;
    width: 1.8125rem;
    right: -2.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-access__title-en {
    font-size: max(0.9375rem, 12px);
  }
}

.p-top-access__title-ja {
  margin-top: 0.75rem;
  font-size: max(1.5rem, 12px);
  font-weight: 400;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-top-access__title-ja {
    margin-top: 0.5rem;
    font-size: max(1.125rem, 12px);
  }
}

.p-top-access__list {
  margin-top: 5rem;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .p-top-access__list {
    margin-top: 1.5rem;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .p-top-access__item:nth-child(2) {
    margin-top: 1.875rem;
  }
}

.p-top-access__map {
  margin-top: 2.25rem;
  position: relative;
  width: 100%;
  padding-top: 58.3333%; /* = height ÷ width × 100 */
}
@media screen and (max-width: 767px) {
  .p-top-access__map {
    margin-top: 0.875rem;
  }
}
.p-top-access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-top-access__address {
  margin-top: 1.375rem;
  font-size: max(1.25rem, 12px);
}
@media screen and (max-width: 767px) {
  .p-top-access__address {
    margin-top: 1.125rem;
    font-size: max(1.0625rem, 12px);
  }
}

.p-top-concept {
  position: relative;
  margin-top: 1.25rem;
  padding-bottom: 5.75rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-concept {
    margin-top: 4.5rem;
    padding-bottom: 1.875rem;
  }
}

.p-top-concept__content-wrap {
  width: 40%;
  margin-inline: auto;
  min-height: clamp(28.375rem, -3.45rem + 33.5vw, 36.75rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .p-top-concept__content-wrap {
    width: 46%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-concept__content-wrap {
    width: 100%;
    display: block;
    min-height: auto;
  }
}

.p-top-concept__content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-top-concept__title {
  font-size: max(2.75rem, 12px);
  color: #00235f;
  font-family: "Noto Serif", serif;
  font-weight: bold;
  line-height: 1.7;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-top-concept__title {
    text-align: center;
    font-size: max(1.5rem, 12px);
  }
}

.p-top-concept__text {
  margin-top: 3.125rem;
  font-size: max(1.0625rem, 12px);
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top-concept__text {
    margin-top: 1.875rem;
    font-size: max(1.0625rem, 12px);
  }
}

.p-top-concept__img {
  position: absolute;
  width: clamp(25rem, -3.5rem + 30vw, 32.5rem);
  top: 0;
}
@media screen and (max-width: 1024px) {
  .p-top-concept__img {
    width: 21.875rem;
    top: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-concept__img {
    top: 0;
    margin-top: 1.625rem;
    position: static;
    width: 100%;
  }
}
.p-top-concept__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-concept__img--01 {
  left: 0;
}

.p-top-concept__img--02 {
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-top-concept__img--02 {
    margin-inline: calc(50% - 50vw);
    width: 100vw;
  }
}

.p-top-concept__loop-text {
  margin-top: -3.125rem;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-concept__loop-text {
    margin-top: 0;
  }
}

.p-top-content {
  overflow: hidden;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-top-content {
    margin-bottom: 4.375rem;
  }
}

.p-top-content__lead {
  margin-top: 2rem;
  font-weight: bold;
  font-family: "Noto Serif", serif;
  color: #00235f;
}
@media screen and (max-width: 767px) {
  .p-top-content__lead {
    margin-top: 1.625rem;
  }
}

.p-top-content__lead-main {
  font-size: max(2.1875rem, 12px);
}
@media screen and (max-width: 767px) {
  .p-top-content__lead-main {
    font-size: max(1.5rem, 12px);
  }
}

.p-top-content__lead-sub {
  font-size: max(1.5625rem, 12px);
}
@media screen and (max-width: 767px) {
  .p-top-content__lead-sub {
    font-size: max(1rem, 12px);
  }
}

.p-top-content__text {
  margin-top: 3.5rem;
  font-size: max(1.0625rem, 12px);
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-top-content__text {
    margin-top: 1.625rem;
    font-size: max(0.9375rem, 12px);
  }
}

.p-top-content__btn {
  margin-top: 2.875rem;
  width: 28rem;
}
@media screen and (max-width: 767px) {
  .p-top-content__btn {
    width: 100%;
  }
}

.p-top-content__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-top-content__item:nth-child(1) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 767px) {
  .p-top-content__item {
    display: block;
  }
}
.p-top-content__item + .p-top-content__item {
  margin-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-content__item + .p-top-content__item {
    margin-top: 5.625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-content__img {
    margin-top: 2rem;
  }
}
.p-top-content__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-content__img--left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: calc(50% - 50vw);
  margin-right: 10%;
}
@media screen and (max-width: 767px) {
  .p-top-content__img--left {
    margin-left: 0;
    margin-right: 0;
  }
}
.p-top-content__img--left + .p-top-content__body {
  padding-left: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-content__img--left + .p-top-content__body {
    padding-left: 0;
  }
}

.p-top-content__img--right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: 5.2%;
}
@media screen and (max-width: 767px) {
  .p-top-content__img--right {
    margin-right: 0;
    margin-left: 0;
  }
}
.p-top-content__img--right + .p-top-content__body {
  padding-right: 3.125rem;
}

.p-top-content__body {
  width: 39.5%;
}
@media screen and (max-width: 1024px) {
  .p-top-content__body {
    width: 46%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-content__body {
    width: 100%;
    padding-left: 0;
  }
}

.p-top-mv {
  position: relative;
}
.p-top-mv img {
  width: 100%;
  height: 100%;
}
.p-top-mv .p-top-mv__swiper {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="5" /><feOffset dx="5" dy="5" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.35)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(4px 4px 5px rgba(0, 0, 0, .35));
          filter: drop-shadow(4px 4px 5px rgba(0, 0, 0, .35));
}
.p-top-mv .swiper {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 51%, 27% 100%, 0% 18%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 51%, 27% 100%, 0% 18%);
  aspect-ratio: 1920/900;
}
@media screen and (max-width: 767px) {
  .p-top-mv .swiper {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 30% 100%, 0 64%);
            clip-path: polygon(0 0, 100% 0, 100% 85%, 30% 100%, 0 64%);
    aspect-ratio: 379/527;
  }
}
.p-top-mv .swiper-slide img {
  aspect-ratio: 1920/900;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top-mv .swiper-slide img {
    aspect-ratio: 379/527;
  }
}
.p-top-mv .swiper-slide-active .swiper-slide__item,
.p-top-mv .swiper-slide-duplicate-active .swiper-slide__item,
.p-top-mv .swiper-slide-prev .swiper-slide__item {
  -webkit-animation: zoomanime 8s linear 0s normal both;
          animation: zoomanime 8s linear 0s normal both;
}
@-webkit-keyframes zoomanime {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
}
@keyframes zoomanime {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
}

.p-top-mv__title {
  position: absolute;
  left: 5%;
  bottom: 5.8125rem;
  width: 70.7291666667%;
  height: 13rem;
  z-index: 2;
}
@media screen and (min-width: 1920px) {
  .p-top-mv__title {
    width: 84.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mv__title {
    width: 4.1875rem;
    height: 27.6875rem;
    left: 1.125rem;
    -webkit-transform: none;
            transform: none;
    top: 6.25rem;
  }
}

.p-top-news__title {
  margin-inline: auto;
  text-align: center;
  padding: 0;
}
.p-top-news__title img {
  margin-inline: auto;
}

.p-top-news__content {
  padding: 3.875rem 5.75rem 5.875rem;
  background-color: #e8eff2;
}
@media screen and (max-width: 767px) {
  .p-top-news__content {
    padding: 1.8125rem 1.25rem 1.6875rem;
  }
}

.p-top-news__list {
  margin-top: 5.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__list {
    margin-top: 1.5rem;
  }
}

.p-top-news__item {
  border-bottom: 1px solid #00235f;
  padding-bottom: 2.375rem;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__item {
    padding-bottom: 0.75rem;
    padding-left: 0;
  }
}
.p-top-news__item + .p-top-news__item {
  margin-top: 3.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__item + .p-top-news__item {
    margin-top: 2rem;
  }
}

.p-top-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.375rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-news__link {
    display: block;
  }
}
@media (any-hover: hover) {
  .p-top-news__link:hover {
    opacity: 0.7;
  }
}

.p-top-news__item-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-news__item-title {
    margin-top: 0.25rem;
    -webkit-line-clamp: 2;
  }
}

.p-top-news__btn {
  margin-top: 6.5625rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__btn {
    margin-top: 2.75rem;
  }
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */

table.table-news {
  width: 100%;
  max-width: 1300px;
  text-align: left;
  border-collapse: collapse;
  margin: 0 auto;
  padding-top: 2em;
  margin-bottom: 0em;
}
table.table-news th {
padding: 1em 1em 1em 1em;
	border-bottom: 1px solid #00235f;
  padding-bottom: 2.375rem;
  padding-left: 2.5rem;
font-size: max(1.125rem, 12px);
  line-height: 180%;
  text-align: center;
  vertical-align: top;
  color: #000;
  font-weight: normal;
  width: 0%;
}
table.table-news td {
padding: 1em 1em 1em 1em;
border-bottom: 1px solid #00235f;
  padding-bottom: 2.375rem;
  padding-left: 2.5rem;
font-size: max(1.125rem, 12px);
  line-height: 180%;
  text-align: left;
  vertical-align: middle;
  word-break: break-all;
  width: 80%;
}
table.table-news tr th a, table.table-news tr td a {
  text-decoration: none;
  color: #333;
}

.news-area {
width: 100%;
margin:0 auto;
max-height:250px;
overflow:auto;
}


@media screen and (max-width: 767px) {
.news-area {
  width: 100%;
  max-width: 1200px;
		margin:0 auto;
  background-color: ;
		max-height:250px;
		overflow:auto;
}
}

@media screen and (max-width: 767px) {
table.table-news {
  width: 100%;
  text-align: left;
  border-collapse: separate;
  /*border-spacing: 10px;*/
  margin: 0 auto 0.5em;
  padding: 0 1em;
}
table.table-news th {
  font-size: 16px;
  padding: 0.7em 0 0 0;
  line-height: 180%;
  text-align: left;
  vertical-align: top;
  color: #000;
  font-weight: normal;
  width: 100%;
  display: block;
}
table.table-news td {
  font-size: 16px;
  padding: 0;
  border-bottom: 0px #89898A solid;
  line-height: 160%;
  text-align: left;
  vertical-align: middle;
  word-break: break-all;
  width: 100%;
  display: block;
}
table.table-news tr th a, table.table-news tr td a {
  text-decoration: none;
  color: #333;
}
}
