@charset "UTF-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
}
body {
  background-color: #fff;
  background-image: url(../img/bg-img.png);
  background-size: contain;
  font-family: "Zen Maru Gothic", "Helvetica", serif;
  font-weight: 700;
  font-size: 16px;
  font-style: normal;
  line-height: 1.7;
  margin: 0;
}

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

img {
  max-width: 100%;
}
a {
  text-decoration: none;
  transition: 0.2s;
  word-wrap:break-word;
}
a:hover {
  opacity: 0.7;
  transition: 0.2s;
}

ul {
  list-style: none;
}
.container {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.mb-1 {
  margin-bottom: 1em;
}
.mt-1 {
  margin-top: 1em;
}
.mt-2 {
  margin-top: 2em !important;
}
.mt-4 {
  margin-top: 4em !important;
}
.my-3 {
  margin-top: 3em;
  margin-bottom: 3em;
}

.anchor {
  padding: 60px 0;
}

.text-white {
  color: #fff;
}
.text-blue {
  color: #0068b7;
}
.text-red {
  color: #e60012;
}
.sub-text {
  font-size: 24px;
}
.image_pc {
  display: block;
}
.image_sp {
  display: none;
}
.f-14{
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .f-14_block{
    display: block;
  }
}


.top_text_block {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 4px 16px;
  background-color: #0068b7;
  z-index: 101;
}
.top_text_block .text_link {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: normal;
  text-decoration: underline;
  text-align: center;
}

.stt-lang-select.tr {
  display: none;
}

:root {
  --header-height: 100px;
}
#selectcity {
  scroll-margin-top: var(--header-height);}
/*========= ナビゲーションのためのCSS ===============*/

header {
  position: relative;
  z-index: 100;
}

#global-nav.m_fixed {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  transition: all 0.3s ease 0s;
  width: 100%;
  height: 100px;
  z-index: 10;
}

#global-nav.m_fixed a {
  color: #000;
}

.header_inner {
  position: relative;
  /* padding: 15px; */
}
.logo {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 15px;
}
.title {
  font-size: 2rem;
  font-weight: 600;
}
.hamburger_text {
  display: block;
}
.global-item.language_select {
  position: relative;
}
.global-item.language_select #text {
  position: relative;
  height: 40px;
  padding: 0.5em 2.4em 0.5em 1em;
  border: solid 1px #fff;
  border-radius: 4px;
  color: #fff;
}
.global-item.language_select #text::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  pointer-events: none;
  transform: translateY(calc(-50% - 1px)) rotate(-135deg);
}
#global-nav.m_fixed .global-item.language_select #text,
#global-nav.m_fixed .global-item.language_select #text::after {
  color: #000;
  border-color: #000;
}
.global-item.language_select #text.open:after {
  transform: translateY(calc(-50% + 2px)) rotate(45deg);
}
.global-item.language_select #custom_trans_bar {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  position: absolute;
  top: 44px;
  right: 0;
  width: 160px;
  padding: 1em;
  border: solid 1px #0068b7;
  border-radius: 4px;
  background: #fff;
}
.global-item.language_select #custom_trans_bar a {
  position: relative;
  width: 100%;
  margin: 0;
  padding-left: 16px;
  color: #0068b7;
  text-align: left;
  cursor: pointer;
}
.global-item.language_select #custom_trans_bar a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid;
  border-left: 2px solid;
  pointer-events: none;
  transform: translateY(calc(-50% + 1px)) rotate(135deg);
}
.global-item.language_select #custom_trans_bar a[data-stt-active] {
  color: #000;
  pointer-events: none;
}
.global-item.language_select #custom_trans_bar a[data-stt-active]::before {
  display: none;
}
.global-item.language_select #custom_trans_bar a:nth-of-type(n + 2) {
  margin-top: 4px;
}
@media only screen and (min-width: 769px) {
  .header_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    transition: all 0.3s ease 0s;
  }
  .logo {
    padding: 12px 30px;
  }
  .nav_list {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: right;
  }
  .nav_list li {
    display: inline-block;
    text-align: right;
    padding-left: 20px;
  }
  .nav_list li a {
    color: #fff;
    font-weight: 600;
  }
  .hamburger_text {
    display: none;
  }
} /* pc */

/*========= ボタンのためのCSS ===============*/

/* 申請ページ固定用 */
.btn-right-fixed {
  position: relative;
}
.btn-right-fixed a {
  background-color: #e50012;
  border-radius: 30px 0 0 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  color: #fff;
  font-size: 30px;
  line-height: 1.5;
  padding: 0.5em;
  position: fixed;
  right: 0;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  z-index: 3;
}

/* ページトップ */
.pagetop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 2;
}
.pagetop img {
  max-width: 80px;
}

