@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400&display=swap");

/* :::::リセットCSS:::::: */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}
ol,
ul {
  list-style: none;
}

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

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

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

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

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
  font-weight: normal;
}

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

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

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

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}
th,
td {
  font-weight: normal;
}
/* buttonタグをリセット */
button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコン削除 */
  display: none;
}
/* acodion */
/* Chrome、Safari以外 */

summary {
  display: block;
}
main {
  overflow: hidden;
}
/* Chrome、Safari */
summary::-webkit-details-marker {
  display: none;
}

/* =============================================================
ベース設定
============================================================= */

:root {
  --font-family: "Noto Sans JP", sans-serif;
  --font-sub-family: "Noto Serif JP", serif;
}
html,
body {
  width: 100%;
  margin: 0 auto;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  color: #595757;
  background-color: #fff;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0em;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  interpolate-size: allow-keywords;
}

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

a {
  color: #595757;
  transition: all 0.6s ease-out;
}

a:hover {
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.6s ease-out;
}

::before,
::after {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
iframe {
  width: 100%;
  height: 100%;
  border: none;
}

section {
  width: 100%;
  padding-block: clamp(80px, 10vw, 100px);
}
.contents-wrapper {
  width: calc(100% - 30px);
  max-width: 1600px;
  margin-inline: auto;
}
.contents-wrapper._min {
  max-width: 1200px;
}
/* drawerメニュー表示中のbody固定（スクロール位置を維持） */
body.is-fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
  left: 0;
}
/* 初期状態 */
.fade-in,
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* 画面内に入ったら */
.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 16px;
  }

  .contents-wrapper {
    width: calc(100% - 80px);
  }
}



/* ===================
トグル
====================== */
@media (min-width: 769px) {
  .pc-toggle {
    display: block;
  }
  .sp-toggle {
    display: none;
  }
	
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}	
	
}


@media (max-width: 768px) {
  .pc-toggle {
    display: none;
  }
  .sp-toggle {
    display: block;
  }
}



/* ===================
リンク
====================== */
a {
  line-height: 160%;
  color: #00468C;
  text-decoration: none
}
/*a:link {text-decoration : none; color : #00468C; }*/
/*a:visited{text-decoration : none; color : #00468C;}*/
/*a:hover{text-decoration : none; color : #fff; background-color: #0054a6;}*/
a.blacker:link {
  text-decoration: none;
  color: #000;
}
a.blacker:visited {
  text-decoration: none;
  color: #000;
}
a.blacker:hover {
  text-decoration: none;
  color: #fff;
  background-color: #0054a6;
}
/*
.hover:hover {
opacity: 0.7;
}
*/
a.whiter:link {
  text-decoration: none;
  color: #fff;
}
a.whiter:visited {
  text-decoration: none;
  color: #fff;
}
a.blacker_bold:link {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}
a.blacker_bold:visited {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}
.clear {
  clear: both;
}
.red {
  color: #FF0000
}
.blue {
  color: #09F
}
.green {
  color: #9C0;
  font-size: 12px;
}
.yellow {
  color: #FC0;
  font-size: 15px;
}
.bu {
  color: #09F;
  font-size: 18px;
}



/* ===================
改行
====================== */
@media (min-width: 1025px) { 
.pc-br {
  display: block;
}
.tab-br{
  display: none;  
}
.sp-br {
  display: none;
}
}
 @media (min-width:769px) and (max-width:1024px) {
.pc-br {
 display: none;
}
.tab-br{
  display: block;  
}
.sp-br {
  display: none;
}
}
@media (max-width: 768px) { 
.pc-br {
  display: none;
}
.tab-br{
  display: none;    
}
.sp-br {
  display: block;  
}
}


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




/* =============================================================
header
============================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 500;
  /* height: 70px; */
  background-color: #ffffff;
  color: #22ab38;
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.4vw;
}
.header-title {
  width: clamp(290px, 30vw, 380px);
  padding-block: 10px;
}

.header-title img{
width:100%;
}

