
/*-----------------------------------------------------------
1-1. Reset
-----------------------------------------------------------*/
html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
}

div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, img, ins, kbd, q, samp, sub, sup, var, b, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, mark, audio, video, a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  font: inherit;
}

span, small, em, time, i {
  font-style: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

a {
  border: medium;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5em;
}

main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, picture {
  display: block;
}

li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, select {
  vertical-align: middle;
}

abbr[title], dfn[title] {
  cursor: help;
}

del {
  text-decoration: line-through;
}

ins {
  font-style: oblique;
  text-decoration: none;
}

mark {
  background: transparent;
  font-style: normal;
}

img {
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

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

::-moz-selection {
  background: #d4dcd6;
}

::selection {
  background: #d4dcd6;
}

/*-----------------------------------------------------------
body
-----------------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

body, html {
  width: 100%;
  height: 100%;
}

body {
  background: #FEF9E6;
  color: #000;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  image-rendering: -webkit-optimize-contrast;
}

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

.link {
  text-decoration: underline;
}
.link:hover {
  text-decoration: none;
}

a[href^=tel] {
  cursor: default;
}

/*-----------------------------------------------------------
header
-----------------------------------------------------------*/
.h-container {
  background: #fff;
  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;
  height: 104px;
  width: 100%;
}

/*-----------------------------------------------------------
g-navi
-----------------------------------------------------------*/
.pc-navi {
  background: #E95613;
}

.pc-navi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pc-navi-list > li {
  position: relative;
}
.pc-navi-list > li:before {
  content: "";
  display: block;
  background: #F8BB9F;
  width: 1px;
  height: 64px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.pc-navi-list > li:last-of-type:after {
  content: "";
  display: block;
  background: #F8BB9F;
  width: 1px;
  height: 64px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.pc-navi-list > li > a {
  display: block;
  color: #fff;
  font-size: 15px;
  padding: 16px 25px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.pc-navi-list > li > a i {
  display: block;
  line-height: 1;
  text-align: center;
  margin-bottom: 5px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.pc-navi-list > li > a i img {
  -o-object-fit: scale-down;
     object-fit: scale-down;
  width: 43px;
  height: 33px;
}
.pc-navi-list > li > a:hover {
  color: #fff100;
}
.pc-navi-list > li > a:hover i {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.sp-navi {
  display: none;
}

/* ドロップダウンメニュー */
.pc-navi .dropdown {
  position: relative;
}
.pc-navi .dropdown .child {
  display: none;
  padding: 10px 0 0;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 230px;
  z-index: 50;
}
.pc-navi .dropdown ul {
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px 20px;
}
.pc-navi .dropdown ul li:last-child {
  margin: 0;
}
.pc-navi .dropdown ul li a {
  padding: 10px 0;
  color: #E95613;
  font-weight: 700;
  font-size: 15px;
  display: block;
  line-height: 1.5;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.pc-navi .dropdown ul li a:hover {
  opacity: 0.5;
}

.no-link {
  cursor: default;
}

/*-----------------------------------------------------------
hero
-----------------------------------------------------------*/
.hero-img img {
  width: 100%;
}

/*-----------------------------------------------------------
top contents
-----------------------------------------------------------*/
.container {
  margin: 0 auto;
  max-width: 1000px;
  width: 90%;
}
.container.wide {
  max-width: 1140px;
}

/*sec01*/
.sec01 {
  padding: 80px 0;
}

.sec01-logo {
  text-align: center;
  margin-bottom: 30px;
}

.sec01-ttl {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 30px;
}

.sec01-txt {
  text-align: center;
  margin-bottom: 40px;
}

.sec01-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 10px;
}
.sec01-card img {
  width: 100%;
}

.sec01-note {
  font-size: 12px;
  text-align: right;
  margin-bottom: 45px;
}

.sec01-movie {
  margin: 45px auto 0;
  width: 560px;
}
.sec01-movie iframe {
  width: 560px;
  height: 315px;
}

/*sec02*/
.sec02 {
  background: #E5F1F7;
  padding: 80px 0;
}

.sec02-ttl {
  color: #E95613;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  margin-bottom: 15px;
}
.sec02-ttl i {
  display: block;
  line-height: 1;
  margin-bottom: 20px;
}

.sec02-txt {
  text-align: center;
}

#japan-map {
  width: 100%;
  height: 100%;
  border-collapse: separate;
  border-spacing: 1px;
  max-width: 920px;
  margin: 0 auto;
}

#japan-map .pref {
  background: #00a7ed;
  border-radius: 2px;
  color: #fff;
  font-size: 0.7em;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#japan-map .pref:hover {
  opacity: 0.8;
}

#japan-map .pref a {
  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;
  width: 100%;
  height: 100%;
  padding: 10px 2px;
}

#japan-map #hokkaido {
  padding: 20px 0;
}

/*sec03*/
.sec03 {
  padding: 80px 0;
}

.sec03-btn {
  margin-bottom: 30px;
}

.sec03-ttl {
  color: #E95613;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  margin-bottom: 15px;
}
.sec03-ttl i {
  display: block;
  line-height: 1;
  margin-bottom: 20px;
}

.sec03-txt {
  text-align: center;
  margin-bottom: 20px;
}

.sec03-layout01 {
  background: #FBE8BE;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 90px;
}
.sec03-layout01 .box-ttl {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 25px;
}

.sec03-layout02 {
  background: #FFF;
  padding: 50px 50px 0;
  max-width: 900px;
  margin: 0 auto 50px;
}
.sec03-layout02 .box-ttl {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 25px;
}
.sec03-layout02 .box-ttl .big {
  display: block;
  color: #E95613;
  font-size: 30px;
  font-weight: 700;
  margin-top: 15px;
}
.sec03-layout02 .btn-flex {
  margin-bottom: 20px;
}
.sec03-layout02 .l-txt {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.sec03-layout02 .l-txt p + p {
  margin-top: 15px;
}
.sec03-layout02 .l-item {
  position: relative;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  text-align: center;
  position: relative;
}
.sec03-layout02 .txt01 {
  position: absolute;
  left: 0;
  top: 0;
}
.sec03-layout02 .txt02 {
  position: absolute;
  right: 0;
  top: 15px;
}

/*sec04*/
.sec04 {
  background: #FBE8BE;
  padding: 80px 0;
}
.sec04 .sec04-ttl {
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}

/*-----------------------------------------------------------
footer
-----------------------------------------------------------*/
.footer {
  background: #fff;
}

.f-wrapper01 {
  padding: 20px 0;
}

.f-wrapper02 {
  border-top: 2px solid #E95613;
  padding: 20px 0;
}

.f-bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.f-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-logo {
  margin-right: 40px;
}

.sitemap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
}
.sitemap ul li a {
  font-size: 14px !important;
  position: relative;
}
.sitemap ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  height: 1px;
  bottom: -1px;
  left: 0;
  background-color: #E95613;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.sitemap ul li a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.f-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.f-sns li {
  width: 33px;
  line-height: 1;
}

/*-----------------------------------------------------------
アニメーション
-----------------------------------------------------------*/
.is-fade {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translate(0, 15%);
          transform: translate(0, 15%);
}
.is-fade.is-action {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 1200px) and (min-width: 800px) {
  _:lang(x) + _:-webkit-full-screen-document, .sec01 .is-fade {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.is-card li {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}
.is-card li:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.is-card li:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.is-card li:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.is-card.is-action li {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*-----------------------------------------------------------
under
-----------------------------------------------------------*/
.breadcrumb {
  margin: 5px 0 55px;
  width: 100%;
}
.breadcrumb ul {
  margin: 0 auto;
  max-width: 1000px;
  width: 90%;
}
.breadcrumb ul li {
  color: #888;
  font-size: 13px;
  display: inline;
}
.breadcrumb ul li a {
  text-decoration: underline;
  color: #E95613;
}
.breadcrumb ul li a:hover {
  text-decoration: none;
}
.breadcrumb ul li + li:before {
  content: "> ";
  padding: 0 5px;
  color: #E95613;
}

.page-ttl {
  height: 160px;
  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;
  background: #fff;
}
.page-ttl h1 {
  color: #E95613;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.1em;
  text-align: center;
  overflow-wrap: break-word;
  word-break: keep-all;
  max-width: 100%;
}
.page-ttl h1 i {
  display: block;
  line-height: 1;
  text-align: center;
  margin-bottom: 10px;
}

/*-----------------------------------------------------------
under parts
-----------------------------------------------------------*/
.u-contents p + p {
  margin-top: 15px;
}

.u-h2 {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 40px;
}

.u-h3 {
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 30px;
}

/*box*/
.short {
  margin: 0 0 60px;
}

.tall {
  margin: 0 0 90px;
}

/*Column*/
.col2,
.col2-col2,
.col3,
.col3-col2,
.col4,
.col4-col2 {
  display: -ms-grid;
  display: grid;
}

.col2,
.col2-col2 {
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.col3,
.col3-col2 {
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.col4,
.col4-col2 {
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 30px;
}

/*layout*/
.l-imgR,
.l-imgL {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.l-imgR.center,
.l-imgL.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-imgR .l-img,
.l-imgL .l-img {
  margin: 0 20px 0 0;
  width: 35%;
}
.l-imgR .l-img.small,
.l-imgL .l-img.small {
  width: 25%;
}
.l-imgR .l-desc,
.l-imgL .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-imgR {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.l-imgR .l-img {
  margin: 0 0 0 20px;
}

.l-imgR.center,
.l-imgL.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fl-imgR,
.fl-imgL {
  overflow: hidden;
}
.fl-imgR .l-img,
.fl-imgL .l-img {
  width: 35%;
}
.fl-imgR .l-img.small,
.fl-imgL .l-img.small {
  width: 25%;
}

.fl-imgR .l-img {
  float: right;
  margin: 0 0 15px 20px;
}

.fl-imgL .l-img {
  float: left;
  margin: 0 20px 15px 0;
}

.fl-imgR .l-img.small,
.fl-imgL .l-img.small {
  width: 25%;
}

.container {
  flex-direction: column;
  align-items: center; /* 下の1つを中央にする */
  gap: 20px;
}
.top-row {
  display: flex;
  gap: 20px;
}

@media (max-width: 980px) {
  .top-row {
    flex-direction: column;
    gap: 10px;
  }
}
.bottom {
  width: 60%; 
  height: auto; 
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .bottom {
    width: 100%; 
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
}

/*list*/
.list-disc li {
  position: relative;
  padding: 0 0 0 15px;
}
.list-disc li:before {
  background: #E95613;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
}
.list-disc li + li {
  margin-top: 3px;
}

.list-decimal {
  padding-left: 22px;
}
.list-decimal li {
  list-style: decimal;
}
.list-decimal li + li {
  margin-top: 3px;
}

/*table*/
.table-style01 {
  border: 1px solid #aaa;
  border-collapse: collapse;
  width: 100%;
}

.table-style01 td, .table-style01 th {
  border: 1px solid #aaa;
  padding: 0.5rem;
  font-size: 14px;
}

.table-style01 td {
  background: #fff;
}

.table-style01 a {
  color: #212529;
  text-decoration: underline;
}

/*btn-style*/
.btn-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.btn-style01 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #E95613;
  border-radius: 200px;
  overflow: hidden;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 25px 40px;
  min-width: 400px;
  position: relative;
  z-index: 1;
}
.btn-style01::after {
  content: "";
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: #ce4405;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  z-index: -1;
}
.btn-style01:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
.btn-style01.btn-blue {
  background: #2BA6E1;
}
.btn-style01.btn-blue::after {
  background-color: #1194d2;
}
.btn-style01 i {
  margin-right: 15px;
  line-height: 1;
}
.btn-style01.btn-small {
  padding: 15px 30px;
  min-width: 330px;
}

.btn-style02 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 200px;
  overflow: hidden;
  color: #000;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 20px 30px;
  min-width: 360px;
  position: relative;
  z-index: 1;
}
.btn-style02::after {
  content: "";
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: #E5F1F7;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  z-index: -1;
}
.btn-style02:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
.btn-style02 i {
  margin-right: 15px;
  line-height: 1;
}

.btn-dl {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #E95613;
  border-radius: 200px;
  overflow: hidden;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 25px 40px;
  min-width: 380px;
  position: relative;
  z-index: 1;
}
.btn-dl::after {
  content: "";
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: #ce4405;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  z-index: -1;
}
.btn-dl:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
.btn-dl i {
  margin-left: 15px;
  line-height: 1;
}

/*.box-style*/
.box-style01 {
  background: #fff;
  font-size: 15px;
  border-radius: 20px;
  padding: 50px 45px;
}
.box-style01.bg-beige {
  background: #FBE8BE;
}
.box-style01.bg-orange {
  background: #E95613;
  color: #fff;
}
.box-style01 .box-ttl {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}
.box-style01 .box-ttl .big {
  display: block;
  font-size: 30px;
  margin-top: 15px;
}
.box-style01 .box-ttl .small {
  display: block;
  font-size: 16px;
}
.box-style01 .box-ttl02 {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.box-style01 .box-ttl03 {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.box-style01 hr {
  height: 1px;
  background-color: #ddd;
  border: none;
  margin: 35px 0;
}
.box-style01 .contact-layout {
  background: none;
  padding: 0;
}
.box-style01 + .box-style01 {
  margin-top: 20px;
}

.box-style02 {
  background: #fff;
  font-size: 14px;
  border-radius: 20px;
  padding: 20px;
}
.box-style02.bg-beige {
  background: #FBE8BE;
}
.box-style02.bg-orange {
  background: #E95613;
  color: #fff;
}

/*サポステにご連絡ください！*/
.bear-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #E95613;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.26;
  text-align: center;
  padding: 0 40px;
}
.bear-ttl:before, .bear-ttl:after {
  content: "";
  display: block;
  width: 184px;
  height: 160px;
}
.bear-ttl:before {
  background: url(/images/under/contact_item01.png) no-repeat center top/100%;
  margin-right: 10px;
}
.bear-ttl:after {
  background: url(/images/under/contact_item02.png) no-repeat center top/100%;
  margin-left: 10px;
}
.bear-ttl.bear-full {
  margin-bottom: 30px;
}
.bear-ttl.bear-full:before, .bear-ttl.bear-full:after {
  content: "";
  display: block;
  width: 165px;
  height: 196px;
}

.contact-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-radius: 20px;
  padding: 50px;
}
.contact-layout .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.contact-layout .l-btn {
  width: 360px;
  margin-left: 20px;
}
.contact-layout .l-btn .btn-style01 {
  min-width: 0;
  width: 100%;
}

/*------------
サポステとは
--------------*/
.about-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.about-list li {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2BA6E1;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 1.36;
  text-align: center;
  background: #E5F1F7;
  border-radius: 50%;
  width: 200px;
  height: 200px;
}
.about-list li:nth-child(even) {
  margin-top: 70px;
}

.about-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 25px 20px;
  font-size: 14px;
}
.about-card .card-img {
  text-align: center;
  margin-bottom: 22px;
}
.about-card .card-ttl {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
}

/*------------
数字で見るサポステ！
--------------*/
.results-box {
  background: #FBE8BE;
  padding: 50px;
  border-radius: 20px;
}
.results-box p {
  font-size: 14px;
  position: relative;
  z-index: 2;
}
.results-box + .results-box {
  margin-top: 20px;
}

.results-layout01 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 360px 45px 1fr;
  grid-template-columns: 360px 1fr;
  gap: 0 45px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 760px;
  margin: 0 auto 25px;
}
.results-layout01 .l-ttl {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.34;
  text-align: center;
}
.results-layout01 .l-num {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/3/3;
  position: relative;
  z-index: 1;
}
.results-layout01 .l-num:before {
  content: "";
  display: block;
  background: url(/images/under/results_num01_bg.png) no-repeat right top/contain;
  width: 283px;
  height: 291px;
  position: absolute;
  right: -15px;
  top: -50px;
  z-index: -1;
}
.results-layout01 .l-btn {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/3/2;
  text-align: center;
}

.results-layout02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 25px;
}
.results-layout02 .l-num {
  width: 490px;
}
.results-layout02 .l-img {
  width: 399px;
}

.results-layout03 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 379px;
  /* grid-template-columns: 1fr 379px; */
  -ms-grid-rows: auto 25px 1fr;
  grid-template-rows: auto 1fr;
  gap: 20px 0px;
  position: relative;
}

.img-top-right {
  position: absolute;
  top: 20px;
  right: 50px;
}

@media (max-width: 980px) {
  .img-top-right {
    position: static;
  }
}

.results-layout03 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.results-layout03 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.results-layout03 > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.results-layout03 > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.results-layout03 .l-num {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
  position: relative;
  z-index: 1;
}
.results-layout03 .l-num:before {
  content: "";
  display: block;
  background: url(/images/under/results_num03_bg.png) no-repeat right top/contain;
  width: 181px;
  height: 194px;
  position: absolute;
  right: 0;
  bottom: -15px;
  z-index: -1;
}
.results-layout03 .l-img {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/3/3;
}
.results-layout03 .l-txt {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/3/2;
}

.results-layout04 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 450px 25px 1fr;
  grid-template-columns: 450px 1fr;
  -ms-grid-rows: auto 20px 1fr;
  grid-template-rows: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px 25px;
}

.results-layout04 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.results-layout04 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.results-layout04 > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.results-layout04 > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.results-layout04 .l-ttl {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.34;
}
.results-layout04 .l-num {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/3/3;
}
.results-layout04 .l-txt {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/3/2;
}

.results-layout05 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 375px 0 1fr;
  grid-template-columns: 375px 1fr;
  -ms-grid-rows: auto 25px 1fr;
  grid-template-rows: auto 1fr;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 25px 0;
}

.results-layout05 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.results-layout05 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.results-layout05 > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.results-layout05 > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.results-layout05 .l-ttl {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/2/3;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.34;
}
.results-layout05 .l-num {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/3/2;
  z-index: 1;
}
.results-layout05 .l-num:before {
  content: "";
  display: block;
  background: url(/images/under/results_num05_bg.png) no-repeat right top/contain;
  width: 136px;
  height: 173px;
  position: absolute;
  right: 10px;
  bottom: -20px;
  z-index: -1;
}
.results-layout05 .l-txt {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 2/2/3/3;
}

/*------------
広報ギャラリー
--------------*/
.aboutlogo-box {
  background: #FBE8BE;
  border-radius: 20px;
  padding: 50px;
}
.aboutlogo-box .box-ttl {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 30px;
}
.aboutlogo-img {
  text-align: center;
}

.aboutlogo-img figcaption {
  font-weight: 700;
  font-size: 22px;
  margin-top: 20px;
}

/*------------
Q & A
--------------*/
.faq-style dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 25px;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.faq-style dt i {
  color: #2BA6E1;
  font-size: 50px;
  line-height: 0.7;
  margin: 0 20px 0 0;
}

.faq-style dt .ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.faq-style dd {
  font-size: 14px;
}

.faq-style dd + dt {
  border-top: 1px solid #AFAFAF;
  margin-top: 35px;
  padding-top: 35px;
}

.faq-style .faq-catch {
  color: #E95613;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.1em;
}

.faq-img {
  margin: 20px auto 0;
  max-width: 70%;
}

/*------------
全国のサポステ
--------------*/
.station-ttl {
  color: #E95613;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 15px;
}
.station-ttl i {
  display: block;
  line-height: 1;
  text-align: center;
  margin-bottom: 20px;
}

.station-sub-ttl {
  text-align: center;
  margin-bottom: 30px;
}

#station .table-style01 th {
  color: #fff;
}

#station table td .label {
  background: #ddd;
  padding: 5px;
  border-radius: 5px;
  font-size: 10px;
  margin-right: 5px;
}