/*========= タイトル系 ===============*/
h3 {
  font-size: 36px;
}
.title-subject {
  color: #0069b6;
  border-bottom: #80b3db dotted 6px;
  display: inline;
}
.title-subject-process {
  color: #e50012;
  border-bottom: #f28088 dotted 6px;
  display: inline;
}
.title-subject-gray {
  color: #000;
  border-bottom: #b2b2b2 dotted 6px;
  display: inline;
  font-size: 28px;
}
.tit-ribbon {
  box-sizing: border-box;
  font-size: 30px;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* ======== 白Ver ======== */
.title_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 50px;
  line-height: 50px;
}
.error-txt{
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .note_red{
    font-size: 12px;
    line-height: 1.5;
  }
  .error-txt{
    /* font-size: 16px; */
    font-size: 15px;
  }
}
.ntf_txt{
  font-size: 21px;
  margin: 10px 0;
}
.annotation{
  font-size: 20px;
  margin: 10px 0;
  color: #FEFF1B;
}
@media only screen and (max-width: 768px) {
  .ntf_txt{
    font-size: 17px;
  }
  .annotation{
    font-size: 16px;
  }
}
.ri-white {
  display: inline;
  position: relative;
  height: 100%;
  padding: 0 16px;
  color: #0068b7;
  background-color: #fff;
}
.ri-white:before,
.ri-white:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 1;
}
.ri-white:before {
  /*左端の山形*/
  top: 0;
  left: -19px;
  border-width: 25px 0px 25px 20px;
  border-color: #fff #fff #fff transparent;
  border-style: solid;
}
.ri-white:after {
  /*右端の山形*/
  top: 0;
  right: -19px;
  border-width: 25px 20px 25px 0px;
  border-color: #fff transparent #fff #fff;
  border-style: solid;
}
.tit_ribbon_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 40px;
}
.ribbon_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 2px 4px;
  background-color: #fff;
}
.ribbon_inner:before,
.ribbon_inner:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 1;
}
.ribbon_inner:before {
  /*左端の山形*/
  top: 0;
  left: -14px;
  border-width: 20px 0px 20px 15px;
  border-color: #fff #fff #fff transparent;
  border-style: solid;
}
.ribbon_inner:after {
  /*右端の山形*/
  top: 0;
  right: -14px;
  border-width: 20px 15px 20px 0px;
  border-color: #fff transparent #fff #fff;
  border-style: solid;
}
.ribbon_content {
  display: inline;
  position: relative;
  height: 100%;
  padding: 0 16px;
  font-size: 24px;
  line-height: 36px;
  color: #fff;
  background-color: #0068b7;
}
.ribbon_content:before,
.ribbon_content:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 2;
}
.ribbon_content:before {
  /*左端の山形*/
  top: 0;
  left: -13px;
  border-width: 18px 0px 18px 14px;
  border-color: #0068b7 #0068b7 #0068b7 transparent;
  border-style: solid;
}
.ribbon_content:after {
  /*右端の山形*/
  top: 0;
  right: -13px;
  border-width: 18px 14px 18px 0px;
  border-color: #0068b7 transparent #0068b7 #0068b7;
  border-style: solid;
}
/*  ======== 青Ver  ======== */
.ri-blue {
  display: inline;
  position: relative;
  height: 100%;
  padding: 0 16px;
  color: #fff;
  background-color: #0068b7;
}
.ri-blue:before,
.ri-blue:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 1;
}
.ri-blue:before {
  /*左端の山形*/
  top: 0;
  left: -19px;
  border-width: 25px 0px 25px 20px;
  border-color: #0068b7 #0068b7 #0068b7 transparent;
  border-style: solid;
}
.ri-blue:after {
  /*右端の山形*/
  top: 0;
  right: -19px;
  border-width: 25px 20px 25px 0px;
  border-color: #0068b7 transparent #0068b7 #0068b7;
  border-style: solid;
}
.ri-blue-02 {
  background: url(../img/b-belt-02.png);
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
/*========= コンテンツ =========*/
.slider {
  margin: 11em auto 50px;
}
.swiper {
  margin: 11em auto 50px;
}
.swiper-slide img {
  height: auto;
  width: 100%;
}
/* スライドの動き等速 */
.swiper > .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

#content00 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content00_inner {
  display: inline-block;
  position: relative;
  margin: 0 auto;
}
.prov-text {
  margin: -2em auto 2em;
  text-align: right;
  width: 90%;
}
#content00 h2 {
  font-size: 40px;
}
#content00 h2 br {
  display: none;
}
#content00 .text-blue {
  font-size: 16px;
  line-height: 2.2;
}
#content00 .float_img {
  position: absolute;
}
#content00 .fireworks01 {
  left: -180px;
  top: -90px;
  width: 160px;
  height: 160px;
}
#content00 .fireworks02 {
  right: -200px;
  top: 30px;
  width: 160px;
  height: 160px;
}
#content00 .kodomo01 {
  left: -140px;
  top: 90px;
  width: 120px;
  height: 120px;
}
#content00 .kodomo02 {
  right: -20px;
  top: 250px;
  width: 120px;
  height: 120px;
}
#content00 .kodomo03 {
  display: none;
}
#content00 .kodomo04 {
  right: -120px;
  top: 180px;
  width: 120px;
  height: 120px;
}
#content00 .kodomo05 {
  right: -100px;
  top: -70px;
  width: 120px;
  height: 120px;
}
#content00 .myakumyaku {
  left: -100px;
  top: 200px;
  width: 120px;
  height: 120px;
}
#content00 .myakumyaku img {
  width: 100%;
  object-fit: contain;
  vertical-align: bottom;
}
#content00 .myakumyaku p {
  font-size: 14px;
}
/* 見どころガイド スタイル */
.guide_img{
  width: 550px;
  margin: 210px auto 0 auto;
  display: block;
}
@media screen and ( max-width:767px) {
  .guide_img{
    width: 85%;
    margin: 110px auto 0 auto;
  }
}


.slider_block {
  position: relative;
  padding-top: 130px;
}
.slider_block .slick-dotted.slick-slider {
  margin-bottom: 60px;
}
.slider_block .slick-dots {
  bottom: -65px;
}
.slider_block .slider_text {
  position: absolute;
  width: 100%;
  font-size: 16px;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
}
.slider_block .slider_pc,
.slider_block .slider_tablet,
.slider_block .slider_sp {
    display: none;
}
@media screen and ( max-width:480px) {
  .slider_block .slider_sp {
    display: block;
  }
  .slider_block .slick-dots {
    bottom: -95px;
  }
  .slider_block .slider_text {
    bottom: -65px;
  }
}
@media screen and (min-width:481px) and ( max-width:767px) {
  .slider_block .slider_tablet {
    display: block;
  }
}
@media screen and (min-width:768px) {
  .slider_block .slider_pc {
    display: block;
  }
}
.slider_block .slider_pc .slider_item,
.slider_block .slider_tablet .slider_item,
.slider_block .slider_sp .slider_item {
    display: flex;
    justify-content: center;
    align-items: center;
}
.slider_block .slider_pc .slider_item img {
    width: calc(100% / 3);
}
.slider_block .slider_tablet .slider_item img {
    width: calc(100% / 2);
}
.slider_block .slider_sp .slider_item img {
    width: 100%;
}

.inner-wrap{
  margin: 0 auto;
  padding: 1em 0; 
  width: 768px;
}
#content01 {
  padding: 60px 0 0;
  /* padding: 10px 0 0; スライド実装用*/
}
#content01 .select_area_block {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
#content01 .form_box {
  position: relative;
  width: 360px;
  height: 50px;
}
#content01 .select_area_block select {
  position: relative;
  width: 100%;
  height: 100%;
  outline: solid 1px #0068b7;
  padding: 0 24px;
  font-weight: bold;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
#content01 .form_box:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid #0068b7;
  border-left: 3px solid #0068b7;
  pointer-events: none;
  transform: translateY(calc(-50% - 3px)) rotate(-135deg);
}
#content01 .container {
  margin: 10em auto 0;
}
.osakahu-wrap .bg-white-radius,
.target_block .bg-white-radius {
  padding: 2em;
}
.osakahu-tit,
.target_block .subject_heading_block h3 {
  position: relative;
  width: 100%;
  padding-left: 32px;
  text-align: left;
  font-size: 24px;
  color: #0068b7;
}
.target_block .subject_heading_block:nth-of-type(n + 2) {
  margin-top: 2em;
}
.osakahu-tit::before,
.target_block .subject_heading_block h3::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #0068b7;
}
.osakahu-wrap .subject_middle_text p,
.target_block .subject_middle_text p {
  font-size: 20px;
}
.osakahu-wrap .subject_border_block,
.target_block .subject_border_block,
.event-wrap .subject_border_block {
  padding: 2em;
  border: solid 3px #0068b7;
  border-radius: 20px;
  margin-top: 1em;
}
.osakahu-wrap .border_heading_box,
.target_block .border_heading_box,
.event-wrap .subject_border_block {
  color: #0068b7;
  font-size: 20px;
}
.text-black{
    color: #000;
    display: block;
}
.osakahu-wrap .border_heading_box ol,
.target_block .border_heading_box ol,
.event-wrap .subject_border_block ol {
  padding-left: 1em;
  text-align: left;
}
.osakahu-wrap .border_heading_box ol li,
.target_block .border_heading_box ol li,
.event-wrap .subject_border_block ol li{
  list-style: disc;
}
.osakahu-wrap .border_text_box,
.target_block .border_text_box {
  margin-top: 0;
  text-align: left;
}
.osakahu-wrap .border_text_box ul,
.target_block .border_text_box ul {
  padding-left: 1.5em;
}
.osakahu-wrap .border_text_box ul li,
.target_block .border_text_box ul li {
  list-style: disc;
}
.event-wrap .subject_border_block{
  margin: 1em auto 2em;
}