.header-title span {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.header-other {
  display: flex;
  justify-content: flex-end;
  column-gap: 30px;
}

.header-other-link {
  display: block;
  width: 35px;
  height: 35px;
}
.header-nav {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding-block: 0 10px;
}
.header-nav-list {
  display: flex;
  justify-content: flex-end;
  column-gap: 10px;
  font-size: clamp(0.88rem, 0.8rem + 0.1553vw, 1.15rem);
}

.header-nav-list a{
color: #595757;
}

.header-nav-list > li:hover > a {
background: #385097;
color: #fff;
transition: .5s;
border-radius: 0.5em;
opacity: 1;
}

.header-nav-link{
padding:0.5em;
}


.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 18px 18px;
  font-size: clamp(0.9rem, 0.9597rem + 0.1653vw, 1rem);
  font-weight: 700;
  color: #fff;
  padding-block: 14px 14px;
  padding-inline: 20px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.header-btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.header-btn--register {
  background-color: #02548c;
}
.header-btn--login {
  background-color: #54a938;
}

/* responsive */
@media screen and (max-width: 1023px) {
  .header-nav {
    display: none;
  }
}
/* =============================================================
drawer menu
============================================================= */
.drawer {
  position: fixed;
  top: 0;
  right: -120%;
  transition: right 0.5s ease-in-out;
  z-index: 500;
  width: 100vw;
  /*height: 100vh;*/
  height: 100dvh;
  background-color: #4c88b0;
  padding-block: 60px 30px;

overflow-y: auto;                /* 追加：中身を縦スクロール可に */
  -webkit-overflow-scrolling: touch; /* 追加：iOS 慣性スクロール */
}
.drawer.is-open {
  right: 0;
}
.drawer-inner {
  width: 85%;
  height: 100%;
  margin-inline: auto;
padding-bottom: 60px;
}
.drawer-inner::after {
  content: "";
  display: block;
  height: 50px;   /* 欲しい余白 */
}
.drawer-logo {
  width: clamp(200px, 50vw, 340px);
  margin-inline: auto;
  margin-bottom: 30px;
}
.drawer-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.drawer-link {
  display: block;
  font-size: 1rem;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  padding-block: 1rem;
  padding-inline: 1rem;
}
.drawer-link:hover {
  background-color: #589dca;
}
.drawer-sublink {
  display: block;
  font-size: 0.875rem;
  border-bottom: 1px solid #fdf5557f;
  padding-block: 0.3rem;
  padding-left: 2rem;
}
.drawer-sublink:hover {
  background-color: #6b7f6f;
}

.drawer-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /*width: clamp(320px, 100%, 450px);*/
  line-height: 3.5;
  border-radius: 20px;
  font-weight: 400;
  color: #ffffff;
  margin-inline: auto;
  margin-bottom: 30px;
}
.drawer-actions::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 12px;
  height: 16px;
  background-image: url("../images/common/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.drawer-actions + .drawer-actions {
  margin-top: 16px;
}
.drawer-actions_primary {
  background-color: #1b67a5;
}
.drawer-actions_secondary {
  background-color: #6cab43;
}

/* responsive */
@media screen and (max-width: 1023px) {
  .drawer {
    display: block;
    width: 100vw;
  }
}
.hambarger-btn {
  display: flex;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 9999;
  height: 35px;
  width: 42px;
  align-items: center;
  border-radius: 50%;
}
.hambarger-btn .bar,
.hambarger-btn .bar:before,
.hambarger-btn .bar:after {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background-color: #02548c;
  position: absolute;

  transition: 0.5s;
}
.hambarger-btn .bar {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hambarger-btn .bar:before {
  bottom: 13px;
}
.hambarger-btn .bar:after {
  top: 13px;
}
/* .hambarger-btn.is-active {
  background-color: transparent;
} */
.hambarger-btn.is-active .bar {
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
}

.hambarger-btn.is-active .bar::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #ffffff;
}

.hambarger-btn.is-active .bar::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #ffffff;
}
.drawer-overlay {
  position: fixed;
  /*z-index: -1;*/
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}
.drawer-overlay.is-active {
  display: block;
}
@media screen and (min-width: 1024px) {
  .hambarger-btn {
    display: none;
  }
}