#station-01 #b-01 th {
  background: #ea5350;
}

#station-02 #b-02 th {
  background: #f39938;
}

#station-03 #b-03 th {
  background: #8ec555;
}

#station-04 #b-04 th {
  background: #0ba95f;
}

#station-05 #b-05 th {
  background: #00afcc;
}

#station-06 #b-06 th {
  background: #3962ad;
}

#station-07 #b-07 th {
  background: #7d4698;
}

#station-08 #b-08 th {
  background: #e95283;
}

#station-01 #b-01 .ken {
  background: #f9cbca;
}

#station-02 #b-02 .ken {
  background: #fbe0c3;
}

#station-03 #b-03 .ken {
  background: #ddedcc;
}

#station-04 #b-04 .ken {
  background: #b5e5cf;
}

#station-05 #b-05 .ken {
  background: #b2e7f0;
}

#station-06 #b-06 .ken {
  background: #c3d0e6;
}

#station-07 #b-07 .ken {
  background: #d8c7e0;
}

#station-08 #b-08 .ken {
  background: #f8cbda;
}

/*------------
全国のサポステ 詳細
--------------*/
#station_detail h2 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
}

#station_detail th {
  background-color: #e2eaec;
  width: 30%;
}

#station_detail td {
  width: 70%;
}

