@charset "utf-8";


/*---------------------------------------------
	body
---------------------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}


/* 10px */
body {
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  position: relative;
  color: #211815;
  overflow: hidden;
}

p {
  text-align: left;
}

img {
  width: 100%;
  height: auto;
}

.mincho {
  font-family: 'Noto Serif JP', serif;
}

.eigo {
  font-family: 'Arimo', sans-serif;
  font-style: italic;
}

.only_pc,
.only_pc_tab {
  display: block;
}

.only_sp,
.only_sp_480 {
  display: none !important;
}

.blue {
  color: #004ea2;
}

/*---------------------------------------------
	Anchor
---------------------------------------------*/
a {
  outline: none;
}

a:link {
  color: #211815;
  text-decoration: none;
}

a:visited {
  color: #211815;
  text-decoration: none;
}

a:hover {
  color: #211815;
  text-decoration: none;
}

a:active {
  color: #211815;
  text-decoration: none;
}

a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}





/*---------------------------------------------
	p
---------------------------------------------*/
p {
  margin-bottom: 1.5em;
}

.only_pc_none {
  display: none;
}

.only_sp_none {
  display: block;
}

.sp_br {
  display: none;
}

.sp600_br {
  display: none;
}

.pc_br {
  display: inline;
}

.pc480_br {
  display: inline;
}


/*---------------------------------------------
 ** ON OFF hover
---------------------------------------------*/
.hover {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.hover:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}

/*=================================================================================================================================*/
/**  共通部分	*/
/*=================================================================================================================================*/

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.scroll-up.done,
.scroll-fade.done {
  opacity: 1;
  transform: translate(0, 0);
}

.load-fade {
  opacity: 0;
  transition: all 4s
    /*処理にかかる時間*/
  ;
}

.mb_8 {
  margin-bottom: 8%;
}

.load-up {
  opacity: 0;
  transform: translateY(30px)
    /*スクロールアップする距離*/
  ;
  transition: all 4s
    /*処理にかかる時間*/
  ;
}

.load-up.done,
.load-fade.done {
  opacity: 1;
  transform: translate(0, 0);
}

.btn_tri {
  position: relative;
  display: inline-block;
  padding: 3px 30px 0px 20px;
  text-align: center;
  outline: none;
  font-size: 90%;
  background: #003399;
  color: #fff !important;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.btn_tri::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 4px solid #003399;
  box-sizing: border-box;
  z-index: -1;
  transform: scale(0.8);
  opacity: 0;
  transition: transform ease .3s, opacity .3s;
}

.btn_tri:hover {
  color: #003399 !important;
  background: transparent;
}

.btn_tri:hover::before {
  transform: scale(1);
  opacity: 1;
}

.btn_tri span::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 35%;
  right: 7px;
  margin: auto;
  box-sizing: border-box;
  border: 5px solid transparent;
  border-left: 8px solid #fff;
  transition: transform ease .3s, opacity .3s;
}

.btn_tri:hover span::after {
  border-left: 8px solid #003399;
}

.btn_white,
.btn_pink {
  text-align: center;
}

.btn_white a {
  min-width: 140px;
  height: 40px;
  font-size: 130%;
  font-weight: lighter;
  display: inline-block;
  line-height: 1.4;
  padding: 5px 10px 0 0;
  box-sizing: border-box;
  position: relative;
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
}

.btn_pink a {
  min-width: 140px;
  height: 90px;
  font-size: 120%;
  font-weight: 500;
  display: inline-block;
  line-height: 1.4;
  padding: 15px 30px;
  box-sizing: border-box;
  position: relative;
  color: #004ea2;
  border: 1px solid #004ea2;
  text-align: center;
  margin: 2% auto 5%;
  box-sizing: border-box;
}


.btn_white a::before,
.btn_pink a::before {
  content: '';
  width: 0%;
  height: 90px;
  background: #fff;
  opacity: 0.3;
  transition: all 0.3s;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.btn_white a:hover::before {
  content: '';
  width: 100%;
  height: 40px;
  background: #fff;
}

.btn_white a::after {
  content: '';
  display: block;
  width: 60px;
  height: 10px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  /*傾きを調節*/
  transform: skew(45deg);
  /*下線矢印をテキストに合わせてうまい具合にはめる*/
  margin: -10px 0 0 -25px;
  position: absolute;
  top: 48%;
  right: -15px;
  transition: all 0.3s;
}

.btn_white a:hover:after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  right: -30px;
}

.btn_pink a:hover::before {
  content: '';
  width: 100%;
  height: 90px;
  background: #004ea2;
}

.btn_pink a::after {
  content: '';
  display: block;
  width: 60px;
  height: 10px;
  border-bottom: 1px solid #004ea2;
  border-right: 1px solid #004ea2;
  /*傾きを調節*/
  transform: skew(45deg);
  /*下線矢印をテキストに合わせてうまい具合にはめる*/
  margin: -10px 0 0 -25px;
  position: absolute;
  top: 48%;
  right: -35px;
  transition: all 0.3s;
}

.btn_pink a:hover:after {
  border-bottom: 1px solid #004ea2;
  border-right: 1px solid #004ea2;
  right: -50px;
}


/*---------------------------------------------
 ** フェードイン
---------------------------------------------*/
.scrollanime {
  opacity: 0;
}

/*一瞬表示されるのを防ぐ*/
.fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 2s;
  opacity: 0;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