/* =============================================================
footer
============================================================= */
.footer {
  position: relative;
  z-index: 0;
  background-color: #eeeeee;
  padding-block: 76px 30px;
}
.footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/footer-background.webp");
}
.footer-title {
  font-size: clamp(1.125rem, 1.0847rem + 0.1653vw, 1.25rem);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 76px;
}
.footer-title span {
  display: inline-block;
}
.footer-inner {
  display: flex;
  justify-content: center;
  row-gap: 40px;
  width: 80%;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 100px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  width: 45%;
}

.footer-nav-list a{
color: #595757;
}

.footer-info {
  width: 62%;
  line-height: 1.8;
}
.footer-message {
  max-width: 700px;
  margin-inline: auto;
}
.footer-copyright {
  text-align: center;
  font-size: clamp(0.625rem, 0.5444rem + 0.3306vw, 0.875rem);
}

.page-top-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(30px, 10vw, 50px);
  height: clamp(30px, 10vw, 50px);
  border-radius: 50%;
  background-color: #6ad4e1;
  position: fixed;
  right: 10px;
  bottom: 20px;
  z-index: 100;
  text-decoration: none;
}
.page-top-link .arrow {
  width: clamp(10px, 2vw, 15px);
  height: clamp(10px, 2vw, 15px);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  display: inline-block;
  transform: rotate(-45deg);
  margin-bottom: -5px;
}
.footer-link {
  display: block;
  width: clamp(200px, 80%, 250px);
  margin-top: 40px;
}
/* responsive */
@media screen and (max-width: 1023px) {
  .footer {
    padding-block: 45px 30px;
  }
  .footer::before {
    aspect-ratio: 440 / 277;
    height: auto;
    background-image: url("../images/sp-footer-background.webp");
  }
  .footer-inner {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .footer-title {
    margin-bottom: 40px;
  }
  .footer-nav-list {
    width: 100%;
    row-gap: 15px;
  }
  .footer-info {
    width: 100%;
  }
  .footer-message {
    margin-bottom: 100px;
  }
  .page-top-link {
    bottom: 10px;
  width: clamp(50px, 10vw, 50px);
  height: clamp(50px, 10vw, 50px);
  }
}
/* =============================================================
common
============================================================= */
.section-title {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--color--primary);
  padding-bottom: max(1.56vw, 30px);
  margin-bottom: max(3.2vw, 50px);
}
.section-title span {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: 0.06em;
  margin-bottom: min(30px, max(15px, 1.56vw));
}
.section-title._white {
  color: #fff;
}
/* =============================================================
btn
============================================================= */

.more-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #02548c;
  border-radius: 12px;
  width: clamp(280px, 80%, 340px);
  max-width: 268px;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.08em;
  margin-inline: auto;
  padding-block: 0.5rem;
font-size: 18px;
}
.more-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 12px;
  height: 16px;
  background-image: url("../images/common/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.more-btn:hover {
  background-color: #00304f;
}
.more-btn:hover::after {
  right: 10px;
  transition: all 0.3s ease-out;
}

.pc-br{
display: block;
}

.sp-br{
display: none;
}

.sp0_4em {
height: 0.4em;
}
.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;
}

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

.form-wrap {
padding-top: 0 !important;
}

.form-box {
width: 100%;
max-width: 980px;
margin: 1em auto 0em;
text-align: center;
background-color: #edf6fd;
border-radius: 12px;
padding: 0.3em 0em 4.5em 0em;
margin-top: 4.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;
text-align: left;
vertical-align: top;
color: #214961;
width: 100%;
font-size: 17px;
line-height: 180%;
font-weight: bold;
}

.form-table td {
display: block;
padding: 0em 0.5em 0.5em 0em;
text-align: left;
vertical-align: top;
color: #000;
width: 100%;
font-size: 17px;
line-height: 180%;
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: #02548c;
/*border-radius: 150px;*/
background-color: #02548c !important;
color: #FFFFFF;
font-weight: 600;
font-size: 20px;
border-radius: 100px;
}

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

