@charset "utf-8";

:root {
  --font-m_plus: "M PLUS Rounded 1c", sans-serif;
  --font-barlow: "Barlow Condensed", sans-serif;
  --font-rajdhani: "Rajdhani", sans-serif;
}

* {
  box-sizing: border-box;
  font-feature-settings: "palt";
  line-height: 1;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: min(8rem, 80px);
  font-size: calc(100vw / 104);
}

body, h1, h2, h3, h4, h5, p {
  margin: 0;
}

body {
  font-family: var(--font-m_plus);
  color: var(--color-main);
  letter-spacing: -0.04em;
  font-weight: 400;
}

body.active {
  height: 100%;
  overflow: hidden;
}

p {
  text-align: justify;
}

img {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: bottom;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  transition: opacity .8s;
  color: inherit;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.6;
  }
}

a[href^="#!"] {
  pointer-events: none;
}

span {
  display: inline-block;
}

dl, dt, dd {
  all: unset;
  display: block;
}

button {
  all: unset;
  display: block;
}

table {
  border-collapse: collapse;
}

.sp_obj {
  display: none !important;
}

@media (max-width: 799px) {

  html {
    scroll-padding-top: 5rem;
    font-size: calc(100vw / 37.5);
  }

  .sp_obj {
    display: block !important;
  }
  
  .pc_obj {
    display: none !important;
  }
}

/* ----- common ----- */

.no_mt {
  margin-top: 0;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: min(8rem, 80px) 20px;
  position: relative;
}

h2.index_h2 {
  width: 100%;
  height: min(16.8rem, 168px);
  background: #004098;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(0.8rem, 8px);
  position: relative;
  letter-spacing: .1em;
}

h2.index_h2::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #4bb3f0;
  width: 100%;
  height: min(0.3rem, 3px);
  left: 0;
  bottom: 0;
  transform: translateY(-600%);
}

h2.index_h2 span {
  font-family: var(--font-rajdhani);
  font-size: min(4.0rem, 40px);
  color: #fff;
  transform: translateY(30%) scaleX(0.85);
}

h2.index_h2 small {
  display: block;
  margin-top: min(0.8rem, 8px);
  font-size: min(1.5rem, 15px);
  font-weight: 700;
  color: #4bb3f0;
  text-align: center;
  transform: scaleX(1.2);
}

@media (max-width: 799px) {
  .container {
    padding: 4rem 2rem;
  }
  
  h2.index_h2 {
    height: 14rem;
    gap: 0.4rem;
  }
  
  h2.index_h2::after {
    height: 0.3rem;
    transform: translateY(-400%);
  }
  
  h2.index_h2 span {
    font-size: 3.5rem;
    transform: translateY(30%) scaleX(0.8);
    letter-spacing: .14em;
  }
  
  h2.index_h2 small {
    margin-top: 0.6rem;
    font-size: 1.5rem;
  }
}

/* ----- header ----- */

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #66c1f6;
  color: #2270d1;
  z-index: 99;
}

header::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #8bd2fb;
  width: 100%;
  height: min(1rem, 10px);
  left: 0;
  bottom: 0;
}