/*2.上下の動きを指定*/
.updown {
  transform: translateY(-50px);
}

.downup {
  transform: translateY(50px);
}

/*3.左右の動きを指定*/
.sect02 {
  overflow: hidden;
}

/*横スクロールバーを隠す*/
.slide-right {
  transform: translateX(100px);
}

.slide-left {
  transform: translateX(-100px);
}


/*---------------------------------------------
 ** ローディング
---------------------------------------------*/

.start {
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}

.start p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 70%;
  max-width: 350px;
}


/* fadeUpをするアイコンの動き */

.fadeIn {
  animation-name: fadeUpAnime;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: block !important;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ジャンプする動き */
.jump_on {
  animation: poyoyon 1s ease-in-out 1 forwards;
  animation-delay: 0;
}

.jump_on02 {
  animation: poyoyon 1s ease-in-out 1 forwards;
  animation-delay: 1s;
}

.jump_on03 {
  animation: poyoyon 1s ease-in-out 1 forwards;
  animation-delay: 1.5s;
}

@keyframes poyoyon {
  0% {
    transform: scale(0.5, 0.5) translate(0, 0);
  }

  15% {
    transform: scale(0.7, 0.7) translate(0, 8px);
  }

  30% {
    transform: scale(1.02, 1.0) translate(0, 12px);
  }

  50% {
    transform: scale(0.98, 1.05) translate(0, -12px);
  }

  70% {
    transform: scale(1.0, 0.9) translate(0, 8px);
  }

  100% {
    transform: scale(1.0, 1.0) translate(0, 0);
  }

  0%,
  100% {
    opacity: 1;
  }
}

/* 一文字ずつ下からフェードイン */
.main_anime {
  background: none;
  color: #fff;
  margin-bottom: 0;
  background: none !important;
  line-height: 1.0;
  font-family: 'Cinzel', serif;
}

.main_anime div p {
  display: inline-block;
  transform-origin: center center;
  transform: translate3d(0, 100px, 0);
  margin-bottom: 0 !important;
}

.main_anime div p span {
  transform-origin: center center;
  transform: scale3d(0.1, 0.1, 1);
  opacity: 0;
  font-size: 100% !important;
}

.main_anime_on p:nth-child(1) {
  transition: transform 0.8s ease 0.1s;
}

.main_anime_on p:nth-child(1) span {
  transition: transform 0.8s ease 0.1s, opacity 0.8s ease 0.1s;
}

.main_anime_on p:nth-child(2) {
  transition: transform 0.8s ease 0.2s;
}

.main_anime_on p:nth-child(2) span {
  transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s;
}

.main_anime_on p:nth-child(3) {
  transition: transform 0.8s ease 0.3s;
}

.main_anime_on p:nth-child(3) span {
  transition: transform 0.8s ease 0.3s, opacity 0.8s ease 0.3s;
}

.main_anime_on p:nth-child(4) {
  transition: transform 0.8s ease 0.4s;
}

.main_anime_on p:nth-child(4) span {
  transition: transform 0.8s ease 0.4s, opacity 0.8s ease 0.4s;
}

.main_anime_on p:nth-child(5) {
  transition: transform 0.8s ease 0.5s;
}

.main_anime_on p:nth-child(5) span {
  transition: transform 0.8s ease 0.5s, opacity 0.8s ease 0.5s;
}

.main_anime_on p:nth-child(6) {
  transition: transform 0.8s ease 0.6s;
}

.main_anime_on p:nth-child(6) span {
  transition: transform 0.8s ease 0.6s, opacity 0.8s ease 0.6s;
}

.main_anime_on p:nth-child(7) {
  transition: transform 0.8s ease 0.7s;
}

.main_anime_on p:nth-child(7) span {
  transition: transform 0.8s ease 0.7s, opacity 0.8s ease 0.7s;
}

.main_anime_on p:nth-child(8) {
  transition: transform 0.8s ease 0.8s;
}

.main_anime_on p:nth-child(8) span {
  transition: transform 0.8s ease 0.8s, opacity 0.8s ease 0.8s;
}

.main_anime_on p:nth-child(9) {
  transition: transform 0.8s ease 0.9s;
}

.main_anime_on p:nth-child(9) span {
  transition: transform 0.8s ease 0.9s, opacity 0.8s ease 0.9s;
}



.main_anime_on p {
  transform: translate3d(0, 0, 0) !important;
}

.main_anime_on p span {
  display: block !important;
  transform: scale3d(1, 1, 1) !important;
  opacity: 1 !important;
}




.textup_anime {
  background: none;
  color: #fff;
  margin-bottom: 0;
  background: none !important;
  line-height: 1.0;
  letter-spacing: 0.2rem;
}

.textup_anime_delay {
  margin-top: 65px;
}

.textup_anime div p {
  display: inline-block;
  transform-origin: center center;
  transform: translate3d(0, 100px, 0);
  margin-bottom: 0 !important;
}

.textup_anime div p span {
  transform-origin: center center;
  transform: scale3d(0.1, 0.1, 1);
  opacity: 0;
  font-size: 100% !important;
}

.textup_anime_on p:nth-child(1) {
  transition: transform 0.8s ease 0.1s;
}

.textup_anime_on p:nth-child(1) span {
  transition: transform 0.8s ease 0.1s, opacity 0.8s ease 0.1s;
}

.textup_anime_on p:nth-child(2) {
  transition: transform 0.8s ease 0.2s;
}

.textup_anime_on p:nth-child(2) span {
  transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s;
}

.textup_anime_on p:nth-child(3) {
  transition: transform 0.8s ease 0.3s;
}

.textup_anime_on p:nth-child(3) span {
  transition: transform 0.8s ease 0.3s, opacity 0.8s ease 0.3s;
}

.textup_anime_on p:nth-child(4) {
  transition: transform 0.8s ease 0.4s;
}

.textup_anime_on p:nth-child(4) span {
  transition: transform 0.8s ease 0.4s, opacity 0.8s ease 0.4s;
}

.textup_anime_on p:nth-child(5) {
  transition: transform 0.8s ease 0.5s;
}

.textup_anime_on p:nth-child(5) span {
  transition: transform 0.8s ease 0.5s, opacity 0.8s ease 0.5s;
}

.textup_anime_on p:nth-child(6) {
  transition: transform 0.8s ease 0.6s;
}

.textup_anime_on p:nth-child(6) span {
  transition: transform 0.8s ease 0.6s, opacity 0.8s ease 0.6s;
}

.textup_anime_on p:nth-child(7) {
  transition: transform 0.8s ease 0.7s;
}

.textup_anime_on p:nth-child(7) span {
  transition: transform 0.8s ease 0.7s, opacity 0.8s ease 0.7s;
}

.textup_anime_on p:nth-child(8) {
  transition: transform 0.8s ease 0.8s;
}

.textup_anime_on p:nth-child(8) span {
  transition: transform 0.8s ease 0.8s, opacity 0.8s ease 0.8s;
}

.textup_anime_on p:nth-child(9) {
  transition: transform 0.8s ease 0.9s;
}

.textup_anime_on p:nth-child(9) span {
  transition: transform 0.8s ease 0.9s, opacity 0.8s ease 0.9s;
}

.textup_anime_on p:nth-child(10) {
  transition: transform 0.8s ease 1.0s;
}

.textup_anime_on p:nth-child(10) span {
  transition: transform 0.8s ease 1.0s, opacity 0.8s ease 0.6s;
}

.textup_anime_on p:nth-child(11) {
  transition: transform 0.8s ease 1.1s;
}

.textup_anime_on p:nth-child(11) span {
  transition: transform 0.8s ease 1.1s, opacity 0.8s ease 0.7s;
}

.textup_anime_on p:nth-child(12) {
  transition: transform 0.8s ease 1.2s;
}

.textup_anime_on p:nth-child(12) span {
  transition: transform 0.8s ease 1.2s, opacity 0.8s ease 0.8s;
}

.textup_anime_on p:nth-child(13) {
  transition: transform 0.8s ease 1.3s;
}

.textup_anime_on p:nth-child(13) span {
  transition: transform 0.8s ease 1.3s, opacity 0.8s ease 0.9s;
}



/* 改行時は遅れさせる */
.textup_anime_delay .textup_anime_on p:nth-child(1) {
  transition: transform 0.8s ease 0.5s;
}

.textup_anime_delay .textup_anime_on p:nth-child(1) span {
  transition: transform 0.8s ease 0.1s, opacity 0.8s ease 0.5s;
}

.textup_anime_delay .textup_anime_on p:nth-child(2) {
  transition: transform 0.8s ease 0.6s;
}

.textup_anime_delay .textup_anime_on p:nth-child(2) span {
  transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.6s;
}

.textup_anime_delay .textup_anime_on p:nth-child(3) {
  transition: transform 0.8s ease 0.7s;
}

.textup_anime_delay .textup_anime_on p:nth-child(3) span {
  transition: transform 0.8s ease 0.3s, opacity 0.8s ease 0.7s;
}

.textup_anime_delay .textup_anime_on p:nth-child(4) {
  transition: transform 0.8s ease 0.8s;
}

.textup_anime_delay .textup_anime_on p:nth-child(4) span {
  transition: transform 0.8s ease 0.4s, opacity 0.8s ease 0.8s;
}

.textup_anime_delay .textup_anime_on p:nth-child(5) {
  transition: transform 0.8s ease 0.9s;
}

.textup_anime_delay .textup_anime_on p:nth-child(5) span {
  transition: transform 0.8s ease 0.5s, opacity 0.8s ease 0.9s;
}




.textup_anime_on p {
  transform: translate3d(0, 0, 0) !important;
}

.textup_anime_on p span {
  display: block !important;
  transform: scale3d(1, 1, 1) !important;
  opacity: 1 !important;
}

/* テキストエフェクト */
.fly-in {
  width: 700px;
  font-size: 300%;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  position: absolute;
  bottom: -1%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.fly-in div {
  opacity: 0;
  animation: switch 3s forwards 1;
  animation-delay: 3s;
  color: #fff;
  text-align: center;
}

@keyframes typing {
  from {
    width: 0;
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes caret {
  50% {
    border-color: transparent;
  }
}

.fly-in div p {
  width: 15ch;
  overflow: hidden;
  white-space: nowrap;
  animation: typing 1.5s forwards ease-in-out 1;
  animation-delay: 2.8s;
  opacity: 0;
  text-align: center;
  margin: 0 auto;

}

.fly-in div span {
  display: inline-block;
  margin-left: 1.5rem;
}

@keyframes switch {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.8);
  }

  40% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.8);
  }

  65% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.8);
  }

  70% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.8);
  }

  80% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.8);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(.9);
    transform: translateY(-120px);
  }

}