input, select {
  border: solid 1px #CCC;
  background-color: #FFFFFF !important;
  color: #333333;
  padding: 0.5em;
  margin: 0.5em;
line-height: 1.5 !important;
  /*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;
}

.btnnin{
background-color:#036eb7;
border-radius: 16px;
padding: 3px 14px;
color: #FFFFFF;
font-weight: normal;
border: 2px solid var(--color--primary) !important;
}

.gaiyou_table{
line-height: 2;
text-align: left;
/*margin: 0 auto;*/
font-size: 1.1rem;
width: 100%;
}

.gaiyou_table a{
font-weight: bold;
color: #006837;
text-decoration: underline;
}

.gaiyou_table th{
width: 12%;
padding-right: 2em;
vertical-align: top;
}

.gaiyou_table td{
width: 88%;
/*padding-left: 2em;*/
vertical-align: top;
padding-bottom: 0.7em;
}

.about_table{
line-height: 2;
text-align: left;
margin: 0 auto;
font-size: 1.1rem;
}

.about_table a{
font-weight: bold;
color: #006837;
text-decoration: underline;
}

.about_table th{
width: 15%;
padding-right: 2em;
vertical-align: top;
}

.about_table td{
width: 85%;
/*padding-left: 2em;*/
vertical-align: top;
padding-bottom: 0.7em;
}

.other-wrap {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}

.other-wrap p {
margin-bottom: 20px;
font-size: 1.1rem;
line-height: 180%;
word-break:break-all;
text-align:left; 
}

.other-wrap img {
height: auto;
object-fit: fill;
}

.righttxt{
text-align: right !important;
}

.over_border{
border: none;         /* 既定の枠線を消す */
height: 4px;          /* 太さ 4px */
background: #dae599;  /* 線の色 */
margin: 7em 0em;
}

.smallttl{
font-size: 26px;
font-weight: bold;
color: #006837;
margin-top: 4.0em;
margin-bottom: 1.5em;
}

.qattl{
font-size: 23px;
font-weight: bold;
color: #036eb7;
margin-top: 1.0em;
margin-bottom: 0.5em;
text-align: left;
}

.boldcenter{
margin-bottom: 20px;
font-size: 1.1rem;
line-height: 180%;
word-break:break-all;
text-align:center;
font-weight: bold;
}

.junbi{
display:inline-block;
font-size: 17px;
border: 1px solid #333;   /* 線の太さ・色 */
padding:0.5em 2em;       /* 枠線と文字の余白 */
}

.gazou{
width: 250px;
}

.accordion-003 {
    max-width: 100%;
    margin-bottom: 7px;
    border-bottom: 2px solid #d0d0d0;
}

.accordion-003 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #333333;
    font-weight: normal;
    cursor: pointer;
font-size: 1.1rem;
line-height: 180%;
word-break:break-all;
text-align:left;
text-indent: -2.1em;
    padding-left: 2.1em;

/*↓これを消す↓*/
pointer-events:none;
/*↑これを消す↑*/
}

.accordion-003 summary::-webkit-details-marker {
    display: none;
}

.accordion-003 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
	padding-left: 3px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;

/*↓これを消す↓*/
display:none;
/*↑これを消す↑*/
}

.accordion-003[open] summary::after {
    transform: rotate(225deg);
}

.accordion-003 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-003[open] p {
    transform: none;
    opacity: 1;
text-indent: -2.1em;
    padding-left: 2.1em;
}

.qiro{
font-weight: bold;
color: #036eb7;
font-size: 1.5rem;
padding-right: 0.5em;
}

.airo{
font-weight: bold;
color: #54a938;
font-size: 1.5rem;
padding-right: 0.5em;
}

#newstop{
scroll-margin-top: 230px;
}





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

section {
width: 100%;
padding-block: clamp(30px, 10vw, 50px);
}

.form-table th {
width: 99%;
}

.form-table td {
width: 99%;
}

.over_border{
margin: 4em 0em 4em 0em;
}

