@charset "utf-8";

/* 
=================================================================================

▼▼▼　テンプレJS用のCSS。不要なものは削除　▼▼▼

=================================================================================
*/

/* 
=================================================================================

▼▼▼　色　▼▼▼

=================================================================================
*/
/* ▼ basic ▼ */
.basic {
  color: #0C3061 !important;
}
.bg_basic {
  background: #0C3061 !important;
}
/* ▲ basic ▲ */
/* ▼ white ▼ */
.white {
  color: #fff !important;
}
.bg_white {
  background: #fff !important;
}
/* ▲ white ▲ */
/* ▼ cyan ▼ */
.cyan {
  color: #3F9ED0 !important;
}
.bg_cyan {
  background: #3F9ED0 !important;
}
/* ▲ cyan ▲ */
/* ▼ yellow ▼ */
.yellow {
  color: #FFE207 !important;
}
.bg_yellow {
  background: #FFE207 !important;
}
/* ▲ yellow ▲ */
/* ▼ pink ▼ */
.pink {
  color: #E7316E !important;
}
.bg_pink {
  background: #E7316E !important;
}
/* ▲ pink ▲ */
/* ▼ gray ▼ */
.gray {
  color: #999B9C !important;
}
.bg_gray {
  background: #999B9C !important;
}
/* ▲ gray ▲ */
/* ▼ light_gray ▼ */
.light_gray {
  color: #F4F4F3 !important;
}
.bg_light_gray {
  background: #F4F4F3 !important;
}
/* ▲ light_gray ▲ */
/* 
=================================================================================

▼▼▼　文字　▼▼▼

=================================================================================
*/
i {
  font-size: inherit;
  vertical-align: baseline;
}
.material-symbols-outlined {
  font-size: inherit;
  line-height: inherit;
  vertical-align: bottom;
}
html {
  color: #0C3061 !important;
  font-weight: normal !important;
  line-height: 2 !important;
  font-family: "fot-udkakugo-large-pr6n", sans-serif !important;
}
.go {
  font-family: "fot-udkakugo-large-pr6n", sans-serif !important;
}
.futu {
  font-family: "futura-pt", sans-serif;
}
.min {
  font-family: 'Noto Serif JP', serif;
}
.b {
  font-weight: bold;
}
.m {
  font-weight: 500;
}


/* 
=================================================================================

▼▼▼　header　▼▼▼

=================================================================================
*/
header {
  position: relative;
  width: 100%;
  z-index: 10;
   /* height: 10rem; */
  transition: 1s all;
}
header > .box {
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5rem;
  /* height: 10rem; */
}
ul.header01 {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 5rem;
}
ul.header01 > li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
ul.header01 > li.item01 {
  margin-right: auto;
}
ol.header02 {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 5rem;
  position: relative;
  padding-right: 5rem;
}
ol.header02:before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 2em;
  top: calc(50% - 1em);
  right: 0;
  background: #0C3061;
  pointer-events: none;
}
ol.header02 > li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
h1 a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  
}
/* .scroll_nav {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 0;
  z-index: 10;
  transition: 1s all;
  opacity: 0;
}
body.nav_active .scroll_nav {
  opacity: 1;
} */
.mv {
  position: relative;
}
.mv .contents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header > .box {
  background: rgba(255, 255, 255, 0);
  transition: 1s all;  
}
.nav_active header > .box {
  background: rgba(255, 255, 255, 0.8);

}
@media screen and (max-width: 768px) {/* SP用 */
  h1 img {
    width: 27rem;
  }
}
/* 
=================================================================================

▼▼▼　メガメニュー　▼▼▼

=================================================================================
*/
.megamenu {
  position: fixed;
  top: 10rem;
  left: 0;
  width: 100%;
  z-index: 11;
  　/* transform: translateX(-100vw); */
  transition: 1s all;
  /* opacity: 0; */
  padding-top: 5rem;
}
ol.header02 > li:hover .megamenu {
  transform: translateX(0);
  opacity: 1;
}
.top_area01_box02 {
  margin-top: 8rem;
}
.top_area01_box03 {
  margin-top: 4rem;
}
.megamenu > .box,
.top_area01_box02 > .box,
.top_area01_box03 > .box {
  padding: 4rem 8rem 8rem;
  background: #B2D8EC;
  border-radius: 2rem;
  filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.2));
}
/* ul.mega_area */
ul.mega_area {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 4rem;
}
ul.mega_area > li.item01 {
  margin-right: auto;
}
ul.mega_area > li.item02 {
}
ol.mega_list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1em;
}
ol.mega_list > li > a {
  position: relative;
  background: #fff;
  border-radius: 0.6rem;
  padding: 0.25em 1.5em 0.25em 2.5em;
  display: block;
}
ol.mega_list > li > a:before {
  content: "";
  position: absolute;
  top: 1em;
  left: 1.5em;
  width: .4em;
  height: .4em;
  background: #FFE207;
  border-radius: 50%;
  display: block;
}
ol.mega_list.category_list > li > a:before,
ol.header02 > li.list_01 ol.mega_list > li > a::before,
.top_area01_box02 ol.mega_list > li > a::before {
  background: #E7316E;
}
/* ▲ ul.mega_area ▲ */
/* 
=================================================================================

▼▼▼　ハンバーガーメニュー　▼▼▼

=================================================================================
*/