@keyframes blur {
  0% {
    opacity: 0;
    filter: blur(100px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }

}

.white_slide {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.white_slide img {
  opacity: 0;
}

.white_slide.white_slide_on img {
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: -1;
  opacity: 0;
  animation: apper_img 2s forwards;
  animation-delay: 0;
}

#newstage .white_slide.white_slide_on img {
  width: 90%;
}


.white_slide.white_slide_on::before {
  animation: apper_right 2s forwards;
  background: #fff;
  bottom: 0;
  content: '';
  pointer-events: none;
  position: absolute;
  left: 0px;
  right: 0;
  top: 0;
  z-index: 1;
  animation-delay: 0;
  transform: translateX(100%);
}


@keyframes apper_img {
  0% {
    opacity: 0;
  }

  40% {
    opacity: 0;
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes apper_right {
  0% {
    transform: translateX(-100%);
  }


  100% {
    transform: translateX(0);
  }
}



/*---------------------------------------------
 ** ヘッダー　ナビ
---------------------------------------------*/

header {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: absolute;
  padding-top: 40px;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
}

h1 {
  width: 400px;
  z-index: 10;
}

header.navOpen h1 {}

h1 img {
  margin-bottom: 5px;
}

h1 p {
  font-weight: 500;
  text-align: left;
  font-size: 110%;
  white-space: nowrap;
}

#pc_nav ul {
  transition: all 0.5s;
  background: none;
}

#p_form #pc_nav ul {
  background: #ffffffad;
}

#pc_nav ul.pc_nav_bg {
  background: #ffffffad;
}