#station_detail iframe {
  width: 100%;
}

.station_area {
  display: inline-block;
  background-color: #ebebeb;
  padding: 5px 10px;
  color: #333;
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 10px;
}
.station_area:before {
  content: "";
  display: inline-block;
  background: url(/images/share/station_icon.png) no-repeat left top/contain;
  width: 10px;
  height: 21px;
  line-height: 1;
  vertical-align: middle;
  margin-right: 5px;
}

.dot_border {
  height: 5px;
  width: 100%;
  background: url(/images/share/line_bg.png) space no-repeat left center/contain;
  margin-bottom: 40px;
}

/*------------
教育機関のみなさまへ
--------------*/
.educational-catch {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}
.educational-catch .small {
  font-size: 22px;
}

.educational-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.educational-card li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
}
.educational-card .card-img {
  width: 140px;
  margin-right: 20px;
}
.educational-card .card-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  padding: 10px 0 0;
}
.educational-card .card-ttl {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

/*------------
全国サポステ優秀事例表彰
--------------*/
.commendation-ttl {
  text-align: center;
}
.commendation-ttl i {
  display: block;
  line-height: 1;
}
.commendation-ttl .ttl {
  color: #2BA6E1;
  font-weight: 700;
  font-size: 28px;
}

/*------------
サポステスタッフからメッセージ
--------------*/
body.message-staff {
  background: #d6edf4;
}

.message-staff-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 max(15px, 50% - 570px);
}
.message-staff-layout .l-img {
  padding: 0 15px;
  width: 41.66%;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.message-staff-layout .l-img.small {
  width: 33.3%;
}
.message-staff-layout .l-desc {
  padding: 0 15px 40px;
  font-size: 14px;
  line-height: 1.5;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.message-staff-layout .l-desc p + p {
  margin-top: 40px;
}
.message-staff-layout .name {
  font-size: 18px;
}
.message-staff-layout.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.message-staff-layout.reverse .l-img {
  margin: 0 0 0 30px;
}
.message-staff-layout + .message-staff-layout {
  border-top: 5px solid #fff;
  padding-top: 80px;
}

/*------------
主な支援内容
-------------*/
.yell-list-modal {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px 10px;
}
.yell-list-modal li {
  background: #fff;
  border-radius: 20px;
  padding: 30px 100px 30px 30px;
  min-height: 180px;
  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;
  cursor: pointer;
  min-width: 0;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.yell-list-modal li:before {
  content: "＋";
  background: #E95613;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  position: absolute;
  right: 25px;
  bottom: 40px;
  z-index: 2;
}
.yell-list-modal li:hover {
  background: #FBE8BE;
}
.yell-list-modal .list-catch {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
.yell-list-modal .list-ttl {
  color: #E95613;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
}
.yell-list-modal .list-ttl .small {
  font-size: 18px;
  letter-spacing: -1px;
}

.yell-layout .l-ttl {
  color: #E95613;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 30px;
}
.yell-layout .l-ttl .small {
  display: block;
  color: #000;
  font-size: 20px;
}
.yell-layout .l-ttl02 {
  color: #E95613;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 25px;
  padding: 25px 0 0;
}

.img-col2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.box-advice {
  background: #fff;
  border: 1px solid #D6D6D6;
  border-radius: 20px;
  padding: 30px;
}
.box-advice .box-ttl {
  color: #2BA6E1;
  font-weight: 700;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.box-advice i {
  margin-right: 15px;
  -webkit-box-flex: 60px;
      -ms-flex: 60px 0 0px;
          flex: 60px 0 0;
}

body.is-hidden {
  overflow: hidden;
}

.modal-contents {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 250;
}

.modal-container {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  width: 100%;
  max-width: 1000%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  font-size: 15px;
}

.modal-close {
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  line-height: 57px;
  cursor: pointer;
  background: #B5B5B5;
  border-radius: 50px;
  position: fixed;
  right: 25px;
  top: 25px;
  width: 60px;
  height: 60px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.modal-close:hover {
  background: #D5D5D5;
}

.modal-overlay {
  display: none;
  cursor: pointer;
  background-color: #000;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0.5;
  cursor: pointer;
  z-index: 200;
}

.modal-overlay.is-on {
  opacity: 0.8;
}

/*------------
お問い合わせ
--------------*/
.contact-form table {
  border-collapse: collapse;
  width: 100%;
  border: solid 1px #aaa;
  margin-bottom: 20px;
}

.contact-form table th {
  border: solid 1px #aaa;
  padding: 10px;
  background: #ccecfa;
  width: 30%;
}

.contact-form table td {
  border: solid 1px #aaa;
  background: #fff;
  padding: 10px;
  width: 70%;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form input[type=number],
.contact-form input[type=date],
.contact-form select,
.contact-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
  border: 1px solid #aaa;
  font-size: 16px;
  padding: 10px;
  margin: 0;
  width: 100%;
  min-height: 50px;
}

.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form input[type=number]:focus,
.contact-form input[type=file]:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 1px solid #E95613;
}

.contact-form textarea {
  height: 200px;
  resize: vertical;
}

.contact-form select::-ms-expand {
  display: none;
}

.contact-form .select-wrap {
  position: relative;
}

.contact-form .select-wrap::after {
  content: "";
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #000 transparent transparent transparent;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 22px;
}

.contact-form .submit-btn,
.contact-form .wpcf7cp-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-form .submit-btn [type=submit] {
  -webkit-appearance: none;
  background: #218838;
  border: 1px solid #218838;
  border-radius: 0.25rem;
  outline: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 0.5rem 0.75rem;
  min-width: 150px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact-form .submit-btn [type=submit]:hover {
  opacity: 0.7;
}

.contact-form .submit-btn [type=submit].back-btn {
  background: #fff;
  border: 1px solid #ccc;
  color: #000;
  margin-right: 20px;
}

/*-----------------------------------------------------------
common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.fade {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.fade:hover {
  opacity: 0.5;
}

.bold,
strong {
  font-weight: 700;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #ffe7a5));
  background: linear-gradient(transparent 50%, #ffe7a5 50%);
}

.red {
  color: #F44336;
}

.orange {
  color: #E95613;
}

.blue {
  color: #2BA6E1;
}

.white {
  color: #fff;
}

.underline {
  text-decoration: underline;
}

.notice {
  font-size: 13px;
  text-indent: -1rem;
  padding: 0 0 0 15px;
}

.sp-map iframe,
.sp-map object,
.sp-map embed {
  vertical-align: top;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mbS {
  margin-bottom: 15px !important;
}

.mbM {
  margin-bottom: 30px !important;
}

.mbL {
  margin-bottom: 60px !important;
}

.mt0 {
  margin-top: 0 !important;
}

@media (max-width: 952px) and (min-width: 801px) {
  .psizu {
    margin-top: 20px; 
  }
}

@media (max-width: 1030px) and (min-width: 956px) { 
  .results-layout03 .l-num:before {
    height: 160px; 
  }
}

@media (max-width: 955px) and (min-width: 870px) { 
  .results-layout03 .l-num:before {
    height: 140px; 
  }
}

@media (max-width: 869px) and (min-width: 801px) { 
  .results-layout03 .l-num:before {
    height: 120px; 
  }
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

@media (max-width: 800px) {
  /*-----------------------------------------------------------
  body SP
  -----------------------------------------------------------*/
  body {
    font-size: 14px;
    line-height: 1.8;
  }
  h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.4;
  }
  /*-----------------------------------------------------------
  header SP
  -----------------------------------------------------------*/
  .header {
    border-bottom: 2px solid #E95613;
  }
  .h-container {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 70px;
    width: 100%;
    padding: 0 5vw;
  }
  .h-logo {
    width: 200px;
  }
  /*-----------------------------------------------------------
  g-navi SP
  -----------------------------------------------------------*/
  /* PC用のナビを非表示 */
  .pc-navi {
    display: none;
  }
  /* PC用のナビを非表示 */
  .sp-navi {
    display: block;
  }
  .humberger {
    background-color: #E95613;
    -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 2000;
  }
  .humberger span {
    background: #fff;
    position: absolute;
    left: 50%;
    width: 25px;
    height: 1px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .humberger span:nth-of-type(1) {
    top: 15px;
  }
  .humberger span:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .humberger span:nth-of-type(3) {
    bottom: 15px;
  }
  .humberger.is-open span:nth-of-type(1) {
    -webkit-transform: translate(-50%, 9px) rotate(-45deg);
            transform: translate(-50%, 9px) rotate(-45deg);
  }
  .humberger.is-open span:nth-of-type(2) {
    opacity: 0;
  }
  .humberger.is-open span:nth-of-type(3) {
    -webkit-transform: translate(-50%, -9px) rotate(45deg);
            transform: translate(-50%, -9px) rotate(45deg);
  }
  /* 中身 */
  .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    padding: 100px 10% 50px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    z-index: 999;
  }
  .sp-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    opacity: 1;
  }
  .sp-navi-list {
    border-top: 1px solid #ddd;
    margin: 0 0 30px;
  }
  .sp-navi-list > li {
    border-bottom: 1px solid #ddd;
  }
  .sp-navi-list > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    font-size: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1;
    text-decoration: none;
    padding: 15px 0;
  }
  .sp-navi-list > li > a i {
    display: block;
    line-height: 1;
    text-align: center;
    margin: 0 10px 0 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .sp-navi-list > li > a i img {
    -o-object-fit: scale-down;
       object-fit: scale-down;
    width: 40px;
    height: 30px;
  }
  /*-----------------------------------------------------------
  hero SP
  -----------------------------------------------------------*/
  .hero-img img {
    width: 100%;
  }
  /*-----------------------------------------------------------
  top contents SP
  -----------------------------------------------------------*/
  /*sec01*/
  .sec01 {
    padding: 40px 0;
  }
  .sec01-logo {
    width: 250px;
    margin: 0 auto 25px;
  }
  .sec01-ttl {
    font-size: 20px;
    text-align: left;
    margin-bottom: 25px;
  }
  .sec01-txt {
    text-align: left;
    margin-bottom: 25px;
  }
  .sec01-card {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .sec01-note {
    margin-bottom: 30px;
  }
  .sec01-movie {
    margin: 30px auto 0;
    width: 100%;
  }
  .sec01-movie iframe{
    width: 100%;
    height: 200px;
  }


  /*sec02*/
  .sec02 {
    padding: 40px 0;
  }
  .sec02-ttl {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .sec02-ttl i {
    display: block;
    line-height: 1;
    margin-bottom: 15px;
  }
  .sec02-txt {
    margin-bottom: 15px;
  }
  #japan-map .pref a {
    padding: 3px 2px;
  }
  /*sec03*/
  .sec03 {
    padding: 40px 0;
  }
  .sec03-btn {
    margin-bottom: 30px;
  }
  .sec03-ttl {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .sec03-ttl i {
    display: block;
    line-height: 1;
    margin-bottom: 15px;
  }
  .sec03-layout01 {
    padding: 30px 20px;
    margin-bottom: 40px;
  }
  .sec03-layout01 .box-ttl {
    font-size: 20px;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 25px;
  }
  .sec03-layout02 {
    padding: 30px 20px 0;
    margin: 0 auto 30px;
  }
  .sec03-layout02 .box-ttl {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .sec03-layout02 .box-ttl .big {
    font-size: 23px;
  }
  .sec03-layout02 .l-txt {
    text-align: left;
  }
  .sec03-layout02 .l-item {
    padding: 50px 0 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    width: 100%;
    margin: 0 auto;
  }
  .sec03-layout02 .img {
    width: 80%;
    margin: 0 auto;
  }
  .sec03-layout02 .txt01 {
    top: 0;
    width: 99px;
  }
  .sec03-layout02 .txt02 {
    top: 5px;
    width: 95px;
  }
  /*sec04*/
  .sec04 {
    padding: 40px 0;
  }
  .sec04 .sec04-ttl {
    font-weight: 700;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
  }
  /*-----------------------------------------------------------
  footer SP
  -----------------------------------------------------------*/
  .f-bnr {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px 0;
  }
  .f-bnr li {
    width: 48%;
  }
  .f-layout {
    display: block;
  }
  .logo-area {
    display: block;
  }
  .f-logo {
    margin: 0 auto 20px;
    width: 200px;
  }
  .sitemap {
    margin: 0 auto 20px;
  }
  .sitemap ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
            flex-wrap: wrap;
            gap:5px 13px;
  }
  .sitemap ul li a {
    font-size: 12px !important;
  }
  .f-sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto 20px;
  }
  .mhlw-logo {
    text-align: center;
  }
  /*-----------------------------------------------------------
  under SP
  -----------------------------------------------------------*/
  .breadcrumb {
    margin: 5px 0 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .breadcrumb ul {
    margin: 0 auto;
    max-width: 1000px;
    width: 90%;
  }
  .page-ttl {
    height: 160px;
    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;
    background: #fff;
    padding: 0 5vw;
  }
  .page-ttl h1 {
    font-size: 23px;
  }
  .page-ttl h1 i {
    display: block;
    line-height: 1;
    text-align: center;
    margin-bottom: 10px;
  }
  .page-ttl h1 i img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 40px;
    height: 40px;
  }
  /*-----------------------------------------------------------
  under parts SP
  -----------------------------------------------------------*/
  .u-h2 {
    font-size: 22px;
    line-height: 1.4;
    margin: 0 0 30px;
  }
  .u-h3 {
    font-size: 20px;
    line-height: 1.4;
    margin: 0 0 25px;
  }
  /*box SP*/
  .short {
    margin: 0 0 40px;
  }
  .tall {
    margin: 0 0 60px;
  }
  /*Column SP*/
  .col2,
.col3,
.col4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .col2-col2,
.col3-col2,
.col4-col2 {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
  }
  /*layout SP*/
  .l-imgR,
.l-imgL {
    display: block;
  }
  .l-imgR .l-img,
.l-imgL .l-img {
    margin: 0 0 15px;
    text-align: center;
    width: 100%;
  }
  .l-imgR .l-img.small,
.l-imgL .l-img.small {
    width: 100%;
  }
  .l-imgR .l-img {
    margin: 0 0 15px;
  }
  .fl-imgR .l-img,
.fl-imgL .l-img {
    float: none;
    margin: 0 0 15px;
    text-align: center;
    width: 100%;
  }
  .fl-imgR .l-img.small,
.fl-imgL .l-img.small {
    width: 100%;
  }
  /*list SP*/
  .list-disc li:before {
    top: 10px;
  }
  /*table SP*/
  .table-scroll {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .table-scroll:before {
    content: "※横にスクロールできます。";
    font-size: 13px;
    color: #F44336;
  }
  .table-scroll table {
    width: 800px;
  }
  /*btn-style SP*/
  .btn-flex {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .btn-style01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 17px;
    padding: 15px 20px;
    min-width: 0;
    position: relative;
    z-index: 1;
  }
  .btn-style01 i {
    margin-right: 15px;
  }
  .btn-style01.btn-small {
    font-size: 17px;
    padding: 15px 20px;
    min-width: 0;
  }
  .btn-style02 {
    font-size: 17px;
    padding: 15px 20px;
    min-width: 0;
  }
  .btn-style02 i {
    margin-right: 15px;
  }
  .btn-dl {
    font-size: 17px;
    padding: 15px 20px;
    min-width: 0;
  }
  .btn-dl i {
    margin-left: 15px;
  }
  /*サポステにご連絡ください！ SP*/
  .bear-ttl {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 18px;
    padding: 0;
    min-height: 80px;
  }
  .bear-ttl:before, .bear-ttl:after {
    content: "";
    display: block;
    width: 63px;
    height: 55px;
    -webkit-box-flex: 63px;
        -ms-flex: 63px 0 0px;
            flex: 63px 0 0;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .bear-ttl.bear-full {
    margin-bottom: 30px;
  }
  .bear-ttl.bear-full:before, .bear-ttl.bear-full:after {
    width: 63px;
    height: 75px;
  }
  .contact-layout {
    padding: 30px 20px;
    display: block;
  }
  .contact-layout .l-btn {
    width: 100%;
    margin: 20px 0 0;
  }
  /*------------
  サポステとは SP
  --------------*/
  .about-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 15px 0;
  }
  .about-list li {
    font-size: 16px;
    width: 43vw;
    height: 43vw;
  }
  .about-list li:nth-child(even) {
    margin: 0;
  }
  .box-style01 {
    font-size: 14px;
    padding: 30px 20px;
  }
  .box-style01 .box-ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .box-style01 .box-ttl .big {
    display: block;
    font-size: 22px;
    margin-top: 10px;
  }
  .box-style01 .box-ttl .small {
    margin-top: 10px;
    font-size: 14px;
  }
  .box-style01 .box-ttl02 {
    font-size: 17px;
    margin-bottom: 15px;
  }
  .box-style01 .box-ttl03 {
    font-size: 17px;
    margin-bottom: 15px;
  }
  .box-style01 hr {
    margin: 30px 0;
  }
  .about-card {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    font-size: 14px;
  }
  .about-card .card-ttl {
    font-size: 17px;
  }
  /*------------
  数字で見るサポステ！ SP
  --------------*/
  .results-box {
    padding: 30px 20px;
  }
  .results-layout01 {
    display: block;
    max-width: 100%;
    margin: 0 auto 20px;
  }
  .results-layout01 .l-ttl {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .results-layout01 .l-num {
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 20px;
  }
  .results-layout01 .l-num:before {
    width: 142px;
    height: 146px;
    right: -15px;
    top: auto;
    bottom: -20px;
  }
  .results-layout01 .l-num img {
    height: 60px;
    width: auto;
  }
  .results-layout02 {
    display: block;
    margin: 0 auto 20px;
  }
  .results-layout02 .l-num {
    text-align: center;
    max-width: 284px;
    width: 100%;
    margin: 0 auto 20px;
  }
  .results-layout02 .l-img {
    width: 100%;
  }
  .results-layout03 {
    display: block;
  }
  .results-layout03 .l-num {
    margin: 0 auto 20px;
    max-width: 284px;
    width: 100%;
  }
  .results-layout03 .l-num:before {
    width: 92px;
    height: 97px;
    right: -10px;
    bottom: -10px;
  }
  .results-layout03 .l-img {
    margin: 0 0 20px;
  }
  .results-layout04 {
    display: block;
  }
  .results-layout04 .l-ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .results-layout04 .l-num {
    margin-bottom: 20px;
    text-align: center;
  }
  .results-layout04 .l-num img {
    height: 60px;
    width: auto;
  }
  .results-layout04 .l-txt {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
  }
  .results-layout05 {
    display: block;
  }
  .results-layout05 .l-ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .results-layout05 .l-num {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 20px;
    text-align: center;
  }
  .results-layout05 .l-num img {
    height: 60px;
    width: auto;
  }
  .results-layout05 .l-num:before {
    width: 68px;
    height: 87px;
    right: -30px;
    bottom: -10px;
    z-index: -1;
  }
  .results-layout05 .l-txt {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2/2/3/3;
  }
  /*------------
  広報ギャラリー SP
  --------------*/
  .aboutlogo-box {
    padding: 30px 20px;
  }
  .aboutlogo-box .box-ttl {
    font-size: 20px;
    margin-bottom: 25px;
  }
  .aboutlogo-img {
    text-align: center;
  }
  .aboutlogo-img figcaption {
    font-size: 16px;
    margin-top: 15px;
  }
  /*------------
  Q & A SP
  --------------*/
  .faq-style dt {
    margin: 0 0 20px;
    font-size: 18px;
  }
  .faq-style dt i {
    font-size: 40px;
    margin: 0 15px 0 0;
  }
  .faq-style dt .ttl {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .faq-style dd {
    font-size: 14px;
  }
  .faq-style dd + dt {
    margin-top: 25px;
    padding-top: 25px;
  }
  .faq-style .faq-catch {
    font-size: 18px;
  }
  .faq-style .faq-catch + p {
    margin-top: 5px;
  }
  .faq-img {
    margin-top: 15px;
    max-width: 100%;
  }
  /*------------
  全国のサポステ SP
  --------------*/
  .station-ttl {
    font-size: 22px;
    line-height: 1.4;
    margin: 0 0 25px;
  }
  .station-sub-ttl {
    margin: 0 0 25px;
  }
  /*------------
  全国のサポステ 詳細 SP
  --------------*/
  #station_detail .col2 > .item:nth-of-type(2) {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
  }
  #station_detail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /*------------
  教育機関のみなさまへ SP
  --------------*/
  .educational-catch {
    font-size: 21px;
    margin-bottom: 15px;
  }
  .educational-catch .small {
    font-size: 16px;
  }
  .educational-card {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .educational-card li {
    display: block;
  }
  .educational-card .card-img {
    margin: 0 auto 10px;
  }
  .educational-card .card-desc {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 14px;
    padding: 10px 0 0;
  }
  .educational-card .card-ttl {
    text-align: center;
  }
  /*------------
  全国サポステ優秀事例表彰
  --------------*/
  .commendation-ttl {
    text-align: center;
  }
  .commendation-ttl i img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 40px;
    height: 40px;
  }
  .commendation-ttl .ttl {
    font-size: 23px;
    margin-bottom: 5px;
  }
  /*------------
  サポステスタッフからメッセージ SP
  --------------*/
  .message-staff-intro {
    padding: 0 5vw;
  }
  .message-staff-layout {
    display: block;
    padding: 0 5vw;
  }
  .message-staff-layout .l-img {
    padding: 0;
    width: 100%;
    margin: 0 0 20px;
  }
  .message-staff-layout .l-img.small {
    width: 100%;
  }
  .message-staff-layout .l-desc {
    line-height: 1.7;
  }
  .message-staff-layout .l-desc p + p {
    margin-top: 30px;
  }
  .message-staff-layout .name {
    display: block;
  }
  .message-staff-layout.reverse .l-img {
    margin: 0 0 20px;
  }
  .message-staff-layout + .message-staff-layout {
    padding-top: 60px;
  }
  /*------------
  主な支援内容 SP
  -------------*/
  .yell-list-modal {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .yell-list-modal li {
    padding: 30px 60px 30px 20px;
    min-height: 0;
  }
  .yell-list-modal li:before {
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    right: 15px;
    bottom: 15px;
  }
  .yell-list-modal .list-catch {
    font-size: 14px;
    letter-spacing: -1px;
  }
  .yell-list-modal .list-ttl {
    font-size: 20px;
    line-height: 1.3;
  }
  .yell-list-modal .list-ttl .small {
    font-size: 17px;
  }
  .yell-layout .l-ttl {
    font-size: 23px;
  }
  .yell-layout .l-ttl .small {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .yell-layout .l-ttl02 {
    font-size: 18px;
    margin-bottom: 20px;
    padding: 0;
  }
  .box-advice {
    padding: 20px;
  }
  .box-advice .box-ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .box-advice i {
    margin-right: 15px;
    -webkit-box-flex: 50px;
        -ms-flex: 50px 0 0px;
            flex: 50px 0 0;
  }
  .modal-contents {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .modal-container {
    overflow: auto;
    border-radius: 0;
    padding: 90px 5% 30px;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    font-size: 14px;
  }
  .modal-close {
    font-size: 23px;
    line-height: 38px;
    width: 40px;
    height: 40px;
    position: fixed;
    right: auto;
    left: 10px;
    top: 10px;
  }
  .modal-overlay {
    display: none;
  }
  /*------------
  お問い合わせ　SP 
  --------------*/
  .contact-form table th {
    border: none;
    display: block;
    width: 100%;
    padding: 15px;
  }
  .contact-form table td {
    border: none;
    display: block;
    width: 100%;
    padding: 15px;
  }
  /*-----------------------------------------------------------
  common SP
  -----------------------------------------------------------*/
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .sp-tac {
    text-align: center !important;
  }
  .sp-tar {
    text-align: right !important;
  }
  .sp-tal {
    text-align: left !important;
  }
  .mbL {
    margin-bottom: 30px !important;
  }
  .sp-map {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
  }
  .sp-map iframe,
.sp-map object,
.sp-map embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

 /*az*/
.pickup-box {
  display: flex;
  align-items: center;
  border: 3px solid #8b4513;
  padding: 15px 20px;
  max-width: 900px;
  margin: 20px auto;
  background: #fff;
}

.pickup-logo {
  text-align: center;
  margin-right: 20px;
}

.pickup-logo img {
  width: 80px;
  height: auto;
}

.logo-text {
  display: block;
  font-size: 12px;
  margin-top: 5px;
}

.pickup-text {
  flex: 1;
  text-align: center;
}

.pickup-title {
  font-weight: bold;
  margin: 0 0 8px 0;
}

.pickup-main {
  margin: 0 0 10px 0;
  line-height: 1.6;
}

.pickup-link {
  color: #00f;
  font-weight: bold;
  text-decoration: none;
}

.pickup-link:hover {
  text-decoration: underline;
}