header div.container {
  height: min(8rem, 80px);
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 a {
  display: block;
  width: min(4.5rem, 45px);
}

header nav.gnav ul.gnav_list {
  display: flex;
  align-items: center;
  gap: min(9.0rem, 90px);
}

header nav.gnav ul.gnav_list li.gnav_item a {
  display: block;
  width: fit-content;
  font-size: min(2.0rem, 20px);
  font-weight: 700;
  transition: all .4s;
}

@media (hover: hover) {
  header nav.gnav ul.gnav_list li.gnav_item a:hover {
    opacity: 1;
    color: #fff;
  }
}

@media (max-width: 799px) {
  
  header::after {
    height: 0.5rem;
  }
  
  header div.container {
    height: 5rem;
    padding: 0 1.2rem;
  }
  
  header h1 a {
    width: 3.2rem;
  }
  
  header nav.gnav ul.gnav_list {
    gap: 3.2rem;
  }
  
  header nav.gnav ul.gnav_list li.gnav_item a {
    font-size: 1.3rem;
  }
}

/* ----- main ----- */

main {
  padding-top: min(8rem, 80px);
}

@media (max-width: 799px) {
  main {
    padding-top: 5rem;
  }
}

/* ----- mv ----- */

main.index section.mv {
  background-color: #69c8fe;
  background-image: url(../img/bg_pattern_mv.png);
  background-size: min(5rem, 50px);
  background-position: center;
  background-repeat: repeat;
}

main.index section.mv div.mv_img {
  width: min(100rem, 1000px);
  margin: 0 auto;
}

@media (max-width: 799px) {
  main.index section.mv div.mv_img {
    width: 100%;
  }
}

/* ----- introduction ----- */

main.index section.introduction {
  background-color: #cfeaf9;
  background-image: url(../img/bg_pattern_introduction.png);
  background-size: min(5rem, 50px);
  background-position: center;
  background-repeat: repeat;
}

main.index section.introduction div.container {
  max-width: 100%;
  background-image: url(../img/bg_introduction.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

main.index section.introduction h2.introduction_ttl {
  width: min(30rem, 300px);
  margin: 0 auto;
}

main.index section.introduction p.introduction_txt {
  margin-top: min(6rem, 60px);
  display: flex;
  flex-direction: column;
  gap: min(2.0rem, 20px);
  color: #3d4659;
}

main.index section.introduction p.introduction_txt span {
  font-size: min(2.0rem, 20px);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

@media (max-width: 799px) {
  main.index section.introduction {
    background-size: 4rem;
  }
  
  main.index section.introduction div.container {
    max-width: none;
    width: 100%;
    height: 40.75em;
    background-image: url(../img/bg_introduction_sp.png);
    background-size: 100%;
  }
  
  main.index section.introduction h2.introduction_ttl {
    width: 20.8rem;
    margin: 0 auto;
  }
  
  main.index section.introduction p.introduction_txt {
    margin-top: 5rem;
    gap: 2rem;
  }
  
  main.index section.introduction p.introduction_txt span {
    font-size: 1.6rem;
    line-height: 1.6;
  }  
}

/* ----- schedule ----- */

main.index section.schedule {
  background-color: #afdbf6;
  background-image: url(../img/bg_pattern_schedule.png);
  background-size: min(5rem, 50px);
  background-position: center;
  background-repeat: repeat;
}

main.index section.schedule div.schedule_wrap {
  margin: 0 auto;
  width: min(63rem, 630px);
  display: flex;
  flex-direction: column;
  gap: min(5.5rem, 55px);
}

main.index section.schedule div.schedule_wrap div.schedule_item {
  width: 100%;
  background-color: #fff;
  padding: min(4rem, 40px) 0;
}

main.index section.schedule div.schedule_wrap div.schedule_item:first-of-type, 
main.index section.schedule div.schedule_wrap div.schedule_item:last-of-type {
  padding-bottom: 0;
}

main.index section.schedule div.schedule_wrap div.schedule_item h3.schedule_ttl {
  width: min(16.8rem, 168px);
  margin: 0 auto;
}

main.index section.schedule div.schedule_wrap div.schedule_item h4.schedule_subttl {
  margin-top: min(6rem, 60px);
  font-size: min(2.4rem, 24px);
  font-weight: 700;
  text-align: center;
  color: #202f4e;
}

main.index section.schedule div.schedule_wrap div.schedule_item h4.schedule_subttl span {
  display: block;
  font-size: min(1.6rem, 16px);
  font-weight: 600;
  text-align: center;
  color: #696c72;
  margin-top: min(2rem, 20px);
}

main.index section.schedule div.schedule_wrap div.schedule_item p.schedule_txt {
  margin-top: min(4rem, 40px);
  font-size: min(2.0rem, 20px);
  font-weight: 600;
  text-align: center;
  color: #696c72;
}

main.index section.schedule div.schedule_wrap div.schedule_item p.schedule_txt small {
  display: block; 
  font-size: min(1.4rem, 14px);
  font-weight: 700;
  color: #80d3d6;
  margin-bottom: min(1.5rem, 15px);
}

main.index section.schedule div.schedule_wrap div.schedule_item a.schedule_link {
  display: block;
  margin-top: min(6rem, 60px);
  width: 100%;
  height: min(8rem, 80px);
  background-color: #004098;
  font-size: min(2.4rem, 24px);
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all .4s;
}


main.index section.schedule div.schedule_wrap div.schedule_item:first-of-type a.schedule_link {
font-size: min(2.2rem, 22px);
}

@media (hover: hover) {
  main.index section.schedule div.schedule_wrap div.schedule_item a.schedule_link:hover {
    opacity: 1;
    background-color: #0065ef;
  }
}

main.index section.schedule div.schedule_wrap div.schedule_item a.schedule_link::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/icon_arrow_white.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: min(1.7rem, 17px);
  height: min(2.5rem, 25px);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  transform: translateX(-200%);
}

main.index section.schedule  div.attention_area {
  margin: min(10rem, 100px) auto 0;
  width: min(63rem, 630px);
  background-color: #052f5b;
  padding: min(5.0rem, 50px) min(4rem, 40px);
  color: #fff;
}

main.index section.schedule  h3.attention_ttl {
  font-size: min(3.0rem, 30px);
  font-weight: 700;
  text-align: center;
}

main.index section.schedule  p.attention_note {
  margin-top: min(5rem, 50px);
  font-size: min(1.4rem, 14px);
  font-weight: 500;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
  color: #e6e6e6;
}

main.index section.schedule p.attention_note + p.attention_note {
  margin-top: min(2rem, 20px);
}

@media (max-width: 799px) {
  main.index section.schedule {
    background-size: 4rem;
  }
  
  main.index section.schedule div.schedule_wrap {
    width: 100%;
    gap: 4rem;
  }
  
  main.index section.schedule div.schedule_wrap div.schedule_item {
    padding: 2rem 0;
  }
  
  main.index section.schedule div.schedule_wrap div.schedule_item h3.schedule_ttl {
    width: 10.4rem;
  }
  
  main.index section.schedule div.schedule_wrap div.schedule_item h4.schedule_subttl {
    margin-top: 2.5rem;
    font-size: 1.6rem;
  }
  
  main.index section.schedule div.schedule_wrap div.schedule_item h4.schedule_subttl span {
    font-size: 1.2rem;
    margin-top: 1.0rem;
  }
  
  main.index section.schedule div.schedule_wrap div.schedule_item p.schedule_txt {
    margin-top: 2.4rem;
    font-size: 1.5rem;
  }

  main.index section.schedule div.schedule_wrap div.schedule_item p.schedule_txt span {
    font-size: 1.1rem;
  }
  
  main.index section.schedule div.schedule_wrap div.schedule_item p.schedule_txt small {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  main.index section.schedule div.schedule_wrap div.schedule_item a.schedule_link {
    margin-top: 3rem;
    height: 5.8rem;
    font-size: 1.8rem;
  }
		
		main.index section.schedule div.schedule_wrap div.schedule_item:first-of-type a.schedule_link {
	font-size: 1.6rem;
	text-align: center;
	line-height: 1.2;
}
  
  main.index section.schedule div.schedule_wrap div.schedule_item a.schedule_link::after {
    width: 1rem;
    height: 1.6rem;
    transform: translateX(-200%);
  }
  
  main.index section.schedule  div.attention_area {
    margin:5rem auto 0;
    width: 100%;
    padding: 2rem;
  }
  
  main.index section.schedule  h3.attention_ttl {
    font-size: 2rem;
  }
  
  main.index section.schedule  p.attention_note {
    margin-top: 2.5rem;
    font-size: 1rem;
    line-height: 1.4;
  }
  
  main.index section.schedule p.attention_note + p.attention_note {
    margin-top: 1rem;
  }
}

/* ----- goods ----- */

main.index section.goods {
  background-color: #69c8fe;
  background-image: url(../img/bg_pattern_goods.png);
  background-size: min(5rem, 50px);
  background-position: center;
  background-repeat: repeat;
}

main.index section.goods div.goods_wrap {
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(3rem, 30px);
}

main.index section.goods div.goods_wrap div.goods_item {
  background-color: #bae6ff;
  padding: min(1.5rem, 15px) min(1.5rem, 15px) min(2.0rem, 20px);
  position: relative;
  color: #2c445d;
}

main.index section.goods div.goods_wrap div.goods_item span.icon_goods {
  position: absolute;
  width: min(8rem, 80px);
  height: min(8rem, 80px);
  border-radius: 50%;
  background-color: #79b0f3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(0.4rem, 4px);
  font-size: min(1.4rem, 14px);
  font-weight: 600;
  text-align: center;
  color: #fff;
  top: 0;
  left: 0;
  transform: translate(-35%, -35%);
}

main.index section.goods div.goods_wrap div.goods_item div.goods_img {
  width: 100%;
}

main.index section.goods div.goods_wrap div.goods_item h3.goods_ttl {
  margin-top: min(.8rem, 8px);
  min-height: min(3.5rem, 35px);
  font-size: min(1.4rem, 14px);
  font-weight: 700;
  line-height: 1.1;
}

main.index section.goods div.goods_wrap div.goods_item h3.goods_ttl small {
  font-size: min(1.0rem, 10px);
  font-weight: 500;
}

main.index section.goods div.goods_wrap div.goods_item div.price_wrap {
  margin-top: min(1rem, 10px);
  display: flex;
  justify-content: end;
  align-items: baseline;
  gap: min(0.8rem, 8px);
}

main.index section.goods div.goods_wrap div.goods_item div.price_wrap span.price {
  font-size: min(1.0rem, 10px);
  font-weight: 700;
}

main.index section.goods div.goods_wrap div.goods_item div.price_wrap span.price strong {
  font-size: min(1.4rem, 14px);
  font-weight: 700;
}

main.index section.goods p.goods_note {
  margin-top: min(2rem, 20px);
  font-size: min(1.4rem, 14px);
  text-align: right;
}

main.index section.goods div.attention_box {
  margin: min(10rem, 100px) auto 0;
  width: min(90rem, 900px);
  background-color: #052f5b;
  padding: min(6rem, 60px) min(5.0rem, 50px);
  color: #dadada;
}

main.index section.goods div.attention_box h3.limited_h3 {
  font-size: min(3.0rem, 30px);
  font-weight: 700;
  text-align: center;
  padding-bottom: min(2.5rem, 25px);
  border-bottom: min(0.3rem, 3px) solid #afe2ff;
  color: #fff;
}

main.index section.goods div.attention_box p.attention_txt {
  margin-top: min(3.6rem, 36px);
  font-size: min(1.8rem, 18px);
  font-weight: 500;
  line-height: 1.6;
}

main.index section.goods div.attention_box p.attention_highlight {
  margin-top: min(3.0rem, 30px);
  width: 100%;
  height: min(19rem, 190px);
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(2.4rem, 24px);
  color: #052f5b;
}

main.index section.goods div.attention_box p.attention_highlight span {
  font-size: min(2.2rem, 22px);
  font-weight: 700;
}

main.index section.goods div.attention_box p.attention_highlight span:last-of-type {
  text-indent: -0.25em;
}

main.index section.goods div.attention_box p.attention_highlight span strong {
  font-size: min(3.0rem, 30px);
  font-weight: 700;
}

main.index section.goods div.attention_box p.attention_note {
  margin-top: min(2.0rem, 20px);
  font-size: min(1.2rem, 12px);
  font-weight: 500;
  line-height: 1.4;
}

main.index section.goods div.attention_box p.attention_note + p.attention_note {
  margin-top: min(.4rem, 4px);
}

@media (max-width: 799px) {
  
  main.index section.goods div.container {
    padding: 5rem 2rem;
  }
  
  main.index section.goods div.goods_wrap {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
  
  main.index section.goods div.goods_wrap div.goods_item {
    display: block;
    padding: 1.6rem 1.6rem 2.0rem;
  }

  main.index section.goods div.goods_wrap div.goods_item span.icon_goods {
    width: 8rem;
    height: 8rem;
    font-size: 1.4rem;
    transform: translate(-20%, -16%);
    gap: 0.4rem;
  }
  
  main.index section.goods div.goods_wrap div.goods_item div.goods_img {
  }
  
  main.index section.goods div.goods_wrap div.goods_item h3.goods_ttl {
    margin-top: 1rem;
    min-height: auto;
    font-size: 1.4rem;
  }

  main.index section.goods div.goods_wrap div.goods_item h3.goods_ttl small {
    font-size: 1.1rem;
  }
  
  main.index section.goods div.goods_wrap div.goods_item div.price_wrap {
    margin-top: 2rem;
    gap: .8rem;
  }
  
  main.index section.goods div.goods_wrap div.goods_item div.price_wrap span.price {
    font-size: 1.1rem;
  }

  main.index section.goods p.goods_note {
    margin-top: 2rem;
    font-size: 1.2rem;
  }
  
  main.index section.goods div.goods_wrap div.goods_item div.price_wrap span.price strong {
    font-size: 1.5rem;
  }

  main.index section.goods div.attention_box {
    margin: 5rem auto 0;
    width: 100%;
    padding: 3.0rem 1.5rem;
  }
  
  main.index section.goods div.attention_box h3.limited_h3 {
    margin: 0 auto;
    width: 95%;
    font-size: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 0.25rem solid #afe2ff;
  }
  
  main.index section.goods div.attention_box p.attention_txt {
    margin: 3rem auto 0;
    width: 95%;
    font-size: 1.4rem;
  }
  
  main.index section.goods div.attention_box p.attention_highlight {
    margin-top: 1.6rem;
    height: 11.5rem;
    gap: 1rem;
  }
  
  main.index section.goods div.attention_box p.attention_highlight span {
    font-size: 1.2rem;
    font-weight: 700;
  }
  
  main.index section.goods div.attention_box p.attention_highlight span:last-of-type {
    text-indent: -0.25em;
  }
  
  main.index section.goods div.attention_box p.attention_highlight span strong {
    font-size: 1.8rem;
  }
  
  main.index section.goods div.attention_box p.attention_note {
    margin: 2.5rem auto 0;
    width: 95%;
    font-size: .9rem;
    line-height: 1.4;
    padding-left: 1em;
    text-indent: -1em;
    letter-spacing: -0.06em;
  }
  
  main.index section.goods div.attention_box p.attention_note + p.attention_note {
    margin-top: min(.2rem, 2px);
  }
}

/* ----- novelty ----- */

main.index section.novelty {
  background-color: #def3ff;
  background-image: url(../img/bg_pattern_novelty.png);
  background-size: min(5rem, 50px);
  background-position: center;
  background-repeat: repeat;
}

main.index section.novelty div.container {
  max-width: 940px;
}

main.index section.novelty h2.index_h2 span {
  /* transform: translateY(5%); */
  transform: translateY(24%);
}

main.index section.novelty h2.index_h2 strong {
  display: inline-block;
  font-size: min(5.0rem, 50px);
  font-weight: 700;
  letter-spacing: 0em;
  transform: scaleX(.8) translateY(-1.0%);
}

main.index section.novelty h2.index_h2 small {
  margin-top: min(0.4rem, 4px);
}

main.index section.novelty p.novelty_lead {
  margin: 0 auto;
  font-size: min(1.8rem, 18px);
  font-weight: 700;
  line-height: 1.6;
  color: #282828;
  text-shadow: 0 0 min(1.0rem, 10px) #fff, 0 0 min(1.0rem, 10px) #fff, 0 0 min(1.0rem, 10px) #fff, 0 0 min(1.0rem, 10px) #fff, 0 0 min(1.0rem, 10px) #fff, 0 0 min(1.0rem, 10px) #fff, 0 0 min(1.0rem, 10px) #fff, 0 0 min(1.0rem, 10px) #fff,  0 0 min(1.0rem, 10px) #fff,  0 0 min(1.0rem, 10px) #fff;
}

main.index section.novelty div.novelty_image {
  margin: min(4rem, 40px) auto 0;
}

main.index section.novelty p.novelty_note {
  margin: min(2rem, 20px) auto 0;
}

main.index section.novelty p.novelty_note span {
  display: inline;
  font-size: min(1.4rem, 14px);
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 799px) {
  main.index section.novelty {
    background-size: 4rem;
  }
  
  main.index section.novelty h2.index_h2 span {
    transform: translateY(5%);
  }
  
  main.index section.novelty h2.index_h2 strong {
    font-size: 4.8rem;
    font-weight: 700;
    letter-spacing: .08em;
  }

  main.index section.novelty p.novelty_lead {
    margin: 0 auto;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #282828;
    text-shadow: 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff,  0 0 1rem #fff,  0 0 1rem #fff;
  }

  main.index section.novelty p.novelty_lead span {
    font-size: 1rem;
  }
  
  main.index section.novelty div.novelty_image {
    margin: 4rem auto 0;
  }
  
  main.index section.novelty p.novelty_note {
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }
  
  main.index section.novelty p.novelty_note span {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
  }  
}

/* ----- info ----- */

main.index section.info {
  background-color: #afe2ff;
}

main.index section.info a.info_btn {
  display: block;
  margin: 0 auto;
  width: min(60rem, 600px);
  height: min(7rem, 70px);
  background-color: #232426;
  font-size: min(2.4rem, 24px);
  font-weight: 700;
  color: #fff;
  border-radius: 99px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;  
  transition: all .4s;
}

@media (hover: hover) {
  main.index section.info a.info_btn:hover {
    background-color: #424242;
    opacity: 1;
  }
}

main.index section.info a.info_btn::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/icon_arrow_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: min(2.8rem, 28px);
  height: min(3.2rem, 32px);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  transform: translateX(-100%);
}

main.index section.info p.info_note {
  margin: min(4rem, 40px) auto 0;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: min(.8rem, 8px);
}

main.index section.info p.info_note span {
  font-size: min(1.4rem, 14px);
  font-weight: 500;
  color: #202020;
}

@media (max-width: 799px) {
  
  main.index section.info a.info_btn {
    margin: 0 auto;
    width: 32.4rem;
    height: 9rem;
    font-size: 1.8rem;
  }

  main.index section.info a.info_btn span {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
  }

  main.index section.info a.info_btn span img {
    width: 23rem;
  }
  
  main.index section.info a.info_btn::after {
    width: 1.1rem;
    height: 1.6rem;
    transform: translateX(-200%);
  }
  
  main.index section.info p.info_note {
    margin: 2.0rem auto 0;
    width: fit-content;
    gap: .2rem;
  }
  
  main.index section.info p.info_note span {
    font-size: 1rem;
    line-height: 1.3;
    padding-left: 1em;
    text-indent: -1em;
  }
}

/* ----- footer ----- */

footer {
  width: 100%;
  background-color: #004098;
}

footer div.container {
  height: min(15rem, 150px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

footer p.footer_txt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(1.0rem, 10px);
}

footer p.footer_txt span {
  font-size: min(1.2rem, 12px);
  color: #79b0f3;
}

@media (max-width: 799px) {
  
  footer div.container {
    height: 13rem;
  }

  footer p.footer_txt {
    display: flex;
    flex-direction: column;
    gap: .8rem;
  }
  
  footer p.footer_txt span {
    font-size: 0.9rem;
  }  
}

/* ----- move_external ----- */

main.move_external section.move_external {
  background-color: #69c8fe;
  background-image: url(../img/bg_pattern_move_external.png);
  background-size: min(5rem, 50px);
  background-position: center;
  background-repeat: repeat;
  height: calc(100vh - min(8rem, 80px) - min(22.077rem, 220.77px));
  min-height: min(68rem, 680px);
}

main.move_external section.move_external div.move_area {
  width: min(80rem, 800px);
  margin: 0 auto;
  padding: min(8rem, 80px) min(8rem, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(10rem, 100px);
  background-color: #fff;
  border-radius: min(2rem, 20px);
}

main.move_external section.move_external div.move_area p.move_txt {
  font-size: min(2.0rem, 20px);
  line-height: 1.6;
}

main.move_external section.move_external div.move_area a.move_link {
  margin: 0 auto;
  width: min(44rem, 440px);
  height: min(7.6rem, 76px);
  background-color: #fff;
  color: #79b0f3;
  border: min(.3rem, 3px) solid #79b0f3;
  border-radius: 99px;
  font-size: min(2.2rem, 22px);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all .4s;
}

main.move_external section.move_external div.move_area a.move_link::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/icon_arrow_blue.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: min(1.7rem, 17px);
  height: min(2.5rem, 25px);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  transform: translateX(-150%);
  transition: all .4s;
}

@media (hover: hover) {
  main.move_external section.move_external div.move_area a.move_link:hover {
    background-color: #79b0f3;
    color: #fff;
    opacity: 1;
  }

  main.move_external section.move_external div.move_area a.move_link:hover::after {
    background-image: url(../img/icon_arrow_white02.png);
  }
}

@media (max-width: 799px) {
  
  main.move_external section.move_external {
    background-size: 4rem;
    height: calc(100vh - 5rem - 16rem);
    min-height: 44rem;
  }

  main.move_external section.move_external div.move_area {
    width: 100%;
    padding: 4rem 1.5rem;
    gap: 4rem;
  }
  
  main.move_external section.move_external div.move_area p.move_txt {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  main.move_external section.move_external div.move_area p.move_txt span {
    display: inline;
  }
  
  main.move_external section.move_external div.move_area a.move_link {
    margin: 0;
    width: 100%;
    height: 7rem;
    font-size: 1.6rem;
  }
  
  main.move_external section.move_external div.move_area a.move_link::after {
    width: 1.4rem;
    height: 2.0rem;
    transform: translateX(-150%);
  }
}