#pc_nav ul {
  width: 620px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: fixed;
  top: 4%;
  right: 5px;
}

#pc_nav ul li a {
  display: inline-block;
  transition: all 0.5s;
  padding: 2px 10px;
  box-sizing: border-box;
  font-weight: 600;
  margin-left: 20px;
  white-space: nowrap;
}

#pc_nav ul li.icon_fb a {
  padding: 2px 10px 2px 10px;
}

#pc_nav ul li.icon_fb a img {
  width: 30px;
}

#pc_nav ul li.icon_yt a {
  padding: 0px 10px 2px 10px;
}

#pc_nav ul li.icon_yt a img {
  width: 35px;
}

#pc_nav ul li.icon_ig a {
  padding: 2px 10px 2px 10px;
}

#pc_nav ul li.icon_ig a img {
  width: 30px;
}



#pc_nav ul li a:hover {
  background-color: #fdd000;
}

#head_btn {
  display: none;
}

@media screen and (max-width: 1160px) {
  h1 {
    width: 320px;
  }

  h1 p {
    font-size: 90%;
  }

  #pc_nav ul {
    width: 560px;
  }

  #pc_nav ul li a {
    font-size: 90%;
    margin-left: 15px;
  }
}

@media screen and (max-width: 990px) {
  h1 {
    width: 290px;
  }

  h1 p {
    font-size: 80%;
  }

  #pc_nav ul {
    width: 470px;
  }

  #pc_nav ul li a {
    font-size: 80%;
    margin-left: 5px;
  }
}



/*---------------------------------------------
 ** メイン
---------------------------------------------*/
#main {
  background: #dce4ee;
}

#main_sp {
  display: none;
}

#main>div {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10% 20% 5% 5px;
  box-sizing: border-box;
  position: relative;
  text-align: left;
}

#main>div::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../img/main_bg.jpg) no-repeat #dce4ee bottom right;
  background-size: auto 100%;
  display: block;
  position: absolute;
  right: -250px;
  bottom: 0;
}


#main>div img {
  max-width: 500px;
  margin-left: 0;
  margin-bottom: 30px;
  animation: blur 3s 1 forwards;
  z-index: 2;
}

/* ぼやけながらフェードイン */
@keyframes blur {
  0% {
    filter: blur(500px);
    opacity: 0;
  }

  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

#main>div p {
  z-index: 0;
  animation: blur 3s 1 forwards;
  z-index: 2;
}

@media screen and (max-width: 2410px) {
  #main>div {
    padding: 15% 30% 10% 5px;
  }

  #main>div::before {
    background: url(../img/main_bg.jpg) no-repeat #dce4ee bottom right;
    background-size: auto 100%;
  }
}

@media screen and (max-width: 1400px) {
  #main>div::before {
    right: -100px;
  }
}

@media screen and (max-width: 1160px) {
  #main>div {
    padding: 15% 40% 7% 5px;
    text-align: left;
  }

  #main>div img {
    max-width: 350px;
    margin-left: 0;
  }

  #main>div p {
    font-size: 90%;
  }

  #main>div::before {
    right: -50px;
  }
}



/*---------------------------------------------
 **  コンテンツ
---------------------------------------------*/

#message {
  background: #004ea2;
  z-index: -1;
}

#message>div {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 50px;
  position: relative;
  padding: 7% 3% 5% 400px;
  box-sizing: border-box;
  z-index: 0;
}

#message>div::before {
  content: '';
  width: 550px;
  height: 800px;
  background: url(../img/message_img.png) no-repeat bottom left;
  background-size: 100% auto;
  position: absolute;
  bottom: -60px;
  left: -160px;
  z-index: -1;
}