.pldwn_img{
  margin-top: 15px;
}

.target_block .border_heading_box ul {
  padding-left: 1.5em;
  text-align: left;
}
.target_block .border_heading_box ul li {
  list-style: disc;
}
.subject_small_text {
  margin-top: 1em;
  text-align: left;
}
#content02.each {
  padding-bottom: 6em;
}
#content03 .container {
  margin: 0 auto 10em;
}
section {
  box-sizing: border-box;
}
.each {
  background-color: #eef4fb;
  padding: 3em 0;
}
.each-wrap {
  margin: 3em 0;
}
.explanation{
  margin: 20px 0;
}

.bfr_explanation_list{
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .bfr_explanation_list{
    font-size: 19px;
  }
}

.explanation_list{
  max-width: 768px;
  margin: 2em auto 0 auto;
  text-align: left;
  position: relative;
  padding-left: 2em;
}
@media only screen and (max-width: 768px) {
  .explanation_list{
    max-width: 92%;
    padding-left: 1.5em;
  }
}

.explanation_list li:not(:last-child){
  margin-bottom: 2em;
  padding-bottom: 2em;
  background-image: linear-gradient(to right, #0068b7 3px, transparent 3px);
  background-size: 14px 3px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media only screen and (max-width: 768px) {
  .explanation_list li{
    padding: 2em 0 !important;
  }
}
.explanation_list li::before {
  content: "①";
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 19px;
}
.explanation_list li:nth-child(2)::before {
  content: "②";
}
.explanation_list li:nth-child(3)::before {
  content: "③";
}
@media only screen and (max-width: 768px) {
  .explanation_list li::before {
    font-size: 18px;
  }
}

.explanation_list span{
  font-size: 19px;
}
@media only screen and (max-width: 768px) {
  .explanation_list span{
    font-size: 18px;
  }
}

.explanation_underline{
  text-decoration: underline;
  color: #0068b7;
}

.kv {
  padding: 0;
}
.kv img {
  vertical-align: top;
}

.rp-block {
  background-color: #0068b7;
  position: relative;
  content: "";
  height: auto;
  position: relative;
  left: 50%;
  transform: translate(-50%);
}
.rp-block .container {
  padding: 2em 0 0;
}
.date_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.date_box img {
  width: 25px;
  margin: 0 20px;
  vertical-align: bottom;
}
.date_box .period {
  display: flex;
}
.period {
  font-size: 40px;
  margin: 0;
}
.period span {
  font-size: 60px;
  line-height: 1;
}
.date_box.sub .tit-ribbon {
  padding: 4px 36px;
  margin-right: 16px;
  font-size: 24px;
}
.date_box.sub img {
  width: 16px;
}
.period-small-txt {
  border-bottom: #80b3db dotted 6px;
  max-width: 768px;
  margin: 0 auto 24px;
  padding: 8px 0 20px;
}
.expo-period {
  font-size: 36px;
  margin: 0;
}
.expo-period span {
  font-size: 24px;
}

.call-centre {
  width: 768px;
  margin: 0 auto;
  padding: 3em 4em;
  background-color: #0068b7;
  border-radius: 40px;
  color: #fff;
}
.call-centre h3 {
  display: inline;
  position: relative;
  padding-left: 36px;
  font-size: 28px;
}
.call-centre h3 span {
  font-size: 24px;
}
.call-centre h3 img {
  position: absolute;
  top: 10px;
  left: 0;
  width: 32px;
  height: 32px;
}
.call-centre .call_number {
  font-size: 60px;
  color: #fff;
}
.call-centre hr {
  width: 100%;
  margin: 3em 0;
  border-bottom: #fff dotted 4px;
  display: block;
}
.call-centre .fax_box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  border: solid 2px #fff;
  border-radius: 24px;
  font-size: 20px;
}
.call-centre .fax_box a {
  margin-left: 8px;
  padding: 0 0.8em;
  color: #0068b7;
  border-radius: 30px;
  background-color: #fff;
}
.caution-call p {
  padding: 10px;
  color: #fff;
  font-size: 24px;
  border-radius: 30px;
  background-color: #e50012;
  margin: 0 auto 1em;
}
.caution-call p span {
  font-size: 18px;
}
.myakumyaku {
  max-width: 270px;
}
.bg-white-radius {
  width: 768px;
  margin: 0 auto;
  padding: 2em 0;
  background: #fff;
  border-radius: 20px;
}
.bg-whit-inner {
  padding: 2em;
}

.each-caution {
  margin: 0;
}
.pattern-img {
  margin: 2em 0;
}
.pattern-img img {
  width: 100%;
  max-width: 1000px;
}

.border-wrap {
  width: 100%;
  position: relative;
  overflow-x: clip;
  min-height: 380px;
}
.border-bot-circle {
  background: #0068b7;
  border-radius: 0 0 calc(50%) calc(50%);
  width: 130vw;
  position: relative;
  left: 50%;
  padding: 0 0 5em;
  transform: translateX(-50%);
}
.border-bot-circle-02 {
  background: #eef4fb;
  border-radius: 0 0 calc(50%) calc(50%);
  width: 180vw;
  position: relative;
  left: 50%;
  padding: 0 0 1em;
  transform: translateX(-50%);
}
.border-top-circle {
  position: relative;
  background: #eef4fb;
}
.border-top-circle::before {
  content: "";
  background: #eef4fb;
  border-radius: calc(50%) calc(50%) 0 0;
  width: 110vw;
  height: 150px;
  position: absolute;
  top: -150px;
  left: 50%;
  padding: 0em 0 0em;
  transform: translateX(-50%);
}
.border-top-circle2 {
  background: #0068b7;
  border-radius: calc(50%) calc(50%) 0 0;
  width: 130vw;
  position: relative;
  left: 50%;
  padding: 5em 0 4em;
  transform: translateX(-50%);
}
#content04 .text-blue {
  margin: 1em 0 2em;
  font-size: 20px;
}
#content04 .translation_text {
  display: block;
  width: 768px;
  padding: 0 2em;
  margin: 0 auto 2em;
}
#content04 .translation_text span {
  display: block;
  text-align: left;
}
#content04 .translation_text span:nth-of-type(n + 2) {
  margin-top: 1em;
}
.osaka_kosodate{
  margin-top: 100px;
  max-width: 680px;
  margin: 100px auto 0 auto;
}
.osaka_kosodate a img{
  width: 601px;
}
@media only screen and (max-width: 768px) {
  .osaka_kosodate{
    margin-top: 55px;
    max-width: 94vw;
  }
  .osaka_kosodate a img{
    width: 94vw;
  }
}
.osaka_kosodate-left{
  text-align: left;
  margin-bottom: 1em;
}