.gaiyou_table th{
width: 17%;
}

}








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

.pc-br{
display: none;
}

.sp-br{
display: block;
}

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

.sp0_4em {
height: 0.4em;
}
.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;
}

section {
width: 100%;
padding-block: clamp(40px, 10vw, 60px);
}

.header-title img{
width:90%;
}

.more-btn {
font-size: 16px;
}

.footer-inner {
width: 95%;
}

.form-wrap {

}

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

.form-table {
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: #214961;
width: 95%;
font-size: clamp(1.0rem, 2.5vw, 1.125rem);
}

.form-table td {
display: block;
padding: 0em 0.5em 0.5em 0em;
line-height: 180%;
text-align: left;
vertical-align: top;
color: #000;
width: 95%;
/*font-size: max(1.0625rem, 12px);*/
font-size: 16px;
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: #02548c;
/*border-radius: 150px;*/
background-color: #02548c !important;
color: #FFFFFF;
font-weight: 600;
font-size: max(1.0625rem, 12px);
border-radius: 100px;
}

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

input, select {
  border: solid 1px #CCC;
  background-color: #FFFFFF !important;
  color: #333333;
  padding: 0.5em;
  margin: 0.5em;
line-height: 1.5 !important;
  /*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;
}	

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

.gazou{
width: 250px;
}

.gaiyou_table{
line-height: 180%;
text-align: left;
font-size: 1.0rem;
margin-top: 1em;
}

.gaiyou_table th{
display: block;
width: 100%;
background-color: #f5f5f5f5;
padding: 0.5em;
}

.gaiyou_table td{
display: block;
width: 100%;
padding:0.5em;
}

.about_table{
line-height: 180%;
text-align: left;
font-size: 1.0rem;
margin-top: 1em;
}

.about_table th{
display: block;
width: 100%;
background-color: #f5f5f5f5;
padding: 0.5em;
}

.about_table td{
display: block;
width: 100%;
padding:0.5em;
}

.other-wrap {
width: 90%;
}

.other-wrap p {
font-size: 1.0rem;
line-height: 180%;
word-break:break-all;
text-align: left;
}

.righttxt{
text-align: right !important;
}

.over_border{
border: none;         /* 既定の枠線を消す */
height: 4px;          /* 太さ 4px */
background: #dae599;  /* 線の色 */
margin: 4em 0em;
}

.smallttl{
font-size: 22px;
font-weight: bold;
color: #006837;
margin-top: 3.0em;
margin-bottom: 1.5em;
}

.qattl{
font-size: 17px;
font-weight: bold;
color: #036eb7;
margin-top: 1.0em;
margin-bottom: 0.0em;
text-align: center;
}

.boldcenter {
font-size: 1.0rem;
line-height: 180%;
word-break:break-all;
text-align: left;
font-weight: bold;
}

.junbi{
display:inline-block;
font-size: 16px;
border: 1px solid #333;   /* 線の太さ・色 */
padding:0.5em 2em;       /* 枠線と文字の余白 */
}

.accordion-003 {
    max-width: 100%;
    margin-bottom: 7px;
    border-bottom: 2px solid #d0d0d0;
}

.accordion-003 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 0em 1em 0em;
    color: #333333;
    font-weight: normal;
    cursor: pointer;
font-size: 1.0rem;
line-height: 170%;
word-break:break-all;
text-align: left;
text-indent: -2.1em;
    padding-left: 2.1em;
}

.accordion-003 summary::-webkit-details-marker {
    display: none;
}

.accordion-003 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
	padding-left: 4px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
}

.accordion-003[open] summary::after {
    transform: rotate(225deg);
}

.accordion-003 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0em 0em 1em 0em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-003[open] p {
    transform: none;
    opacity: 1;
text-indent: -2.1em;
    padding-left: 2.1em;
}

#newstop{
scroll-margin-top: 190px;
}

}





/*iphone5&SE用*/
@media screen and (min-width: 320px) and (max-width: 374px){

/*.form-table th {
width: 82%;
}

.form-table td {
width: 82%;
}*/

}