#message>div::after {
  content: '';
  width: 70%;
  height: 300px;
  background: url(../img/osaki01.png) no-repeat top right;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}


#message h2 {
  font-size: 160%;
  color: #fff;
  margin-bottom: 10%;
  z-index: 1;
  text-align: left;
}

#message p {
  color: #fff;
  z-index: 1;
}

@media screen and (max-width: 1500px) {
  #message>div {
    padding: 7% 3% 5% 35%;
  }

  #message>div::before {
    content: '';
    width: 55%;
  }

}

@media screen and (max-width: 1160px) {
  #message>div {
    padding: 7% 3% 5% 35%;
    font-size: 90%;
  }

  #message>div::before {
    bottom: -50px;
    left: -60px;
  }
}

#message02 {
  position: relative;
  z-index: 1;
}

#message02.message02_on::after {
  content: '';
  width: 100%;
  height: 800px;
  background: url(../img/yellow_bg.png) no-repeat top left;
  background-size: cover;
  display: block;
  pointer-events: none;
  animation: apper_right 1s 1 forwards;
  position: absolute;
  top: -30px;
  left: 0;
}


#message02>div {
  width: 90%;
  max-width: 850px;
  margin: 0 auto 30px;
  position: relative;
  padding: 7% 0 5%;
  box-sizing: border-box;
  z-index: 1;
}

#message02>div h2 {
  font-size: 140%;
  margin-bottom: 3%;
  font-weight: bold;
  letter-spacing: 0.2rem;
}

#message02>div p.chairman {
  text-align: right;
  font-weight: 400;
}

#message02>div p.chairman span {
  font-size: 120%;
}

@media screen and (max-width: 1160px) {
  #message02>div {
    font-size: 90%;
  }

  #message02.message02_on::after {
    height: 640px;
  }
}

#seisaku {
  position: relative;
  background: #dbe3ee;
  background: linear-gradient(90deg, #004ea2 0%, #004ea2 50%, #dbe3ee 50%, #dbe3ee 100%);
  color: #fff;
  z-index: 0;
}

#seisaku::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-top: 7vw solid #fff;
  border-right: 100vw solid transparent;
}

#seisaku>div {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  background: url(../img/seisaku_img.png) no-repeat right bottom;
  background-size: auto 100%;
  padding: 12% 0 5%;
}

#seisaku_blue {
  width: 33%;
}

#seisaku_blue h2 {
  width: 100px;
  margin: 0 auto;
  position: relative;
}

#seisaku_blue h2::after {
  content: '';
  width: 160px;
  height: 1px;
  display: block;
  background: #fff;
  position: absolute;
  bottom: -40px;
  left: -30px;
  margin: 0 auto;
}

#seisaku_blue p {
  text-align: center;
  padding-top: 80px;
}

#seisaku .btn {
  width: 180px;
  text-align: center;
  font-size: 110%;
  margin: 10px auto 0;
  display: block;
  padding: 13px 0;
  color: #004ea2 !important;
  background: #fdd000;
  transition: all 0.5s;
}

#seisaku .btn:hover {
  transform: scale(1.2);
}

@media screen and (max-width: 1600px) {
  #seisaku>div {
    max-width: 1200px;
  }
}

@media screen and (max-width: 1160px) {
  #seisaku {
    margin-top: -60px;
  }

  #seisaku::before {
    border-top: 7vw solid #fff;
  }

  #seisaku>div {
    font-size: 90%;
  }

  #seisaku_blue h2 {
    width: 80px;
  }

  #seisaku_blue h2::after {
    width: 120px;
    bottom: -20px;
    left: -20px;
  }

  #seisaku_blue p {
    padding-top: 40px;
  }

}

#movie {
  padding: 8% 0 5%;
}

#movie h2 {
  width: 90%;
  max-width: 520px;
  font-weight: 900;
  color: #004ea2;
  text-align: left;
  font-size: 180%;
  margin: 0 auto;
  letter-spacing: 0.05em;
}

#movie a {
  width: 90%;
  max-width: 650px;
  margin: 3% auto;
  display: block;
  transition: all 0.5s;
}

#movie a:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 1160px) {
  #movie {
    font-size: 90%;
  }

  #movie h2 {
    max-width: 465px;
  }
}

#profile {
  background: #7ecef4;
  z-index: -1;
  position: relative;
  padding: 12% 0 0;
}

#profile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-top: 5vw solid #fff;
  border-left: 100vw solid transparent;
}

#profile>div {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 3% 5% 400px;
  box-sizing: border-box;
  z-index: 0;
}

#profile>div::before {
  content: '';
  width: 600px;
  height: 800px;
  background: url(../img/profile_img.png) no-repeat bottom left;
  background-size: 100% auto;
  position: absolute;
  bottom: -150px;
  left: -80px;
  z-index: -1;
}

#profile>div::after {
  content: '';
  width: 70%;
  height: 300px;
  background: url(../img/osaki02.png) no-repeat bottom right;
  background-size: 100% auto;
  position: absolute;
  bottom: -0px;
  right: 0;
  z-index: -1;
}


#profile h2 {
  font-size: 160%;
  color: #fff;
  margin-bottom: 7%;
  margin-left: 8%;
  z-index: 1;
  text-align: left;
}