.osaka_kosodate-left a {
  color: #0068b7;
  font-size: 15px;
  margin-right: 0.5em;
  border-bottom: solid 1px #0068b7;
}
@media only screen and (max-width: 768px) {
  .osaka_kosodate-left a {
    font-size: 13px;
  }
}
.osaka_kosodate-left a::after {
  margin: 0 0 0 3px;
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
}
/* ------ footer ------ */
#footer {
  overflow-x: hidden;
  position: relative;
  padding-top: 10em;
}
#footer nav {
  display: flex;
  justify-content: center;
  width: 768px;
  margin: 0 auto;
}
#footer nav a {
  color: #fff;
}
#footer nav a:nth-of-type(n + 2) {
  margin-left: 1em;
}
#footer .footer_logo {
  margin: 1em auto 0;
  /* width: 360px; */
  text-align: center;
}
#footer .footer_logo img {
  max-width: 240px;
  width: 100%;
}
#footer .footer_copyright {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 1em auto 0;
  width: 768px;
  color: #fff;
}
#footer .footer_copyright .float {
  position: absolute;
  top: 0;
  right: 1em;
}
#footer .top_button {
  position: absolute;
  top: 10px;
  right: 2em;
  width: 80px;
}
/* ===== 注意書き ===== */
.caution {
  display: flex;
  margin: 0 auto;
  max-width: 700px;
  position: relative;
  text-align: left;
}
.caution.mt-1 {
  margin-top: 1em;
}
.caution dd {
  margin: 0;
  position: absolute;
  top: 6px;
  left: 0;
  width: 32px;
}
.caution h4 {
  color: #e50012;
  font-size: 24px;
  margin: 0;
}
.caution dt {
  padding-left: 40px;
  position: relative;
}

.bg-gray {
  background-color: #eaeef1;
  padding: 1em 1em;
}
.caution-black {
  display: flex;
  margin: 1em auto;
  max-width: 1000px;
  position: relative;
  text-align: left;
}
.caution-black dd {
  margin: 0;
  position: absolute;
  top: 2px;
  left: 0;
  width: 24px;
}
.caution-black dd img {
  width: 34px;
}
.caution-black h4 {
  color: #000;
  font-size: 24px;
  margin: 0;
}
.caution-black dt {
  padding-left: 32px;
  position: relative;
}
.document_text {
  padding: 2em 4em;
}
.document_text ul li {
  position: relative;
  text-align: left;
  padding-left: 32px;
}
.document_text li:nth-of-type(n + 2) {
  margin-top: 1em;
}
.document_text li img {
  position: absolute;
  top: 2px;
  left: 0;
  width: 24px;
}
.document_text .link_box {
  display: flex;
  justify-content: center;
  margin-top: 2em;
}
.document_text .circle_link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 320px;
  height: 50px;
  color: #000;
  font-size: 20px;
  border: solid 2px #000;
  border-radius: 30px;
  cursor: pointer;
}
.document_text .circle_link:after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid #000;
  border-left: 3px solid #000;
  pointer-events: none;
  transform: translateY(calc(-50% - -3px)) rotate(45deg);
  transition: all 0.6s;
}
.document_text .circle_link.open:after {
  transform: translateY(calc(-50% - 3px)) rotate(-135deg);
  transition: all 0.6s;
}
.caution_red_box {
  margin-top: 1em;
  padding: 1em 4em;
}
.caution_red_box .head_text {
  position: relative;
  padding-left: 40px;
  font-size: 24px;
  text-align: left;
  color: #e50012;
}
.caution_red_box .head_text img {
  position: absolute;
  top: 4px;
  left: 0;
  width: 32px;
}
.caution_red_box .red_text {
  text-align: left;
  color: #e50012;
  padding-left: 2em;
}
.document_image_box {
  padding: 0 4em;
}
.document_image_box > span {
  display: block;
  width: 100%;
  text-align: left;
}
.document_image_box .example_image_block:nth-of-type(n + 2) {
  margin-top: 2em;
}
.example_image_block.pattern01 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.example_image_block.pattern01 .image_box {
  width: 320px;
}
.example_image_block.pattern01 .image_box p {
  font-size: 14px;
}
.example_image_block.pattern02 {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
}
.example_image_block.pattern02 h4 {
  position: relative;
  width: 100%;
  padding-left: 32px;
  text-align: left;
  font-size: 24px;
  color: #0068b7;
}
.example_image_block.pattern02 h4 a,
.example_image_block.pattern02 h4 a:link,
.example_image_block.pattern02 h4 a:visited {
  color: #0068b7;
}
.example_image_block.pattern02 h4 a {
  border-bottom: solid 1px #0068b7;
}
.example_image_block.pattern02 h4 a::after {
  margin: 0 0 0 3px;
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
}
.example_image_block.pattern02 h4 a span {
  background-color: transparent;
  padding: 0;
}
.example_image_block.pattern02 h4 a span img {
  width: 20px;
  height: 20px;
  margin: 0;
}
.example_image_block.pattern02 h4::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #0068b7;
}
.example_image_block.pattern02 h4 span {
  margin-left: 8px;
  padding: 0 0.8em 0 0.4em;
  color: #fff;
  font-size: 20px;
  border-radius: 30px;
  background-color: #e50012;
}
.example_image_block.pattern02 p {
  padding-left: 32px;
  text-align: left;
}
.example_image_block.pattern02 img {
  max-width: 480px;
}
.example_image_block.pattern02 strong {
  position: relative;
  padding-left: 32px;
  text-align: left;
  font-size: 24px;
  color: #e50012;
}
.example_image_block.pattern02 strong::before {
  content: "+";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  color: #fff;
  font-size: 24px;
  top: 6px;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #e50012;
}
.marker_yellow {
  background-color: #ffff00;
}
hr {
  width: 100%;
  margin: 4em 0;
  border-bottom: #0068b7 dotted 4px;
  display: block;
}
.example_image_block.pattern03 strong {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 0.2em;
  padding-left: 40px;
  text-align: left;
  font-size: 24px;
  color: #e50012;
}
.example_image_block.pattern03 strong img {
  position: absolute;
  top: 6px;
  left: 0;
  width: 32px;
}
.example_image_block.pattern03 p {
  padding-left: 2em;
  text-align: left;
}
.example_image_block.pattern03 > ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 1em;
}
.example_image_block.pattern03 > ul li {
  position: relative;
  padding: 0 1em 0 24px;
  text-align: left;
  font-size: 20px;
  color: #0068b7;
}
.example_image_block.pattern03 ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #0068b7;
}
.example_image_block.pattern03 div {
  background-color: #eaeef1;
  margin-top: 1em;
  padding: 1em 1.6em;
}
.example_image_block.pattern03 div h5 {
  display: block;
  position: relative;
  width: 100%;
  padding-left: 24px;
  text-align: left;
  font-size: 18px;
}
.example_image_block.pattern03 div h5::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #000;
}
.example_image_block.pattern03 div p {
  display: block;
  width: 100%;
  padding-left: 0;
  text-align: left;
  font-size: 14px;
}
.example_image_block.pattern03 div .example_text_box {
  position: relative;
  padding-left: 32px;
}
.example_image_block.pattern03 div .example_text_box span {
  position: absolute;
  top: 0;
  left: 0;
}
.example_image_block.pattern03 div .images_box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.example_image_block.pattern03 div .images_box > div {
  width: 50%;
  margin: 0;
  padding: 0;
}
.example_image_block.pattern03 div .images_box > div p span {
  padding: 0 1em;
  border-radius: 20px;
  color: #fff;
  background-color: #e50012;
}
.example_image_block.pattern03 div .images_box > div p {
  margin-bottom: 1em;
}
.example_image_block.pattern03 div .images_box > div ul {
  padding: 0 1em;
}
.example_image_block.pattern03 div .images_box > div ul li {
  list-style-type: disc;
  text-align: left;
  font-size: 12px;
}
#content03 {
  padding-top: 0;
}
/* 右三角形 */
.triangle-right {
  margin: 0 0.5em;
  max-width: 25px;
}
.subject-icon {
  margin: 0 20px 0 10px;
  max-width: 45px;
}