.hamburger_area {
  position: fixed;
  top: 1.5rem; /* ハンバーガーアイコンY座標位置 */
  right: 1.5rem; /* ハンバーガーアイコンX座標位置 */
  --hamburger-size: 13rem; /* ハンバーガーアイコンサイズ */
  --hamburger-line: 0.5; /* ハンバーガーアイコンの横線の長さ */
  z-index: 12;
}
.toggle_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 11;
  width: var(--hamburger-size);
  height: var(--hamburger-size);
  transition: all 0.5s;
  cursor: pointer;
  margin: 0 0 0 auto;
  background: #0C3061;
  border-radius: 50%;
}
.toggle_btn span {
  display: block;
  position: absolute;
  right: calc((99.99% - (var(--hamburger-size) * var(--hamburger-line))) / 2);
  width: calc(var(--hamburger-size) * var(--hamburger-line));
  height: 0;
  border-top: calc(var(--hamburger-size) * 0.05) solid #fff;
  background-color: #fff;
  transition: all 0.5s;
}
.toggle_btn span:nth-child(1) {
  transform: translateY(calc(var(--hamburger-size) * 0.2));
}
.toggle_btn span:nth-child(2) {
}
.toggle_btn span:nth-child(3) {
  transform: translateY(calc(var(--hamburger-size) * -0.2));
}
.open .toggle_btn {
  box-shadow: none;
  background: rgba(12,48,97,0);
}
.open .toggle_btn span {
  background-color: #0C3061;
  border-top: calc(var(--hamburger-size) * 0.05) solid #0C3061;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(0) rotate(-225deg);
  transform: translateY(0) rotate(-225deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(0) rotate(225deg);
  transform: translateY(0) rotate(225deg);
}

.gloval-nav {
  background-color: #C5E2F1;
  position: fixed;
  z-index: 11;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 18rem 7rem;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
  transform: translateX(100%);
  transition: 1s all;
  width: 58rem;
}

.gloval-nav {
  max-height: 100vh;
}
.gloval_box {
  overflow-y: auto;
  width: 100%;
  height: 100%;
}
.gloval-nav ul.gloval_ul {
}
.gloval-nav ul.gloval_ul > li {
opacity: 0;
transform: translateX(-200px);
transition:  transform .6s ease, opacity .2s ease;
border-top: 1px solid #8CC5E3;
}
.gloval-nav ul.gloval_ul > li:nth-child(2) {
transition-delay: .1s;
}
.gloval-nav ul.gloval_ul > li:nth-child(3) {
transition-delay: .2s;
}
.gloval-nav ul.gloval_ul > li:nth-child(4) {
transition-delay: .3s;
}
.gloval-nav ul.gloval_ul > li:nth-child(5) {
  transition-delay: .4s;
}
.gloval-nav ul.gloval_ul > li:nth-child(6) {
  transition-delay: .5s;
}
.gloval-nav ul.gloval_ul > li:nth-child(7) {
  transition-delay: .6s;
}
.gloval-nav ul.gloval_ul > li:nth-child(8) {
  transition-delay: .7s;
}
.gloval-nav ul.gloval_ul > li:nth-child(9) {
  transition-delay: .8s;
}
.gloval-nav ul.gloval_ul > li:nth-child(n+10) {
  transition-delay: .9s;
}

.gloval-nav ul.gloval_ul > li > a {
  display: block;
  transition: color .6s ease;
  padding: 2rem 1em 2rem 0;
}

/* open */
.open {
  overflow: hidden;
}
.open .gloval-nav {
visibility: visible;
transform: translateX(0);
transition: transform .6s;
}
.open .gloval-nav ul.gloval_ul > li {
opacity: 1;
transform: translateX(0);
transition:  transform 1s ease, opacity .9s ease;
}
.ac_btn {
  padding: 2rem 1em 2rem 0;
  display: block;
  cursor: pointer;
  position: relative;
}
.ac_btn::before {
  content: "＋";
  position: absolute;
  top: calc((100% - 1em) / 2);
  right: 0;
  pointer-events: none;
  color: #0C3061;
  line-height: 1;
  display: inline;
}
.ac_btn.active::before {
  content: "－";
}
ul.sub_gloval_ul {
  display: none;
}
ul.sub_gloval_ul > li {
  padding-left: 1em;
}
ul.sub_gloval_ul > li > a {
  color: #0C3061;
  padding: 2rem 1em 2rem 0;
  display: block;
}

/* ▼ btn01 ▼ */
.btn01 > * {
  border-radius: 50vmin;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em 2em;
  gap: 0.5em;
}
/* ▲ btn01 ▲ */

/* 
=================================================================================

▼▼▼　カスタム　▼▼▼

=================================================================================
*/

body {
  width: 100%;
}
h1, h2, h3, h4, h5 {
  line-height: 1.5;
}
.wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
main {
  padding: 0 0 12rem;
}
footer {
  padding: 7rem 0 4rem;
}

.role {
  transform: rotate(90deg);
}

section[class^="area"] {
  position: relative;
}
.tpbox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.tpbox img {
  vertical-align: baseline;
}
@media screen and (min-width: 769px) {
  /* PC用 */
  html {
    font-size: 10px;
  }
  .inner {
    position: relative;
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  /* SP用 */
  html {
    font-size: calc(10vw / 750 * 100); /* 最大値768px、文字サイズ10pxの場合 */
  }
  .inner {
    width: 100%;
    padding: 0 3rem;
    max-width: 100%;
    margin: auto;
  }
}
body {
  width: 100%;
  height: 100vh;
  background: radial-gradient(ellipse at center,  #ffffff 0%,#c5e2f1 50%,#ffffff 100%);
  background-size: 200% 200%;/*サイズを大きくひきのばす*/
  animation: bggradient 20s ease infinite;
}

@keyframes bggradient{
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
footer {
  background: #D9ECF6;
}
.mv {
}
.mv_box01 {
  position: relative;
}
.mv_box01 .ja {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  text-align: left;
  font-size: 4.8rem;
  line-height: 150%;
}
.roop_text_outer .en {
  pointer-events: none;
}
.roop_text_outer {
  pointer-events: none;
  text-align: center;
  position: relative;
  /* z-index: -1; */
}
.roop_text_outer .roop_text {
  font-size: 12vw;
  line-height: 0.8;
  display: inline-block;
  text-align: center;
  max-width: none;
  white-space: nowrap;
  animation: move01 backwards 30s infinite linear normal;
  color:rgba(255, 255, 255, 0.5);
}
@keyframes move01 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {/* SP用 */
  .area02 .bg02 .roop_text {
    font-size: 25vw;
  }
}
@media screen and (min-width: 769px) {/* PC用 */
  .w1260 {
    width: 126rem !important;
  }
}
.mv_box02 {
  position: relative;
}
.mv_scroll {
  position: absolute;
  top: 0;
  right: 10%;
  z-index: 1;
  transform: translateY(-50%);
}
/* ul.mv_box03_list */
ul.mv_box03_list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 6rem;
  flex-wrap: wrap;
}
ul.mv_box03_list > li {
  position: relative;
}
ul.mv_box03_list > li > .contents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15% 5% 0;
  text-align: center;
}
/* ▲ ul.mv_box03_list ▲ */
.slider02 .slick-list {
	overflow: visible;
}
.slider02 .slick-slide {
  padding: 0 1rem;
}
/* ul.top_class01 */
ul.top_class01 {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 5rem;
  flex-wrap: wrap;
}
ul.top_class01 > li {
  width: calc((99.99% - 5rem) / 2);
}
ul.top_class01 > li .comment {
  position: relative;
}
ul.top_class01 > li .comment .txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 4%;
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.top_class01 > li .contents {
  background: #fff;
  padding: 3rem;
  border-radius: 3rem;
}
/* ▲ ul.top_class01 ▲ */
.midashi01 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 769px) {/* PC用 */
  .w1400 {
    width: 140rem !important;
  }
}
.top_area01 > .box {
  background: #F4F4F3;
  border-radius: 12rem;
  padding: 8rem 0 10rem;
}
.slider03 .slick-list {
  overflow: visible;
}
.slider03 .slick-list .item {
  padding: 0 1.5rem;
  position: relative;
}
.slider03 .slick-list .item a {
  display: block;
  position: relative;
}
.slider03 .slick-list .item a .btn {
  border-radius: 50vmin;
  text-align: center;
  display: block;
  background: #fff;
  padding: 1em;
  transform: translate(-50%, 50%);
  position: absolute;
  bottom: 0;
  left: 50%;
  font-size: 2rem;
  width: 31rem;
}
.slider03 .slick-dots {
  position: relative;
  right: inherit;
  bottom: inherit;
  justify-content: center;
  margin-top: 6rem;
}
.slider03 + .slick_pause_outer {
  position: absolute;
  bottom: 0;
  right: calc(50% - 19rem);
}
.top_area01_box02 > .box .state,
.top_area01_box03 > .box .state {
  justify-content: center;
}
.btn_area01 {
  position: relative;
  margin-top: 12rem;
}
.btn_area01 > .box {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 3rem;
  padding: 5rem;
}
.btn_area01 > .roop_text_outer {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
/* ul.footer_class01 */
@media screen and (min-width: 769px) {/* PC用 */
  ul.footer_class01 {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 5rem;
    flex-wrap: wrap;
    padding-right: 5%;
  }
  ul.footer_class01 > li {
  }
}
/* ▲ ul.footer_class01 ▲ */
/* ul.footer_class02 */
ul.footer_class02 {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 5rem;
  flex-wrap: wrap;
}
ul.footer_class02 > li {
}
/* ▲ ul.footer_class02 ▲ */
/* ol.footer_class03 */
ol.footer_class03 {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 5rem;
  flex-wrap: wrap;
}
ol.footer_class03 > li {
}
/* ▲ ol.footer_class03 ▲ */
/* ul.news_index_list */
ul.news_index_list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 6rem 8.5rem;
  flex-wrap: wrap;
}
ul.news_index_list > li {
  width: calc((99.99% - 17rem) / 3);
}
ul.news_index_list > li .img {
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
}
ul.news_index_list > li .img:before {
    top: 0;
    left: 0;
    position: relative;
    width: 100%;
    padding-top: 70%;
    content: "";
    display: block;
}
ul.news_index_list > li .img > img {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ▲ ul.news_index_list ▲ */

/* ▼ news_index_title ▼ */
ul.news_index_title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
}
ul.news_index_title > li.item01 {
}
ul.news_index_title > li.item01 .txt {
  background: #E7316E;
  color: #fff;
  padding: .25em 1.5em;
  border-radius: 50vmin;
}
/* ▲ news_index_title ▲ */

/* ul.pankuzu_list */
ul.pankuzu_list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3em;
  flex-wrap: wrap;
}
ul.pankuzu_list > li {
  position: relative;
}
ul.pankuzu_list > li:not(:first-child):before {
  content: "／";
  position: absolute;
  top: 0;
  left: -2em;
}
/* ▲ ul.pankuzu_list ▲ */
.mt-60 {
  margin-top: -6vw;
}
.news_detail02 .img_box {
  border-radius: 2.5rem;
  overflow: hidden;
  position: relative;
}
.news_detail02 .img_box:before {
  top: 0;
  left: 0;
  position: relative;
  width: 100%;
  padding-top: 70%;
  content: "";
  display: block;
}
.news_detail02 .img_box > img {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_detail03_box {
  border-radius: 12rem;
  background: #F4F4F3;
  padding: 10rem 0;
}
.news_detail_sub_contents + .news_detail_sub_contents {
  margin-top: 8rem;
}
.btn01 form {
  background: #fff;
}
.btn01 form input[type="text"] {
  width: 100%;
}
.material-icons {
  font-size: inherit;
}
ul.pagination {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
ul.pagination > li {
  background: #fff;
  border-radius: 50%;
  position: relative;
  width: 3em;
  height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
ul.pagination > li.on {
  background: #0C3061;
  color: #fff;
}
.contact_title{
  font-size:5rem; 
  text-align:center; 
}
.formbox{
  text-align: center; 
  margin:50px; 
  padding:4rem 3rem; 
  display:flex; 
  justify-content:center;
}
.formbox iframe{
  width: 1000px;
  height: 1100px;
}
@media screen and (max-width: 768px) {/* SP用 */
  body .fs12 {
    font-size: 2rem !important;
  }
  body .fs14 {
    font-size: 2.8rem !important;
  }
  body .fs16 {
    font-size: 3rem !important;
  }
  body .fs20 {
    font-size: 3.4rem !important;
  }
  body .fs24 {
    font-size: 3.6rem !important;
  }
  body .fs28 {
    font-size: 4.2rem !important;
  }
  body .fs30 {
    font-size: 4.4rem !important;
  }
  body .fs32 {
    font-size: 4.8rem !important;
  }
  body .fs40 {
    font-size: 5rem !important;
  }
  body .fs50 {
    font-size: 6rem !important;
  }
  .mv_scroll img {
    width: 22.2rem;
  }
  .slider01 .item a {
    height: 50rem;
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 3rem;
  }
  .slider01 .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  body .sp_mt15o {
    margin-top: 15rem !important;
  }
  ul.mv_box03_list {
    flex-wrap: nowrap;
    gap: 1rem;
  }
  ul.mv_box03_list > li {
    width: 100%;
  }
  ul.mv_box03_list > li > .contents .fs14 {
    font-size: 1.4rem !important;
  }
  ul.mv_box03_list > li > .contents .fs24 {
    font-size: 2.4rem !important;
  }
  ul.mv_box03_list > li > .contents .fs40 {
    font-size: 4rem !important;
  }
  .top_area01 > .box {
    padding: 13rem 3rem;
  }
  ul.top_class01 > li {
    width: 100%;
  }
  ul.top_class01 > li .comment .bg img {
    width: 100%;
  }
  .mv_scroll {
    right: 3rem;
  }
  .top_area01_box02 > .box .state,
  .top_area01_box03 > .box .state {
    gap: 3rem;
  }
  .top_area01_box02 > .box .state img {
    width: 9rem;
  }
  .top_area01_box03 > .box .state img {
    width: 9rem;
  }
  .btn_area01 > .box {
    max-width: calc(100% - 12rem);
  }
  .btn_area01 .table {
    width: 100%;
  }
  .footer_class01 .item01 {
    text-align: center;
  }
  .footer_class01 .item01 .fs14 {
    font-size: 2rem !important;
  }
  .footer_class01 .item02 {
    margin-top: 11rem;
  }
  .footer_class01 .item02 .tpbox {
    justify-content: center;
    gap: 3rem;
  }
  ol.footer_class03 {
    display: none;
  }
  ul.footer_class02 {
    justify-content: center;
  }
  ul.header01,
  header {
    height: 15rem;
  }
  .roop_text_outer .roop_text {
    font-size: 20vw;
  }
  ul.news_index_list {
    gap: 5rem;
    position: relative;
  }
  ul.news_index_list > li {
    width: calc((99.99% - 5rem) / 2);
  }
  ul.news_index_title {
    flex-wrap: wrap;
  }
  ul.news_index_title > li.item02 {
    width: 100%;
  }
  .under_btn {
    position: relative;
    width: 100%;
    height: 10rem;
    z-index: 10;
  }
  .under_btn > a {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  .news_detail02 > .inner {
    position: relative;
  }
  .news_detail03_box {
    padding: 14rem 3rem;
  }
  .top_area01_box02 {
    margin-top: 12rem;
  }
  .top_area01_box03 {
    margin-top: 7rem;
  }
  .formbox{
    margin: 0;
  }
  .formbox iframe{
    width: 100%;
    height: 1410px;
  }
}