#profile>div>div {
  width: 94%;
  box-sizing: border-box;
  opacity: 0.7;
}

#profile>div>div>p {
  width: 84%;
  font-size: 90%;
  background-color: #fff;
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%),
    linear-gradient(180deg, #000b80 1px, transparent 1px);
  background-size: 8px 100%,
    100% 2.5em;
  line-height: 2.5em;
  padding: 0 0 1px;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
  color: #000b80;
}

#profile>div>div>p::before {
  content: '';
  width: 9.5%;
  height: 100%;
  background: #fff;
  display: block;
  position: absolute;
  left: -9.5%;
  top: 0;
}

#profile>div>div>p::after {
  content: '';
  width: 9.5%;
  height: 100%;
  background: #fff;
  display: block;
  position: absolute;
  right: -9.5%;
  top: 0;
}

@media screen and (max-width: 1400px) {
  #profile>div::before {
    width: 50%;
  }

  #profile>div::before {
    width: 50%;
  }
}

@media screen and (max-width: 1280px) {
  #profile>div {
    font-size: 90%;
  }
}

@media screen and (max-width: 1160px) {
  #profile {
    padding-top: 8%;
  }

  #profile>div {
    width: 95%;
    padding: 0px 0% 20% 30%;
  }

  #profile h2 {
    margin-bottom: 4%;
  }
}

@media screen and (max-width: 940px) {
  #profile {
    padding-top: 8%;
  }

  #profile>div {
    width: 100%;
    max-width: 800px;
    padding: 0px 0% 20% 20%;
  }

  #profile>div::before {
    left: -120px;
  }

  #profile h2 {
    margin-bottom: 4%;
  }
}

#kouenkai {
  background: url(../img/kouenkai_bg.jpg) no-repeat bottom center;
  background-size: cover;
  position: relative;
  padding: 10% 0 15%;
  box-sizing: border-box;
  z-index: 1;
}

#kouenkai h2 {
  font-size: 140%;
  text-align: center;
  margin-bottom: 3%;
  font-weight: bold;
}

#kouenkai p {
  width: 90%;
  text-align: center;
  margin: 0 auto 2%;
  font-size: 90%;
}

#kouenkai a {
  width: 270px;
  padding: 1% 1%;
  text-align: center;
  font-size: 180%;
  color: #fff;
  font-weight: 600;
  background: #004ea2;
  margin: 0 auto;
  display: block;
  transition: all 0.5s;
}

#kouenkai a:hover {
  transform: scale(1.2);
}

#kouenkai>img {
  width: 130px;
  position: absolute;
  bottom: -30px;
  right: 12%;
}

@media screen and (max-width: 1160px) {
  #kouenkai {
    font-size: 90%;
    padding-bottom: 23%;
  }

  #kouenkai a {
    width: 240px;
    padding: 1% 1%;
    font-size: 150%;
  }


  #kouenkai>img {
    width: 110px;
    right: 10%;
  }
}




/*---------------------------------------------
 **  フォーム・フッター
---------------------------------------------*/


#contact {
  padding: 0 0 8%;
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  z-index: 0;
}

#contact h2 {
  margin: 0 auto 2%;
  color: #004ea2;
  font-size: 140%;
  letter-spacing: 0.3rem;
  font-weight: 600;
}

#contact#contact h2+p {
  text-align: center;
  margin: 0 auto 4%;
  font-size: 90%;
}



#contact form+p {
  text-align: center;
  font-size: 85%;
  width: 90%;
  margin: 0 auto 3%;
}

#contact form {
  margin: 0 auto 3%;
  text-align: left;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  color: #251e1c;
  background: #fff;
}

select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
  appearance: menulist;
}

/*IE用*/
select::-ms-expand {
  display: block;
}

button,
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:checked+label {
  background: #ff0000;
}


form#mail_form dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #f2f2f2;
}

form#mail_form dl:nth-of-type(2),
form#mail_form dl:nth-of-type(5),
form#mail_form dl:nth-of-type(7) {
  background: #fff;
}

form#mail_form dl dt {
  width: 33%;
  max-width: 250px;
  margin-right: 2%;
  font-weight: bold;
}

form#mail_form dl dd {
  width: 65%;
  max-width: 550px;
}

form#mail_form dl dd p {
  font-size: 90%;
  text-align: left;
  margin-top: 5px;
  margin-bottom: 0;
  line-height: 1.6;
}

form#mail_form dl dd p span {
  font-size: 100%;
  color: #ad0000;
}

input::placeholder {
  color: #bbb;
}

.yubin_no dd {
  position: relative;
}

.yubin_no dd>p {
  font-size: 80% !important;
  display: inline-block;
  position: absolute;
  top: 35px;
  right: 200px;
}

.yubin_no dd>p a {
  text-decoration: underline;
  transition: all 0.5s;
}

.yubin_no dd>p a:hover {
  text-decoration: none;
  opacity: 0.7;
}

#contact select {
  margin-right: 5px;
  margin-left: 10px;
}

input[type=checkbox] {
  transform: scale(1.2);
  padding: 3px;
  display: inline-block;
  margin: 0 7px 7px 0 !important;
}

.ceremony_style_dd label {
  margin-bottom: 5px !important;
  margin-right: 10px !important;
  display: inline-block;
}

#ceremony_style_text {
  vertical-align: -2px;
  display: inline-block;
}

.ceremony_style_dd label.label_last {
  margin-top: 20px !important;
}