/* ボタン */
.btn-block a {
  display: block;
  margin: 1em 0;
}
.btn {
  display: inline-block;
  padding: 1em 3em;
  background-color: #00b900; /* 背景色 */
  box-shadow: 0 5px 0 #007e00; /* 影の太さ・色 */
  border-radius: 60px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none; /* 文字の下線を消す */
}
.guideline {
  background-image: linear-gradient(to right, #ccc, #ccc 2px, transparent 2px);
  background-size: 4px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
  padding: 1em 0;
}

#content02 .guideline {
  background-image: linear-gradient(to right, #ccc, #ccc 2px, transparent 2px);
  background-size: 4px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
  padding: 2em 0;
}

.txt-guidebook{
  margin: 0 auto 70px auto;
}
.txt-guidebook p{
  font-size: 24px;
}
.txt-guidebook p span::after{
  margin: 0 0 0 3px;
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
}
.txt-guidebook p span{
  border-bottom: 3px solid #0068b7;
}
@media only screen and (max-width: 768px) {
  .txt-guidebook{
    margin: 0 auto 50px auto;
  }
  .txt-guidebook p{
    font-size: 14px;
  }
  .txt-guidebook p span{
    border-bottom: 2px solid #0068b7;
  }
}

.faq-btn-block,
.relation-btn-block {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 10em;
}
.relation-btn-block {
  margin-bottom: 0;
}
.faq-btn-block a,
.relation-btn-block a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 60px;
  border: solid 3px #e60012;
  border-radius: 40px;
  background: #fff;
  font-size: 20px;
  color: #e60012;
}
.flow-wrap {
  width: 768px;
  padding: 2em;
  background-color: #fff;
  border-radius: 20px;
  margin: 2em auto 4em;
  max-width: 1200px;
}
.flow-innner {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 800px;
  padding: 1em;
  width: 100%;
}
.flow-flex,
.flow-flex-last {
  align-items: center;
  display: flex;
  font-size: 20px;
  text-align: left;
}
.flow-flex-last {
  font-size: 24px;
  justify-content: center;
}
.flow_text p{
  max-width: 490px;
  width: 100%;
}
.flow-list-img img {
  max-width: 100px;
  height: auto;
  margin-right: 20px;
  width: 100%;
  vertical-align: bottom;
}
.flow-list-img.last {
  justify-content: space-between;
}
.flow-list-img.last img {
  max-width: 120px;
  height: auto;
  width: 100%;
}
.flow-last-txt{
  line-height: 120%;
  letter-spacing: -0.05em;
}
.no-img {
  max-width: 28px;
  height: 28px;
  margin-right: 20px;
  width: 100%;
  vertical-align: bottom;
}
.next-img {
  margin: 1em 0;
  max-width: 24px;
}
.expo-link,
.expo-link:link,
.expo-link:visited {
  color: #0068b7;
}
.expo-link {
  border-bottom: solid 1px #0068b7;
}
.expo-link::after {
  margin: 0 0 0 3px;
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
}
#content04 .text-blue a,
#content04 .text-blue a:link,
#content04 .text-blue a:visited {
  color: #0068b7;
}
#content04 .text-blue a {
  margin-right: 0.5em;
  border-bottom: solid 1px #0068b7;
}
#content04 .text-blue a::after {
  margin: 0 0 0 3px;
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
}

#content04 .text-blue a img {
  width: 20px;
  height: 20px;
  margin: 0px 4px;
}

#content04 .txt_kosodate{
  color: #0068b7;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  #content04 .txt_kosodate {
    font-size: 14px;
  }
}
.relation_link_block {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 2em;
}
.relation_link_block .relation_link_list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 768px;
}
.relation_link_block h3 {
  width: 100%;
  font-size: 20px;
}
.relation_link_block .relation_link_list .list_item a,
.relation_link_block .relation_link_list .list_item a:link,
.relation_link_block .relation_link_list .list_item a:visited {
  color: #0068b7;
}
.relation_link_block .relation_link_list .list_item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  height: 50px;
  padding: 0 0.25em;
}
.relation_link_block .relation_link_list.other .list_item {
  width: 100%;
}
#nopage .middle_text_block {
  font-size: 24px;
}
#nopage .nopage_img_block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4em;
}
.nopage_image.box {
  width: 768px;
}
/* ===== プルダウン ===== */
.target_block .item {
  display: none;
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
}
.target_block .item > div {
  display: none;
}
.target_block .item .bg-white-radius > .subject_small_text{
  display: block;
}
.form-control {
  border: 2px solid #0068b7;
  border-radius: 8px;
  font-family: "Zen Maru Gothic", "Helvetica", serif;
  font-size: 18px;
  max-width: 700px;
  padding: 10px;
  width: 100%;
}
.select-wrap {
  margin: 3em auto;
  max-width: 700px;
  position: relative;
  width: 100%;
}
.terms {
  border: 2px solid #0068b7;
  border-radius: 18px;
  margin: 1em 0;
  padding: 1em;
}
.terms ol {
  color: #0069b6;
  list-style-type: disc;
  text-align: left;
}