.ceremony_style_dd input[type=text] {
  width: 200px !important;
}


#contact dl dd select:first-child {
  margin-left: 0;
}

.when_dl {
  margin-top: -20px;
}

.when_dl dt {
  display: none;
}

.when_dl dd {
  padding: 0px 0 25px 0 !important;
}

#contact form+p+p {
  text-align: center;
  margin-top: -20px;
  margin-bottom: 20px;
}

#contact form+p+p a:link,
#contact form+p+p a:visited {
  text-decoration: underline;
}

#form_submit {
  text-align: center;
}

#thanks #main {
  margin-bottom: 0;
}

#thanks_page {
  margin-bottom: 8%;
}



#thanks_page>p {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 3%;
  text-align: center;
}


#thanks_page>p:nth-of-type(1) {
  width: 100%;
  max-width: unset;
  text-align: center;
  font-size: 180%;
  padding: 20px 0;
  background: #fdd000;
  margin-bottom: 5%;
  margin-top: 30px;
}


footer {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 2%;
  padding: 2% 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  line-height: 1.6;
}

footer>div p {
  margin-bottom: 0;
}

footer>div:nth-child(1) {
  width: 48%;
  color: #004ea2;
  text-align: left;
}

.foot_tel {
  background: url(../img/icon_tel.png) no-repeat center left;
  background-size: 25px auto;
  padding: 2px 10px 2px 28px;
  color: #004ea2 !important;
  display: inline-block;
  box-sizing: border-box;
}

.foot_fax {
  background: url(../img/icon_fax.png) no-repeat center left;
  background-size: 25px auto;
  padding: 2px 10px 2px 28px;
  display: inline-block;
  box-sizing: border-box;
  margin-left: 10px;
}


footer>div:nth-child(2) {
  width: 48%;
}

footer>div:nth-child(2) ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
}

.foot_fb {
  background: url(../img/icon_fb.png) no-repeat center left 10px;
  background-size: 23px auto;
  padding: 1px 10px 2px 38px;
  display: inline-block;
  box-sizing: border-box;
  font-weight: 600;
  margin-left: 0px;
}

.foot_yt {
  background: url(../img/icon_yt.png) no-repeat center left 10px;
  background-size: 28px auto;
  padding: 2px 10px 2px 43px;
  display: inline-block;
  box-sizing: border-box;
  font-weight: 600;
  margin-left: 10px;
}

.foot_ig {
  background: url(../img/icon_ig.png) no-repeat center left 10px;
  background-size: 23px auto;
  padding: 1px 10px 2px 38px;
  display: inline-block;
  box-sizing: border-box;
  font-weight: 600;
  margin-left: 10px;
}

footer>div:nth-child(2) ul li a:hover {
  background-color: #fdd000;
}

footer>div:nth-child(2) p {
  color: #004ea2;
  position: absolute;
  right: 0;
  bottom: 2%;
}

#pagetop {
  z-index: 0;
  position: relative;
}

#pagetop a {
  width: 100%;
  height: 70px;
  background: #004ea2;
  display: block;
  text-align: center;
  position: relative;
  transition: all 0.5s;
}

#pagetop a:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1.5em;
  height: 1.5em;
  border: 0.2em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
  position: absolute;
  top: 25px;
  right: 0;
  left: 0;
  margin: 0 auto;
  pointer-events: none;
  transition: all 0.5s;
}

#pagetop a:hover {
  opacity: 0.8;
}

#pagetop a:hover:before {
  top: 15px;
}

@media screen and (max-width: 1160px) {
  footer {
    font-size: 80%;
  }

  footer>div:nth-child(1) {
    width: 300px;
  }

  footer>div:nth-child(2) {
    width: calc(100% - 310px);
  }

  .copy {
    font-size: 90%;
  }
}


/* 政策 */
#seisaku_main {
  background: url(../img/seisaku_main.jpg) no-repeat center top;
  background-size: cover;
  padding: 10% 0;
  margin-bottom: 5%;
}

#seisaku_main h2 {
  text-align: center;
  font-size: 400%;
  margin: 0;
  color: #fff;
  letter-spacing: 2rem;
}

#seisaku01 {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 8%;
}

#seisaku01 h3 {
  border-top: 1px solid #ed6c00;
  border-bottom: 1px solid #ed6c00;
  padding: 5px 0;
  text-align: center;
  font-size: 180%;
  letter-spacing: 0.5rem;
  font-weight: 500;
  margin-bottom: 3%;
  color: #ed6c00;
}

#seisaku01 h4 {
  background: url(../img/orange_bg.png) no-repeat top center;
  background-size: cover;
  color: #fff;
  font-size: 140%;
  font-weight: 500;
  letter-spacing: 0.5rem;
  text-align: center;
  margin-bottom: 2%;
}

#seisaku01>ul {
  width: 95%;
  max-width: 700px;
  margin: 0 auto 8%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}

#seisaku01>ul li {
  width: 47%;
  text-indent: -2rem;
  margin-left: 1rem;
  line-height: 1.5;
  margin-bottom: 3px;
}

#seisaku01>ul li::first-letter {
  color: #ed6c00;
  font-size: 90%;
  padding-right: 3px;
  display: inline-block;
}

.hashira {
  position: relative;
}

.hashira>img:nth-of-type(1) {
  width: 200px;
  position: absolute;
  top: 16%;
  right: 10%;
}