/* ===== FAQ ===== */
.main-title-faq {
  overflow-x: hidden;
  margin-bottom: 5em;
}
.main-title-faq .title-faq-inner {
  background: #e60012;
  border-radius: 0 0 calc(50%) calc(50%);
  width: 130vw;
  position: relative;
  left: 50%;
  padding: 8em 0 4em;
  transform: translateX(-50%);
}
.main-title-faq h1 {
  color: #fff;
  font-size: 3em;
  margin: 0;
}

.qa-wrap {
  margin: 3em 0 6em;
}
.qa-inner {
  max-width: 1200px;
  margin: 0 auto;
  /* margin-bottom: 5px; */
  border-bottom: 2px solid #d6dde3;
}

.qa-inner summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 5em;
  color: #333333;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
}

.qa-inner summary::before,
.qa-inner .a-txt::before {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: 0.3em;
  left: 1em;
  line-height: 44px;
  font-weight: 600;
  font-size: 1.3em;
  height: 48px;
  width: 48px;
}

.qa-inner summary::before {
  background-color: #0068b7;
  color: #fff;
  content: "Q";
}

.qa-inner summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #333333b3;
  border-right: 3px solid #333333b3;
  content: "";
  transition: transform 0.5s;
}

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

.qa-inner .a-txt {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1em 2em 1em 5em;
  color: #333;
  transition: transform 0.5s, opacity 0.5s;
}

.qa-inner[open] .a-txt {
  transform: none;
  opacity: 1;
}

.qa-inner .a-txt::before {
  background-color: #e50012;
  color: #fff;
  content: "A";
}
.a-txt p {
  text-align: left;
}

/* ===== footer ===== */
footer {
  background-color: #0068b7;
  border-radius: 80% 80% 0 0;
  color: #fff;
  padding: 1em 0;
}
footer img {
  max-width: 240px;
}
footer ul {
  display: flex;
  justify-content: center;
}
footer ul li {
  margin: 0 10px 0;
}
footer ul li a {
  color: #fff;
}
.copyright {
  text-align: center;
}

/***************************************
バナー4枚 スライド
****************************************/
.four-slide-items {
  max-width: 768px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 230px 0 0 0;
}

.four-slide-items img {
  width: 100%;
  object-fit: cover;
}

.four-slide-items .slick-slide {
  margin: 0 10px;
}

.four-slide-dots {
  text-align: center;
  position: relative;
  z-index: 999;
  top: -10px;
}

.four-slide-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-prev-img,
.slick-next-img {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  outline: none;
}

.slick-prev-img {
  left: 10px;
}

.slick-next-img {
  right: 10px;
}

.slick-prev-img img,
.slick-next-img img {
  width: 42px;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .four-slide-items {
    max-width: 650px;
    margin: 0 auto;
    padding: 100px 0 0 0;
  }

  .four-slide-items img {
    object-fit: cover;
  }

  .four-slide-items .slick-slide {
    margin: 0 5px;
  }

  .four-slide-dots {
    top: -19px;
    pointer-events: none;
  }

  .slick-prev-img,
  .slick-next-img {
    top: 69%;
    z-index: 10;
    padding: 0;
  }

  .slick-prev-img {
    left: 4px;
  }

  .slick-next-img {
    right: 4px;
  }

  .slick-prev-img img,
  .slick-next-img img {
    width: 32px;
  }
}

/* ========== レスポンシブ ========== */
@media only screen and (max-width: 1080px) {
  .date_box .period {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .date_box img {
    margin: 20px;
    transform: rotate(90deg);
  }
  .date_box.sub .tit-ribbon {
    width: 100%;
    margin: 0;
  }
  .date_box.sub img {
    margin: 0 20px;
    transform: rotate(0);
  }
  .border-bot-circle {
    width: 160vw;
    padding: 0 0 4em;
  }
}
@media only screen and (max-width: 768px) {
  .image_pc {
    display: none;
  }
  .image_sp {
    display: block;
  }
  header {
    height: 60px;
    position: fixed;
    width: 100%;
  }
  .nav {
    position: fixed;
    right: -320px; /* 右から出てくる */
    top: 0;
    max-width: 320px; /* スマホに収まるサイズ */
    height: 100vh;
    padding-top: 60px;
    background-color: #0068b7;
    transition: all 0.6s;
    width: 100%;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    padding: 0 24px;
    cursor: pointer;
    z-index: 300;
  }
  .hamburger_icon {
    position: relative;
    width: 18px;
    height: 16px;
    overflow: hidden;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: center;
    padding: 0 14px;
  }
  .nav_item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
  }
  .nav_item a:hover {
    background-color: #eee;
  }
  .hamburger_border {
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background-color: #fff;
    transition: all 0.6s;
  }
  .m_scrolled .hamburger_border {
    background-color: #333;
  }
  .hamburger_border_top {
    top: 0;
  }
  .hamburger_border_center {
    top: 50%;
    transform: translateY(-50%);
  }
  .hamburger_border_bottom {
    bottom: 0;
  }
  .hamburger_text {
    padding-left: 8px;
    color: #fff;
    transition: all 0.6s;
  }
  .m_scrolled .hamburger_text {
    color: #333;
    transition: all 0.6s;
  }
  .nav-open .hamburger_text {
    color: #fff;
  }
  .hamburger_text .text_close,
  .nav-open .hamburger_text .text_open {
    display: block;
  }
  .hamburger_text .text_open,
  .nav-open .hamburger_text .text_close {
    display: none;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: 0.8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    background-color: #fff;
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    background-color: #fff;
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
  }
  .m_scrolled {
    left: 0;
    position: fixed;
    top: 0;
  }
  .m_scrolled .hamburger,
  .nav-open .hamburger {
    position: fixed;
  }
  .m_scrolled .hamburger {
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom-left-radius: 12px;
  }
  .nav-open .m_scrolled .hamburger {
    background-color: transparent;
  }
  #global-nav .inner .global-list {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .global-list.nav_list {
    text-align: center;
  }
  .global-list.nav_list li.global-item {
    margin-bottom: 10px;
  }
  .global-list.nav_list li a {
    color: #fff;
  }

  /* ========== コンテンツ ========== */

  .prov-text {
    margin: 0 auto 2em;
  }
  .swiper {
    margin: 7em auto 10px;
  }
  .period {
    font-size: 24px;
  }
  .period span {
    font-size: 36px;
  }
  .date_box img {
    width: 16px;
    margin: 8px;
  }
  .date_box.sub .tit-ribbon {
    padding: 2px 32px;
    font-size: 20px;
  }
  .date_box.sub img {
    width: 12px;
    margin: 0 12px 4px;
    transform: rotate(0);
    vertical-align: bottom;
  }
  .period-small-txt {
    border-bottom: #80b3db dotted 4px;
    max-width: 84vw;
    font-size: 14px;
  }
  .expo-period {
    font-size: 24px;
  }
  .expo-period span {
    font-size: 16px;
  }
  .border-bot-circle {
    width: 160vw;
    padding: 0 0 4em;
  }
  .btn-right-fixed a {
    align-items: center;
    display: flex;
    justify-content: center;
    top: unset;
    right: 50%;
    bottom: 10px;
    transform: translateX(50%);
    width: 90vw;
    height: 50px;
    border-radius: 10px;
    font-size: 20px;
    writing-mode: unset;
  }
  .tit-ribbon {
    font-size: 18px;
  }
  .rp-block {
    width: 100%;
  }
  #content00 {
    padding-top: 120px;
  }
  #content00 h2 {
    max-width: 180px;
    font-size: 24px;
    margin-bottom: 12px;
  }
  #content00 h2 br {
    display: unset;
  }
  #content00 .text-blue {
    max-width: 180px;
    font-size: 12px;
  }
  #content00 .float_img {
    position: absolute;
  }
  #content00 .fireworks01 {
    left: -80px;
    top: -60px;
    width: 80px;
    height: 80px;
  }
  #content00 .fireworks02 {
    right: -100px;
    top: 20px;
    width: 80px;
    height: 80px;
  }
  #content00 .kodomo01 {
    left: -80px;
    top: 40px;
    width: 80px;
    height: 80px;
  }
  #content00 .kodomo02 {
    left: 50%;
    top: unset;
    bottom: -80px;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
  }
  #content00 .kodomo03 {
    right: 50%;
    top: 240px;
    transform: translateX(60px);
    width: 120px;
    height: 120px;
  }
  #content00 .kodomo04 {
    right: -80px;
    top: 100px;
    width: 80px;
    height: 80px;
  }
  #content00 .kodomo05 {
    left: 160px;
    top: -60px;
    width: 80px;
    height: 80px;
  }
  #content00 .myakumyaku {
    left: -80px;
    top: 160px;
    width: 80px;
    height: 80px;
  }
  #content00 .myakumyaku img {
    width: 100%;
    object-fit: contain;
    vertical-align: bottom;
  }
  #content00 .myakumyaku p {
    font-size: 10px;
  }
  #content01 {
    padding-top: 50px;
  }
  #content01 .form_box {
    width: 320px;
  }
  #content01 .text-blue {
    /* width: 100vw; */
    margin: 0 auto;
    padding: 0 1em;
  }
  #content01 .container {
    max-width: 100%;
  }
  .title-subject {
    border-bottom: #80b3db dotted 4px;
    font-size: 24px;
  }
  .subject-icon {
    margin: 0 10px 0 4px;
    max-width: 28px;
  }
  .title-subject-process {
    border-bottom: #f28088 dotted 4px;
    font-size: 24px;
  }
  .caution h4 {
    font-size: 16px;
  }
  .caution dt {
    padding-left: 24px;
  }
  .caution dt p {
    font-size: 14px;
  }
  .caution dd {
    top: 4px;
    width: 20px;
  }
  .each-caution {
    padding: 0.5em 1em;
  }
  .inner-wrap{
    width: 94vw;
  }
  .bg-white-radius {
    width: 94vw;
    border-radius: 12px;
  }
  .title-subject-gray {
    border-bottom: #b2b2b2 dotted 4px;
    font-size: 20px;
  }
  .bg-whit-inner {
    padding: 1.4em 1em;
  }
  .caution-black dd {
    width: 20px;
  }
  .caution-black dt {
    padding-left: 24px;
    font-size: 14px;
  }
  .document_text {
    padding: 2em 1em;
  }
  .document_text li img {
    width: 20px;
  }
  .document_text ul li {
    padding-left: 24px;
    font-size: 14px;
  }
  .bg-white-radius {
    font-size: 14px;
  }
  .osakahu-wrap .bg-white-radius {
    padding: 1em;
  }
  .caution_red_box {
    padding: 1em;
  }
  .caution_red_box .head_text img {
    width: 24px;
  }
  .caution_red_box .head_text {
    padding-left: 32px;
    font-size: 18px;
  }
  .document_image_box {
    padding: 0 1em;
  }
  .example_image_block.pattern01 {
    flex-wrap: wrap;
  }
  .example_image_block.pattern01 .image_box {
    width: 100%;
  }
  .example_image_block.pattern01 .image_box:nth-of-type(n + 2) {
    margin-top: 1em;
  }
  .example_image_block.pattern01 .image_box img {
    max-width: 320px;
  }
  .example_image_block.pattern02 h4 {
    padding-left: 24px;
    font-size: 20px;
  }
  .example_image_block.pattern02 h4::before {
    top: 8px;
    width: 20px;
    height: 20px;
  }
  .example_image_block.pattern02 h4 span {
    margin-left: 4px;
    font-size: 12px;
  }
  .example_image_block.pattern02 img {
    margin: 1em auto 1em;
    max-width: 280px;
  }
  .example_image_block.pattern02 strong {
    padding-left: 24px;
    font-size: 20px;
  }
  .example_image_block.pattern02 strong::before {
    font-size: 16px;
    line-height: 16px;
    width: 20px;
    height: 20px;
  }
  .example_image_block.pattern03 strong {
    padding-left: 24px;
    font-size: 20px;
  }
  .example_image_block.pattern03 strong img {
    top: 8px;
    width: 20px;
  }
  .example_image_block.pattern03 div .images_box {
    padding: 0;
  }
  .example_image_block.pattern03 div .images_box > div {
    width: 100%;
  }
  .example_image_block.pattern03 div .images_box > div:nth-of-type(n + 2) {
    margin-top: 2em;
  }
  .example_image_block.pattern02 p {
    margin-top: 1em;
  }
  .flow-wrap {
    width: 94vw;
    padding: 1em;
  }
  .flow-innner {
    padding: 1em;
  }
  .flow-flex,
  .flow-flex-last {
    font-size: 14px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .flow-list-img {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5em;
  }
  .flow-list-img img {
    max-width: 100px;
    margin-right: 0;
  }

  .image_number {
    width: 20px;
  }
  .image_number .no-img {
    max-width: 20px;
    height: 20px;
    margin-right: 0;
  }
  .flow_text {
    padding-left: 0.5em;
    max-width: calc(100% - 20px);
  }
  .flow-flex-last {
    justify-content: center;
  }
  .flow-list-img.last img {
    max-width: 60px;
  }
  .flow-list-img.last2 {
    justify-content: flex-end;
  }
  .flow-list-img.last2 img {
    max-width: 60px;
  }
  .border-bot-circle-02 {
    width: 300vw;
    padding: 0 0 0.1em;
  }
  #content04 .text-blue {
    padding: 0 1em;
    font-size: 14px;
  }
  #content04 .translation_text {
    width: 100%;
    padding: 0 1em;
  }
  #content04 .translation_text span {
    font-size: 14px;
  }
  .call-centre {
    width: 94vw;
    padding: 1.5em 1em;
    border-radius: 20px;
  }
  .call-centre h3 {
    padding-left: 24px;
    font-size: 24px;
  }
  .call-centre h3 img {
    top: 10px;
    width: 20px;
    height: 20px;
  }
  .call-centre p {
    font-size: 14px;
  }
  .call-centre .call_number {
    font-size: 36px;
  }
  .call-centre hr {
    margin: 1.5em 0;
  }
  .call-centre h3 span {
    display: block;
    font-size: 16px;
  }
  .call-centre .fax_box {
    flex-wrap: wrap;
  }
  .call-centre .fax_box h4 {
    width: 100%;
    margin-bottom: 1em;
  }
  .call-centre .fax_box a {
    width: calc(50% - 0.5em);
    padding: 0;
    margin-left: 0;
    font-size: 16px;
  }
  .call-centre .fax_box a:nth-of-type(2) {
    margin-left: 1em;
  }
  .border-top-circle2 {
    width: 200vw;
    padding: 2em 0 4em;
  }

  .loop_wrap img {
    max-width: max-content;
    width: auto;
    height: 180px;
  }

  /* ------ footer ------ */
  #footer nav {
    width: 94vw;
    flex-wrap: wrap;
  }
  #footer nav a {
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
  #footer nav a:nth-of-type(n + 2) {
    margin: 0.5em 0 0;
  }
  #footer .footer_logo {
    margin: 1em auto 0;
    /* width: 300px; */
    text-align: center;
  }
  #footer .footer_copyright {
    flex-wrap: wrap;
    width: 94vw;
  }
  #footer .footer_copyright .float {
    width: 100%;
    text-align: center;
    position: relative;
    top: unset;
    right: unset;
  }
  #footer .top_button {
    top: 30px;
    width: 60px;
  }
  .each_sp {
    position: relative;
  }
  .each_sp .float_img.fireworks01,
  .each_sp .float_img.fireworks02 {
    position: absolute;
  }
  .each_sp .float_img.fireworks01 {
    left: 50%;
    top: -10px;
    transform: translateX(-180px);
    width: 80px;
    height: 80px;
  }
  .each_sp .float_img.fireworks02 {
    right: 50%;
    top: 100px;
    transform: translateX(170px);
    width: 80px;
    height: 80px;
  }
  .each_sp .text-blue {
    width: 94vw;
    margin: 0 auto 1em;
    padding: 0 1em;
    font-size: 14px;
  }
  .each_sp .myakumyaku {
    max-width: 120px;
  }
  .each_sp .myakumyaku_text {
    font-size: 12px;
  }
  .title_box {
    height: 40px;
    line-height: 40px;
  }
  .ri-blue:before {
    left: -14px;
    border-width: 20px 0px 20px 15px;
  }
  .ri-blue:after {
    right: -14px;
    border-width: 20px 15px 20px 0px;
  }
  .ri-white {
    padding: 0 12px;
  }
  .ri-white:before {
    left: -14px;
    border-width: 20px 0px 20px 15px;
  }
  .ri-white:after {
    right: -14px;
    border-width: 20px 15px 20px 0px;
  }
  .tit_ribbon_box {
    height: 32px;
  }
  .ribbon_inner {
    padding: 2px 4px;
  }
  .ribbon_inner:before,
  .ribbon_inner:after {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    z-index: 1;
  }
  .ribbon_inner:before {
    left: -14px;
    border-width: 16px 0px 16px 15px;
  }
  .ribbon_inner:after {
    right: -14px;
    border-width: 16px 15px 16px 0px;
  }
  .ribbon_content {
    padding: 0 16px;
    font-size: 20px;
    line-height: 28px;
  }
  .ribbon_content:before {
    left: -13px;
    border-width: 14px 0px 14px 14px;
  }
  .ribbon_content:after {
    right: -13px;
    border-width: 14px 14px 14px 0px;
  }
  .qa-inner summary {
    font-size: 14px;
  }
  .qa-inner summary::before,
  .qa-inner .a-txt::before {
    top: 0.4em;
    left: 1em;
    line-height: 1;
    font-size: 16px;
    height: 36px;
    width: 36px;
  }
  .qa-inner .a-txt {
    font-size: 14px;
  }
  .main-title-faq h1 {
    font-size: 2em;
  }
  .main-title-faq .title-faq-inner {
    width: 160vw;

    padding: 5em 0 4em;
  }

  .target_block .bg-white-radius {
    padding: 2em 1em;
  }
  .target_block .subject_heading_block h3 {
    padding-left: 24px;
    font-size: 20px;
  }
  .target_block .subject_heading_block h3::before {
    top: 8px;
    width: 20px;
    height: 20px;
  }
  .target_block .subject_middle_text p {
    font-size: 16px;
  }
  .target_block .subject_border_block {
    padding: 1em;
    border-radius: 10px;
  }
  .target_block .border_heading_box,
  .event-wrap .subject_border_block {
    font-size: 16px;
  }
  .relation_link_block h3 {
    font-size: 18px;
  }
  .relation_link_block .relation_link_list {
    width: 100%;
    padding: 0 1em;
  }
  .relation_link_block .relation_link_list .list_item {
    width: calc(100% / 3);
  }
  .relation_link_block .relation_link_list.other .list_item {
    height: auto;
    padding: 1em 0;
  }
  #nopage .middle_text_block {
    font-size: 16px;
  }
  .nopage_image.box {
    width: 100%;
    padding: 0 1em;
  }
  .global-item.language_select #custom_trans_bar {
    position: unset;
    margin: 4px auto 2em;
    width: 300px;
  }
  .global-item.language_select #custom_trans_bar a {
    position: relative;
    width: calc(50% - 1em);
    padding-left: 16px;
    color: #0068b7;
    text-align: left;
  }
  .global-item.language_select #custom_trans_bar a,
  .global-item.language_select #custom_trans_bar a:nth-of-type(n + 2) {
    margin-top: 8px;
  }

  .caution-call p {
    font-size: 24px;
    border-radius: 10px;
  }
  .caution-call p span {
    font-size: 16px;
  }
  .slider_block {
    padding-top: 70px;
}
}
@media (max-width: 499px) {
  .container {
    margin: 0 auto;
  }
  /*ナビゲーション*/
  #g-nav ul {
    padding: 5em 1em 4em;
  }

  .title-flex h3 {
    font-size: 24px;
    margin: 0 0 0 8px;
  }
  .title-flex img {
    width: 80px;
  }

}
@media (max-width: 359px) {
  .title-flex h3 {
    font-size: 20px;
    margin: 0 0 0 8px;
  }
}