.hashira>img:nth-of-type(2) {
  width: 200px;
  position: absolute;
  top: 32%;
  right: 0%;
}

.hashira>img:nth-of-type(3) {
  width: 200px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.hashira>dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 3%;
}

.hashira>dl dt {
  width: 180px;
  padding: 10px 20px 10px 0;
  text-align: center;
  box-sizing: border-box;
  background: #ed6c00;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff034;
  font-size: 130%;
  font-weight: 500;
  letter-spacing: 0.2rem;
  position: relative;
  line-height: 1.2;
}

.hashira>dl dt::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  border-right: 40px solid #fff;
  border-top: 150px solid transparent;
}

.hashira>dl dt>span {
  display: inline-block;
}

.hashira>dl dt>span>span {
  display: inline-block;
  font-size: 80%;
  border: 1px solid #fff034;
  padding: 0 3px 0 4px;
  vertical-align: 1px;
  margin: 0 3px;
}

.hashira>dl dd {
  width: calc(100% - 200px);
}

.hashira>dl dd h5 {
  font-size: 120%;
  color: #ed6c00;
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  line-height: 1.6;
}

.hashira>dl dd ul li {
  background: url(../img/icon_maru.png) no-repeat left top 5px;
  background-size: 15px auto;
  padding: 0 0 0 20px;
  box-sizing: border-box;
  text-align: left;
  font-size: 90%;
  line-height: 1.5;
}

#seisaku02 {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 8%;
}

#seisaku02 h3 {
  border-top: 1px solid #004ea2;
  border-bottom: 1px solid #004ea2;
  padding: 5px 0;
  text-align: center;
  font-size: 180%;
  letter-spacing: 0.5rem;
  font-weight: 500;
  margin-bottom: 3%;
  color: #004ea2;
}

.tenbou {
  position: relative;
}

.tenbou>dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 3%;
}

.tenbou>dl dt {
  width: 180px;
  min-height: 110px;
  padding: 10px 0 10px 0;
  text-align: center;
  box-sizing: border-box;
  background: linear-gradient(150deg, #004ea2 0%, #004ea2 50%, #578cbc 50%, #578cbc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 130%;
  font-weight: 500;
  letter-spacing: 0.2rem;
  position: relative;
  line-height: 1.2;
}

.tenbou>dl:nth-of-type(5) dt {
  background: linear-gradient(145deg, #004ea2 0%, #004ea2 50%, #578cbc 50%, #578cbc 100%);
}

.tenbou>dl dt>span {
  display: inline-block;
  font-size: 240%;
}

.tenbou>dl dd {
  width: calc(100% - 200px);
}

.tenbou>dl dd h5 {
  font-size: 120%;
  color: #004ea2;
  font-weight: 500;
  margin-bottom: 5px;
  text-align: left;
  line-height: 1.4;
}

.tenbou>dl dd ul li {
  background: url(../img/icon_maru.png) no-repeat left top 5px;
  background-size: 15px auto;
  padding: 0 0 0 20px;
  box-sizing: border-box;
  text-align: left;
  font-size: 90%;
  line-height: 1.5;
}

.tenbou>img {
  width: 130px;
  position: absolute;
  bottom: -50px;
  right: 0;
}

#seisaku_mes {
  background: #fdd000;
  padding: 20px 0;
  text-align: center;
  margin: 0;
}

#seisaku_mes span {
  opacity: 0;
  display: inline-block;
  margin: 0 auto;
  font-size: 140%;
  letter-spacing: 0.3rem;
  font-weight: 600;
  color: #004ea2;
  line-height: 1.5;
}

#seisaku_mes span.blur_on {
  animation: blur 3s 1 forwards;
  opacity: 1;
}

@media screen and (max-width: 1020px) {
  .hashira>img:nth-of-type(1) {
    width: 170px;
    position: absolute;
    top: 16%;
    right: 10%;
  }

  .hashira>img:nth-of-type(2) {
    width: 170px;
    position: absolute;
    top: 32%;
    right: 0%;
  }

  .hashira>img:nth-of-type(3) {
    width: 170px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

@media screen and (max-width: 930px) {

  .hashira {
    padding-bottom: 200px;
  }

  .hashira>img:nth-of-type(1) {
    width: 32%;
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
  }

  .hashira>img:nth-of-type(2) {
    width: 32%;
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
  }

  .hashira>img:nth-of-type(3) {
    width: 32%;
    position: absolute;
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
  }
}

/* フォーム */
#form_main {
  background: #004ea2;
  padding: 10% 0;
  margin-bottom: 5%;
}


#form_main h2 {
  display: inline-block;
  text-align: center;
  font-size: 180%;
  font-weight: 500;
  margin: 0 auto;
  padding: 4% 2%;
  color: #fff;
  letter-spacing: 0.7rem;
  line-height: 1.4;
  border: 3px solid #fff;
}

@media screen and (max-width: 1350px) {
  #form_main {
    padding: 180px 0 8%;
  }

  #form_main h2 {
    font-size: 150%;
    padding: 4% 2%;
    color: #fff;
    letter-spacing: 0.2rem;
  }
}

#home h1.logo_w,
#p_seisaku h1.logo_w {
  display: none;
}

#p_form h1.logo_b {
  display: none;
}

#p_form h1 p {
  color: #fff;
}