@charset "utf-8";


#splash {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #ffffff;
  text-align: center;
  color: #fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#splash-logo img {
  width: 500px;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

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


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

body {
  box-sizing: border-box;
  margin: auto;
  min-width: 1000px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
}

header {
  margin-left: 50px;
  margin-top: 30px;
  float: left;
}



nav {
  background: #ffffff;
  color: #FFF;
  text-align: center;
  padding-top: 45px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  
}

nav ul ul {
  display: block;
}

nav ul li {
 position: relative;
 
}

nav ul li a {
  display: block;
  text-decoration: none;
  color: #000000;
  padding: 20px 70px;
  transition: all .3s;
  margin-top: 0;
}

nav ul li li a {
  padding: 10px 55px;
}

nav ul li a:hover {
  color: #b1b0b0;
}

nav ul li.nav-about2::before {
  content: '';
  position: absolute;
  left: 45px;
  top: 35px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(135deg);
}

nav ul li.nav-service2::before {
  content: '';
  position: absolute;
  left: 45px;
  top: 35px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #999;
  border-left: 2px solid #999;
  transform: rotate(135deg);
}

nav ul li.nav-contact2::before {
  content: '';
  position: absolute;
  left: 45px;
  top: 35px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #999;
  border-left: 2px solid #999;
  transform: rotate(135deg);
}

nav ul ul li.nav-about2::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 17px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

nav li.nav-about2 ul {
  position: absolute;
  left: 15px;
  top: 62px;
  z-index: 4;
  background: #f9fafa;
  width: 180px;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
  
}

nav li.nav-about2:hover > ul,
nav li.nav-about ul li:hover > ul,
nav li.nav-about:active > ul,
nav li.nav-about ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

nav li.nav-about2 ul li a{
  color: #070707;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
  font-size: small;
}

nav li.nav-about2 ul li:last-child a{
  border-bottom: none;
}

nav li.nav-about2 ul li a:hover,
nav li.nav-about2 ul li a:active{
  background: #d9e8fc;
}

nav li.nav-about2 ul ul{
  top: 0;
  left: 182px;
  background: #e4effa;
}

nav li.nav-about2 ul ul li a:hover,
nav li.nav-about2 ul ul li a:active{
  background: #448ED3;
}

.nav2 ul li a br {
  font-size: large;
}

.nav-note2  {
  background: #e0e0e080;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  width: 170px;
  padding: 10px -25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  margin: 0;
  margin-left: 60px;
  height: 90px;
  margin-top: 0px;
}

.nav-note2 a {
  border-bottom: #000000;
}

.nav-note2 :before {
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  width: 0;
  border-width: 0 18px 18px 0;
  border-style: solid;
  border-color: #fafcfc #fafcfc #c7c7c7 #cbcbcb;
  box-shadow: -1px 1px 2px rgb(0 0 0 / 10%);
}


nav ul li a span {
  font-size: small;
}


.home img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 8em;
}

#main {
  margin-top: 100px;
}

.main2 {
 font-size: 64px;
 margin: 0 0 50px 50px;
}


.fadeUp {
  animation-name:fadeInAnime;
  animation-duration:3s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeInAnime{
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }

.main3 {
  opacity: 0;
}


.main3 {
  text-align: center;
  font-size: 48px;
  margin: 0 auto 30px auto;
}

.box2 {
  margin: 4em 4em;
	padding:2em;/*内側余白*/
	border-left:solid 5px #364e96;/*線の種類・太さ・色*/
	background-color:#f5f5f5;/*背景色*/
	box-shadow:3px 1px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 32px;
}

.box2 h2 {
  margin-bottom: 50px; 
  padding: 0;
}


.about-menu {
  display: flex;
  justify-content: center;
  padding: 4rem 1rem;
}

.about-img img {
  width: 100%;
  max-width: 500px;
  min-width: 400px;
  height: auto; 
  
}
  
.about-text {
  display: block;
  margin-left: 50px;
}

.about-text h1 {
  font-size: 48px;
  margin-bottom: 60px;
  width: 600px;
  color: #364e96;/*文字色*/
  padding: 0.1em 0;/*上下の余白*/
  border-top: solid 5px #364e96;/*上線*/
  border-bottom: solid 5px #364e96;/*下線*/
}

.about-text p {
  font-size: 24px;
  margin-bottom: 10px;
}

.about-text p img {
  margin-top: 50px;
  padding-left: 360px;
}

.service-menu {
  display: flex;
  justify-content: center;
  padding: 4rem 1rem;
}

.service-img img {
  width: 100%;
  max-width: 500px;
  min-width: 400px;
  height: auto; 
  
}
  
.service-text {
  display: block;
  margin-left: 50px;
}

.service-text h1 {
  font-size: 48px;
  margin-bottom: 60px;
  width: 600px;
  color: #364e96;/*文字色*/
  padding: 0.1em 0;/*上下の余白*/
  border-top: solid 5px #364e96;/*上線*/
  border-bottom: solid 5px #364e96;/*下線*/
}

.service-text p {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-text p img {
  margin-top: 50px;
  padding-left: 360px;

}

.service-menu {
  display: flex;
  justify-content: center;
  padding: 4rem 1rem;
}

.service-img img {
  width: 100%;
  max-width: 500px;
  min-width: 400px;
  height: auto; 
  
}
  
.service-text {
  display: block;
  margin-left: 50px;
}

.service-text h1 {
  font-size: 48px;
  margin-bottom: 60px;
  width: 600px;
  color: #364e96;/*文字色*/
  padding: 0.1em 0;/*上下の余白*/
  border-top: solid 5px #364e96;/*上線*/
  border-bottom: solid 5px #364e96;/*下線*/
}

.service-text p {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-text p img {
  margin-top: 50px;
  padding-left: 360px;
}

.contact-menu {
  display: flex;
  justify-content: center;
  padding: 4rem 1rem;
}

.contact-img img {
  width: 100%;
  max-width: 500px;
  min-width: 400px;
  height: auto; 
}
  
.contact-text {
  display: block;
  margin-left: 50px;
}

.contact-text h1 {
  font-size: 48px;
  margin-bottom: 60px;
  width: 600px;
  color: #364e96;/*文字色*/
  padding: 0.1em 0;/*上下の余白*/
  border-top: solid 5px #364e96;/*上線*/
  border-bottom: solid 5px #364e96;/*下線*/
}

.contact-text p {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-text p img {
  margin-top: 50px;
  padding-left: 360px;
}

.note-menu {
  display: flex;
  justify-content: center;
  padding: 4rem 1rem;
}

.note-img img {
  width: 100%;
  max-width: 500px;
  min-width: 400px;
  height: auto; 
}
  
.note-text {
  display: block;
  margin-left: 50px;
}

.note-text h1 {
  font-size: 48px;
  margin-bottom: 60px;
  width: 600px;
  color: #364e96;/*文字色*/
  padding: 0.1em 0;/*上下の余白*/
  border-top: solid 5px #364e96;/*上線*/
  border-bottom: solid 5px #364e96;/*下線*/
}

.note-text p {
  font-size: 24px;
  margin-bottom: 10px;
}



a.btn_23 {
	display: block;
	text-align: center;
	text-decoration: none;
	width: 300px;
	
	padding: 1rem 4rem;
	font-weight: bold;
	border: 2px solid #364e96;
	color: #364e96;
	cursor: pointer;
	position: relative;
 	overflow: hidden;
 	z-index: 1;
  font-size: small;
  margin-top: 55px;
}
a.btn_23::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #364e96;
	transform: translateX(-100%);
	transition: all .3s;
	z-index: -1;
}
a.btn_23:hover::before {
	transform: translateX(0);
}
a.btn_23:hover {
	color: #fff;
}


footer {
 background-color: #092F54
 ;
 color: #f5f5f5;
 display: flex;
 justify-content: center;
 font-size: small;
 line-height: 2;
 margin-top: 200px;
}

footer img {
  max-width: 200px;
  margin-top: 30px;
  margin-bottom: 25px;
}

.footer-left {
  display: block;
  margin-right: 200px;
  margin-bottom: 50px;
}

footer ul {
  margin-top: 50px;
}

.footer-list {
  margin-left: 20px;
}


.footer-right {
  display: block;
  margin-top: 50px;
  margin-left: 200px;
}

.footer-list a:hover {
  color: #b8b8b8;
}

.footer-list2 a:hover {
  color: #b8b8b8;
}

#copyright {
  margin-top: 0px;
}


/* 代表挨拶 */

.about-head img {
 position: relative;
 width: 100%;
}

.main-head {
  position: relative;
}

.about-inhead {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #FFF;
  width: 400px;
  height: 70px;
  font-size: 48px;
  border-radius: 15px 15px 0 0;
  padding-top: 10px;
  padding-left: 20px;
}

.about-inhead span {
 font-size: medium;
}


.about-article {
  display: flex;
  margin-top: 100px;
  justify-content: center;
}

.about-article h1 {
  font-size: 48px;
}

.about-article h2 {
  padding-top: 32px;
  padding-left: 20px;
}

.about-mainimg {
  position: relative;

}

.about-img1 {
 text-align: center;
 margin-top: 50px;
}


.about-maintext {
  display: table;
  margin: auto;
  line-height: 2.5;
  margin-top: 30px;
}

.profiel {
  margin-top: 200px;
  
}

.profiel-article {
 display: flex;
 justify-content: center;
 margin-bottom: 50px;
}

.profiel h1 {
  font-size: 48px;
}

.profiel h2 {
  padding-top: 32px;
  padding-left: 20px;
}

.profiel section  {
 display: flex;
 justify-content: center;
 align-items: center;
}

.profiel img {
  width: 300px;
}

.profiel ul li {
  font-size: 18px;
  line-height: 1.8;
  padding-left: 40px;
}

.profiel {
  list-style-type: none;
  padding: 1em;
}

.profiel li {
  display: flex;
  align-items: center;
  gap: 0 5px;
  padding: .3em;
}

.profiel li::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23132762%22%20d%3D%22M8.2%2C20.6l-7.8-7.8c-0.5-0.5-0.5-1.2%2C0-1.7L2%2C9.4c0.5-0.5%2C1.2-0.5%2C1.7%2C0L9%2C14.7L20.3%2C3.4c0.5-0.5%2C1.2-0.5%2C1.7%2C0l1.7%2C1.7%20c0.5%2C0.5%2C0.5%2C1.2%2C0%2C1.7L9.8%2C20.6C9.4%2C21.1%2C8.6%2C21.1%2C8.2%2C20.6L8.2%2C20.6z%22%2F%3E%3C%2Fsvg%3E');
  content: '';
}

.profiel-box {
  display: flex;
  justify-content: center;
  margin-top: 120px;
}

.profiel-box1 {
    padding: 0.5em 1em;
    margin: 2em 0;
    font-weight: bold;
    background: #FFF;
    background-color: #092e5449;
    border-radius: 25px;/*角の丸み*/
    width: 500px;
    height: 350px;
    margin-right: 100px;
    
}

.profiel-box1 img {
  float: right;
  margin-top: 20px;
  margin-right: 20px;
}

.profiel-text {
  margin-top: 100px;
  margin-left: 50px;
}

.profiel-text1 {
  margin-bottom: 20px;
}

.profiel-text2 {
  margin-bottom: 100px;
}

.profiel-border {
  margin-right: 20px;
  margin-left: -30px;
  margin-bottom: 30px;
  border: 1.5px solid #092F54;
}

.profiel-box2 {
  padding: 0.5em 1em;
  margin: 2em 0;
  font-weight: bold;
  background: #FFF;
  background-color: #092e5449;
  border-radius: 25px;/*角の丸み*/
  width: 500px;
  height: 350px;
}

.profiel-box2 img {
 float: right;
 margin-top: 20px;
 margin-right: 20px;
}


.profiel-text3 {
  display: flex;
  align-items: center;
  gap: 0 10px;
  padding: .3em;
}

.profiel-text3::before {
  transform: rotate(-45deg);
  width: .4em;
  height: .4em;
  border-bottom: 3px solid #0e1b63;
  border-right: 3px solid #0e1a61;
  content: '';
}

.profiel-text3 a:hover {
  color: #575757;
}

/*会社概要*/

.outline {
  margin-top: 80px;
}

.outline-text {
  display: table;
  margin: auto;
  font-size: 24px;
  line-height: 2.5;
  border-bottom: 1px solid #0e1a61;
  width: 950px;
}


.outline-text2 {
  margin-left: 140px;
  line-height: 1.8;
  margin-top: -50px
}

/*会社理念*/

.philosophy1 {
  display: table;
  margin: 0 auto;
  margin-top: 80px;
  
}

.philosophy1-text {
  margin-bottom: 30px; 
}

.philosophy1-text h1 {
  font-size: 48px;
  color: #0e1a61;
  margin-bottom: 30px;
 
}

.philosophy1-text h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.philosophy1-text p {
  margin-bottom: 60px;
}

.philosophy2 {
  display: table;
  margin: 0 auto;
}

.philosophy2-text {
  margin-bottom: 30px;
}

.philosophy2-text h1 {
  font-size: 48px;
  color: #0e1a61;
  margin-bottom: 30px;
}

.philosophy2-text h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.philosophy2-text p {
  border-bottom: 2px solid #0e1a61;
  padding-bottom: 20px;
  line-height: 1.5;
}

.ciecle {
  position: relative;
}

.circle1 {
  display: inline-block;
  width: 250px;
  height: 500px;
  border-radius: 0 100% 100% 0% / 50%;
  background: #0e1a61;
  position: absolute;
  margin-top: 100px;
}

.circle2 {
  display: inline-block;
  width: 225px;
  height: 450px;
  border-radius: 100% 0 0 100% / 50%;
  background: #0e1a61;
  position: absolute;
  right: 0;
  margin-top: 400px;
  
}

.circle3 {
  display: inline-block;
  width: 175px;
  height: 350px;
  border-radius: 0 100% 100% 0% / 50%;
  background: #0e1a61;
  position: absolute;
}

.circle4 {
  display: inline-block;
  width: 175px;
  height: 350px;
  border-radius: 100% 0 0 100% / 50%;
  background: #0e1a61;
  position: absolute;
  right: 0;
  margin-top: 400px;
}

.circle5 {
  display: inline-block;
  width: 150px;
  height: 300px;
  border-radius: 0 100% 100% 0% / 50%;
  background: #0e1a61;
  position: absolute;
  margin-top: 800px;
}

/*サービス*/

.servicetext {
  margin-top: 100px;
  margin-left: 20px;
}


.service-article {
  display: flex;
  
}

.servicetext h1 {
  font-size: 64px;
  color: #0e1a61;
  padding-left: 100px;
}

.servicetext h1:before {
  position: absolute;
  content: '';
  margin-left: -30px;
  margin-top: 5px;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 20px rgb(138, 137, 137);
  border-bottom: solid 80px rgb(146, 146, 146);
}

.servicetext h1:after {
  position: absolute;
  content: '';
  margin-top: 80px;
  margin-left: -90px;
  width: 90%;
  border-bottom: solid 5px rgb(146, 146, 146);
}

.servicetext h2 {
  font-size: 28px;
  margin-top: 35px;
  margin-left: 20px;
}

.service-main {
  display: flex;
  margin: 70px 80px 70px 80px;
}

.service-main ul li {
  list-style: decimal;
  line-height: 1.5;
  margin-bottom: 10px;
  margin-left: 30px;
}

.service-main ul {
  margin-bottom: 20px;
}



a.btn1 {
	display: block;
	position: relative;
  text-align: center;
  margin: auto;
	width: 380px;
	padding: 1rem 4rem;
	font-weight: bold;
	border-radius: 10px;
	color: #0e1b63;
	border: 3px solid #0e1b63;
	box-shadow: 5px 5px #0e1b63;
	transition: 0.3s ease-in-out;
  font-size: 20px;
}

a.btn1:hover {
	box-shadow: none;
	transform: translate(5px, 5px);
	color: #0e1b63;
}

.service-contact p {
  text-align: center;
  font-size: 24px;
  margin-top: 150px;
  margin-bottom: 30px;
}


/*問い合わせ*/

.contact-article {
  margin-top: 150px;
  text-align: center;
  margin-bottom: 100px;
}

.checkbox {
  display: table;
  margin: auto;
  line-height: 1.5;
  margin-bottom: 50px;
}

.contact-main {
  display: table;
  margin: auto;
  line-height: 2.5;
  margin-bottom: 30px;
}

input[type="text"],input[type="email"] {
  width: 600px;
  background-color: rgb(247, 239, 230);
  outline: #3a3a3a;
}

textarea {
  width: 600px;
  outline: #3a3a3a;
  background: rgb(247, 239, 230)!important;
  resize: none;
}

.contact-main2 {
  font-size: small;
  line-height: 1.5;
  display: table;
  margin: auto;
}

.btn-area {
  text-align: center;
  margin-top: 20px;
}

.border {
  border-bottom: 1px solid rgb(112, 111, 111);
}

.border:hover {
  color: #999
}

textarea {
  height: 200px;
}

input[type="submit"] {
  background: #5283bb;
  border: none;
  color: white;
  font-size:17px;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 0 5px;
}

input[type="reset"] {
  background: #aaa;
  border: none;
  color: white;
  font-size:17px;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 0 5px;
}



#policy-main {
  line-height: 1.5;
  display: table;
  margin: auto;
}

#policy-main h1 {
  font-size: 24px;
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: bold;
}

#policy-main h2 {
  font-size: 18px;
  margin-top: 10px;
}





@media (max-width: 700px){
  #splash {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: #ffffff;
    text-align: center;
    color: #fff;
  }
  
  #splash-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  #splash-logo img {
    width: 500px;
  }
  
  
  body {
    box-sizing: border-box;
    margin: auto;
    min-width: 500px;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
  }
  
  header {
    display: table;
    margin: auto;
  }
  
  
  
  nav {
    background: #ffffff;
    color: #FFF;
    text-align: center;
    padding-top: 100px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    
  }
  
  nav ul ul {
    display: block;
  } 
  
  nav ul li {
   position: relative;
   
  } 
  
  nav ul li a {
    display: block;
    text-decoration: none;
    color: #000000;
    padding: 20px 30px;
    transition: all .3s;
    margin-top: 0;
  }
  
  nav ul li li a {
    padding: 10px 55px;
  }
  
  nav ul li a:hover {
    color: #b1b0b0;
  }
  
  nav ul li.nav-about2::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 35px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    transform: rotate(135deg);
  }
  
  nav ul li.nav-service2::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 35px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #999;
    border-left: 2px solid #999;
    transform: rotate(135deg);
  }
  
  nav ul li.nav-contact2::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 35px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #999;
    border-left: 2px solid #999;
    transform: rotate(135deg);
  }
  
  nav ul ul li.nav-about2::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 17px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
  }
  
  nav li.nav-about2 ul {
    position: absolute;
    left: -27px;
    top: 62px;
    z-index: 4;
    background: #f9fafa;
    width: 180px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    
  }
  
  nav li.nav-about2:hover > ul,
  nav li.nav-about ul li:hover > ul,
  nav li.nav-about:active > ul,
  nav li.nav-about ul li:active > ul{
    visibility: visible;
    opacity: 1;
  }
  
  nav li.nav-about2 ul li a{
    color: #070707;
    border-bottom: solid 1px rgba(255, 255, 255, 0.6);
    font-size: small;
  }
  
  nav li.nav-about2 ul li:last-child a{
    border-bottom: none;
  }
  
  nav li.nav-about2 ul li a:hover,
  nav li.nav-about2 ul li a:active{
    background: #d9e8fc;
  }
  
  nav li.nav-about2 ul ul{
    top: 0;
    left: 182px;
    background: #e4effa;
  }
  
  nav li.nav-about2 ul ul li a:hover,
  nav li.nav-about2 ul ul li a:active{
    background: #448ED3;
  }
  
  .nav2 ul li a br {
    font-size: large;
  }
  
  .nav-note2  {
  background: #e0e0e080;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 100px;
  padding: 10px -25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  margin: 0;
  margin-left: 60px;
  height: 90px;
  margin-top: 0px;
}

.nav-note2 a {
  border-bottom: #000000;
}

.nav-note2 :before {
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  width: 0;
  border-width: 0 18px 18px 0;
  border-style: solid;
  border-color: #fafcfc #fafcfc #c7c7c7 #cbcbcb;
  box-shadow: -1px 1px 2px rgb(0 0 0 / 10%);
}
  
  
  nav ul li a span {
    font-size: small;
  }
  
  
  .home img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 8em;
  }
  
  #main {
    margin-top: 100px;
  }
  
  .main2 {
   font-size: 48px;
   margin: 0 0 50px 50px;
  }
  
  
  .fadeUp {
    animation-name:fadeInAnime;
    animation-duration:3s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeInAnime{
      from {
        opacity: 0;
      }
    
      to {
        opacity: 1;
      }
    }
  
  .main3 {
    opacity: 0;
  }
  
  
  .main3 {
    text-align: center;
    font-size: 36px;
    margin: 0 auto 30px auto;
  }
  
  .box2 {
    margin: 4em 4em;
    padding:2em;/*内側余白*/
    border-left:solid 5px #364e96;/*線の種類・太さ・色*/
    background-color:#f5f5f5;/*背景色*/
    box-shadow:3px 1px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 18px;
  }
  
  .box2 h2 {
    margin-bottom: 50px; 
    padding: 0;
  }
  
  
  .about-menu {
    display: flex;
    justify-content: center;
    padding: 4rem 1rem;
  }
  
  .about-img img {
    width: 100%;
    max-width: 300px;
    min-width: 300px;
    height: auto; 
    
  }
    
  .about-text {
    display: block;
    margin-left: 50px;
  }
  
  .about-text h1 {
    font-size: 36px;
    margin-bottom: 60px;
    width: 300px;
    color: #364e96;/*文字色*/
    padding: 0.1em 0;/*上下の余白*/
    border-top: solid 5px #364e96;/*上線*/
    border-bottom: solid 5px #364e96;/*下線*/
  }
  
  .about-text p {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .about-text p img {
    margin-top: 50px;
    padding-left: 360px;
  }
  
  .service-menu {
    display: flex;
    justify-content: center;
    padding: 4rem 1rem;
  }
  
  .service-img img {
    width: 100%;
    max-width: 300px;
    min-width: 300px;
    height: auto; 
  }
    
  .service-text {
    display: block;
    margin-left: 50px;
  }
  
  .service-text h1 {
    font-size: 36px;
    margin-bottom: 60px;
    width: 300px;
    color: #364e96;/*文字色*/
    padding: 0.1em 0;/*上下の余白*/
    border-top: solid 5px #364e96;/*上線*/
    border-bottom: solid 5px #364e96;/*下線*/
  }
  
  .service-text p {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .service-text p img {
    margin-top: 50px;
    padding-left: 360px;
  
  }
  
 
  .contact-menu {
    display: flex;
    justify-content: center;
    padding: 4rem 1rem;
  }
  
  .contact-img img {
    width: 100%;
    max-width: 300px;
    min-width: 300px;
    height: auto; 
  }
    
  .contact-text {
    display: block;
    margin-left: 50px;
  }
  
  .contact-text h1 {
    font-size: 36px;
    margin-bottom: 60px;
    width: 300px;
    color: #364e96;/*文字色*/
    padding: 0.1em 0;/*上下の余白*/
    border-top: solid 5px #364e96;/*上線*/
    border-bottom: solid 5px #364e96;/*下線*/
  }
  
  .contact-text p {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .contact-text p img {
    margin-top: 50px;
    padding-left: 360px;
  }

  .note-menu {
    display: flex;
    justify-content: center;
    padding: 4rem 1rem;
  }
  
  .note-img img {
    width: 100%;
    max-width: 300px;
    min-width: 300px;
    height: auto; 
  }
    
  .note-text {
    display: block;
    margin-left: 50px;
  }
  
  .note-text h1 {
    font-size: 36px;
    margin-bottom: 60px;
    width: 300px;
    color: #364e96;/*文字色*/
    padding: 0.1em 0;/*上下の余白*/
    border-top: solid 5px #364e96;/*上線*/
    border-bottom: solid 5px #364e96;/*下線*/
  }
  
  .note-text p {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .note-text p img {
    margin-top: 50px;
    padding-left: 360px;
  }
  
  a.btn_23 {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 300px;
    
    padding: 1rem 4rem;
    font-weight: bold;
    border: 2px solid #364e96;
    color: #364e96;
    cursor: pointer;
    position: relative;
     overflow: hidden;
     z-index: 1;
    font-size: small;
    margin-top: 55px;
  }
  a.btn_23::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #364e96;
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
  }
  a.btn_23:hover::before {
    transform: translateX(0);
  }
  a.btn_23:hover {
    color: #fff;
  }
  
  
  footer {
   background-color: #092F54
   ;
   color: #f5f5f5;
   display: flex;
   justify-content: center;
   font-size: small;
   line-height: 2;
   margin-top: 200px;
  }
  
  footer img {
    max-width: 200px;
    margin-top: 30px;
    margin-bottom: 25px;
  }
  
  .footer-left {
    display: block;
    margin-right: 50px;
    margin-bottom: 50px;
  }
  
  footer ul {
    margin-top: 50px;
  }
  
  .footer-list {
    margin-left: 20px;
  }
  
  .footer-right {
    display: block;
    margin-top: 50px;
    margin-left: 30px;
  }
  
  .footer-list a:hover {
    color: #b8b8b8;
  }
  
  .footer-list2 a:hover {
    color: #b8b8b8;
  }
  
  #copyright {
    margin-top: 45px;
  }
  
  
  /* 代表挨拶 */
  
  .about-head img {
   position: relative;
   width: 100%;
  }
  
  .main-head {
    position: relative;
  }
  
  .about-inhead {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #FFF;
    width: 400px;
    height: 70px;
    font-size: 48px;
    border-radius: 15px 15px 0 0;
    padding-top: 10px;
    padding-left: 20px;
  }
  
  .about-inhead span {
   font-size: medium;
  }
  
  
  .about-article {
    display: flex;
    margin-top: 100px;
    justify-content: center;
  }
  
  .about-article h1 {
    font-size: 48px;
  }
  
  .about-article h2 {
    padding-top: 32px;
    padding-left: 20px;
  }
  
  .about-mainimg {
    position: relative;
  
  }
  
  .about-img1 {
   text-align: center;
   margin-top: 50px;
  }
  
  
  .about-maintext {
    display: table;
    margin: auto;
    line-height: 2.5;
    margin-top: 30px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 14px;
  }
  
  .profiel {
    margin-top: 200px;
  }
  
  .profiel-article {
   display: flex;
   justify-content: center;
   margin-bottom: 50px;
  }
  
  .profiel h1 {
    font-size: 48px;
  }
  
  .profiel h2 {
    padding-top: 32px;
    padding-left: 20px;
  }
  
  .profiel section  {
   display: flex;
   justify-content: center;
   align-items: center;
  }
  
  .profiel img {
    width: 300px;
  }
  
  .profiel ul li {
    font-size: 16px;
    line-height: 1.8;
    padding-left: 40px;
    
  }
  
  .profiel {
    list-style-type: none;
    padding: 1em;
  }
  
  .profiel li {
    display: flex;
    align-items: center;
    gap: 0 5px;
    padding: .3em;
  }
  
  .profiel li::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23132762%22%20d%3D%22M8.2%2C20.6l-7.8-7.8c-0.5-0.5-0.5-1.2%2C0-1.7L2%2C9.4c0.5-0.5%2C1.2-0.5%2C1.7%2C0L9%2C14.7L20.3%2C3.4c0.5-0.5%2C1.2-0.5%2C1.7%2C0l1.7%2C1.7%20c0.5%2C0.5%2C0.5%2C1.2%2C0%2C1.7L9.8%2C20.6C9.4%2C21.1%2C8.6%2C21.1%2C8.2%2C20.6L8.2%2C20.6z%22%2F%3E%3C%2Fsvg%3E');
    content: '';
  }
  
  .profiel-box {
    display: flex;
    justify-content: center;
    margin-top: 120px;
  }
  
  .profiel-box1 {
      padding: 0.5em 1em;
      margin: 2em 0;
      font-weight: bold;
      background: #FFF;
      background-color: #092e5449;
      border-radius: 25px;/*角の丸み*/
      width: 500px;
      height: 350px;
      margin-right: 100px;
      
  }
  
  .profiel-box1 img {
    float: right;
    margin-top: 20px;
    margin-right: 20px;
  }
  
  .profiel-text {
    margin-top: 100px;
    margin-left: 50px;
  }
  
  .profiel-text1 {
    margin-bottom: 20px;
  }
  
  .profiel-text2 {
    margin-bottom: 100px;
  }
  
  .profiel-border {
    margin-right: 20px;
    margin-left: -30px;
    margin-bottom: 30px;
    border: 1.5px solid #092F54;
  }
  
  .profiel-box2 {
    padding: 0.5em 1em;
    margin: 2em 0;
    font-weight: bold;
    background: #FFF;
    background-color: #092e5449;
    border-radius: 25px;/*角の丸み*/
    width: 500px;
    height: 350px;
  }
  
  .profiel-box2 img {
   float: right;
   margin-top: 20px;
   margin-right: 20px;
  }
  
  
  .profiel-text3 {
    display: flex;
    align-items: center;
    gap: 0 10px;
    padding: .3em;
  }
  
  .profiel-text3::before {
    transform: rotate(-45deg);
    width: .4em;
    height: .4em;
    border-bottom: 3px solid #0e1b63;
    border-right: 3px solid #0e1a61;
    content: '';
  }
  
  .profiel-text3 a:hover {
    color: #575757;
  }
  
  /*会社概要*/
  
  .outline {
    margin-top: 80px;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .outline-text {
    display: table;
    margin: auto;
    font-size: 24px;
    line-height: 2.5;
    border-bottom: 1px solid #0e1a61;
    width:100%;
  }
  
  
  .outline-text2 {
    margin-left: 140px;
    line-height: 1.8;
    margin-top: -50px
  }
  
  /*会社理念*/
  
  .philosophy1 {
    display: table;
    margin: 0 auto;
    margin-top: 80px;
    
  }
  
  .philosophy1-text {
    margin-bottom: 30px; 
  }
  
  .philosophy1-text h1 {
    font-size: 48px;
    color: #0e1a61;
    margin-bottom: 30px;
   
  }
  
  .philosophy1-text h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .philosophy1-text p {
    margin-bottom: 60px;
  }
  
  .philosophy2 {
    display: table;
    margin: 0 auto;
  }
  
  .philosophy2-text {
    margin-bottom: 30px;
  }
  
  .philosophy2-text h1 {
    font-size: 48px;
    color: #0e1a61;
    margin-bottom: 30px;
  }
  
  .philosophy2-text h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .philosophy2-text p {
    border-bottom: 2px solid #0e1a61;
    padding-bottom: 20px;
    line-height: 1.5;
  }
  
  .ciecle {
    position: relative;
  }
  
  .circle1 {
    display: inline-block;
    width: 50px;
    height: 100px;
    border-radius: 0 100% 100% 0% / 50%;
    background: #0e1a61;
    position: absolute;
    margin-top: 100px;
  }
  
  .circle2 {
    display: inline-block;
    width: 50px;
    height: 100px;
    border-radius: 100% 0 0 100% / 50%;
    background: #0e1a61;
    position: absolute;
    right: 0;
    margin-top: 400px;
    
  }
  
  .circle3 {
    display: inline-block;
    width: 25px;
    height: 50px;
    border-radius: 0 100% 100% 0% / 50%;
    background: #0e1a61;
    position: absolute;
  }
  
  .circle4 {
    display: inline-block;
    width: 25px;
    height: 50px;
    border-radius: 100% 0 0 100% / 50%;
    background: #0e1a61;
    position: absolute;
    right: 0;
    margin-top: 400px;
  }
  
  .circle5 {
    display: inline-block;
    width: 25px;
    height: 50px;
    border-radius: 0 100% 100% 0% / 50%;
    background: #0e1a61;
    position: absolute;
    margin-top: 800px;
  }
  
  /*サービス*/
  
  .servicetext {
    margin-top: 100px;
    margin-left: 20px;
  }
  
  
  .service-article {
    display: flex;
    
  }
  
  .servicetext h1 {
    font-size: 54px;
    color: #0e1a61;
    padding-left: 20px;
  }
  
  .servicetext h1:before {
    position: absolute;
    content: '';
    margin-left: -30px;
    margin-top: 5px;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 20px rgb(138, 137, 137);
    border-bottom: solid 80px rgb(146, 146, 146);
  }
  
  .servicetext h1:after {
    position: absolute;
    content: '';
    margin-top: 80px;
    margin-left: -90px;
    width: 98%;
    border-bottom: solid 5px rgb(146, 146, 146);
  }
  
  .servicetext h2 {
    font-size: 28px;
    margin-top: 20px;
    margin-left: 20px;
  }
  
  .service-main {
    display: block;
    margin: 50px 40px 70px 40px;
  }

  .service-main p img {
   display: table;
   margin: auto;
  }
  
  .service-main ul li {
    list-style: decimal;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 30px;
  }
  
  .service-main ul {
    margin-bottom: 20px;
  }
  
  
  
  a.btn1 {
    display: block;
    position: relative;
    margin: auto;
    width: 380px;
    padding: 1rem 4rem;
    font-weight: bold;
    border-radius: 10px;
    color: #0e1b63;
    border: 3px solid #0e1b63;
    box-shadow: 5px 5px #0e1b63;
    transition: 0.3s ease-in-out;
    font-size: 24px;
  }
  
  a.btn1:hover {
    box-shadow: none;
    transform: translate(5px, 5px);
    color: #0e1b63;
  }
  
  .service-contact p {
    text-align: center;
    font-size: 24px;
    margin-top: 150px;
    margin-bottom: 30px;
  }
  
  
  /*問い合わせ*/
  
  .contact-article {
    margin-top: 150px;
    text-align: center;
    margin-bottom: 100px;
  }
  
  .checkbox {
    display: table;
    margin: auto;
    line-height: 1.5;
    margin-bottom: 50px;
  }
  
  .contact-main {
    display: table;
    margin: auto;
    line-height: 2.5;
    margin-bottom: 30px;
  }
  
  input[type="text"],input[type="email"],textarea {
    width: 600px;
    background-color: rgb(247, 239, 230);
    outline: #3a3a3a;
  }
  
  textarea {
    width: 600px;
    outline: #3a3a3a;
    background-color: rgb(247, 239, 230)!important;
    resize: none;
  }
  
  .contact-main2 {
    font-size: small;
    line-height: 1.5;
    display: table;
    margin: auto;
  }
  
  .btn-area {
    text-align: center;
    margin-top: 20px;
  }
  
  input[type="submit"] {
    background: #5283bb;
    border: none;
    color: white;
    font-size:17px;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 0 5px;
  }
  
  input[type="reset"] {
    background: #aaa;
    border: none;
    color: white;
    font-size:17px;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 0 5px;
  }
  
  #policy-main {
    line-height: 1.5;
    display: table;
    margin: auto;
  }
  
  #policy-main h1 {
    font-size: 24px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  #policy-main h2 {
    font-size: 18px;
    margin-top: 10px;
  }
}






@media (max-width: 450px){
  #splash {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: #ffffff;
    text-align: center;
    color: #fff;
  }
  
  #splash-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  #splash-logo img {
    width: 450px;
  }
  
  
  body {
    box-sizing: border-box;
    margin: auto;
    min-width: 400px;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
  }
  
  header {
   margin: auto;
   width: 400px;
  }
  
  
  
  nav {
    background: #ffffff;
    color: #FFF;
    padding-top: 20px;
  }
  
  nav ul {
    list-style: none;
    display: table;
    margin: auto;
    
  }
  
  nav ul ul {
    display: block;
  }
  
  nav ul li {
   position: relative;
   
  }
  
  nav ul li a {
    display: block;
    text-decoration: none;
    color: #000000;
    padding: 20px 30px;
    transition: all .3s;
    margin-top: 0;
  }
  
  nav ul li li a {
    padding: 10px 55px;
  }
  
  nav ul li a:hover {
    color: #b1b0b0;
  }
  
  nav ul li.nav-about2::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 35px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    transform: rotate(135deg);
  }
  
  nav ul li.nav-service2::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 35px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #999;
    border-left: 2px solid #999;
    transform: rotate(135deg);
  }
  
  nav ul li.nav-contact2::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 35px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #999;
    border-left: 2px solid #999;
    transform: rotate(135deg);
  }
  
  nav ul ul li.nav-about2::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 17px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
  }
  
  nav li.nav-about2 ul {
    position: absolute;
    left: -20px;
    top: 62px;
    z-index: 4;
    background: #f9fafa;
    width: 180px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    
  }
  
  nav li.nav-about2:hover > ul,
  nav li.nav-about ul li:hover > ul,
  nav li.nav-about:active > ul,
  nav li.nav-about ul li:active > ul{
    visibility: visible;
    opacity: 1;
  }
  
  nav li.nav-about2 ul li a{
    color: #070707;
    border-bottom: solid 1px rgba(255, 255, 255, 0.6);
    font-size: small;
  }
  
  nav li.nav-about2 ul li:last-child a{
    border-bottom: none;
  }
  
  nav li.nav-about2 ul li a:hover,
  nav li.nav-about2 ul li a:active{
    background: #d9e8fc;
  }
  
  nav li.nav-about2 ul ul{
    top: 0;
    left: 182px;
    background: #e4effa;
  }
  
  nav li.nav-about2 ul ul li a:hover,
  nav li.nav-about2 ul ul li a:active{
    background: #448ED3;
  }
  
  .nav2 ul li a br {
    font-size: large;
  }
  
  .nav-note2  {
    background: #e0e0e080;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 100px;
    padding: 10px -25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    margin: 0;
    margin-left: 17px;
    height: 90px;
    margin-top: 20px;
  }
  
  .nav-note2 a {
    border-bottom: #000000;
  }
  
  .nav-note2 :before {
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    width: 0;
    border-width: 0 18px 18px 0;
    border-style: solid;
    border-color: #fafcfc #fafcfc #c7c7c7 #cbcbcb;
    box-shadow: -1px 1px 2px rgb(0 0 0 / 10%);
  }
  
  
  
  nav ul li a span {
    font-size: small;
  }
  
  
  .home img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 8em;
  }
  
  #main {
    margin-top: 100px;
  }
  
  .main2 {
   font-size: 32px;
   margin: 0 0 50px 50px;
  }
  
  
  .fadeUp {
    animation-name:fadeInAnime;
    animation-duration:3s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeInAnime{
      from {
        opacity: 0;
      }
    
      to {
        opacity: 1;
      }
    }
  
  .main3 {
    opacity: 0;
  }
  
  
  .main3 {
    text-align: center;
    font-size: 24px;
    margin: 0 auto 30px auto;
  }
  
  .box2 {
    margin: 2em 2em;
    padding:2em;/*内側余白*/
    border-left:solid 5px #364e96;/*線の種類・太さ・色*/
    background-color:#f5f5f5;/*背景色*/
    box-shadow:3px 1px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 14px;
  }
  
  .box2 h2 {
    margin-bottom: 50px; 
    padding: 0;
  }
  
  
  .about-menu {
    display: block;
    justify-content: center;
    padding: 2rem 1rem;
    margin-left: 0px;
  }
  
  .about-img img {
    width: 100%;
    max-width: 350px;
    min-width: 350px;
    height: auto; 
    padding-bottom: 20px;
    padding-left: 50px;
  }
    
  .about-text {
    display: block;
  }
  
  .about-text h1 {
    font-size: 36px;
    margin-bottom: 60px;
    width: 300px;
    color: #364e96;/*文字色*/
    padding: 0.1em 0;/*上下の余白*/
    border-top: solid 5px #364e96;/*上線*/
    border-bottom: solid 5px #364e96;/*下線*/
  }
  
  .about-text p {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .about-text p img {
    margin-top: 50px;
    padding-left: 360px;
  }
  
  .service-menu {
    display: block;
    justify-content: center;
    padding: 2rem 1rem;
  }
  
  .service-img img {
    width: 100%;
    max-width: 350px;
    min-width: 350px;
    height: auto; 
    padding-bottom: 20px;
    padding-left: 50px;
  }
    
  .service-text {
    display: block;
    margin-left: 50px;
  }
  
  .service-text h1 {
    font-size: 36px;
    margin-bottom: 60px;
    width: 300px;
    color: #364e96;/*文字色*/
    padding: 0.1em 0;/*上下の余白*/
    border-top: solid 5px #364e96;/*上線*/
    border-bottom: solid 5px #364e96;/*下線*/
  }
  
  .service-text p {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .service-text p img {
    margin-top: 50px;
    padding-left: 360px;
  
  }
  
  .contact-menu {
    display: block;
    justify-content: center;
    padding: 2rem 1rem;
  }
  
  .contact-img img {
    width: 100%;
    max-width: 350px;
    min-width: 350px;
    height: auto; 
    padding-bottom: 20px;
    padding-left: 50px;
  }
    
  .contact-text {
    display: block;
    margin-left: 50px;
  }
  
  .contact-text h1 {
    font-size: 36px;
    margin-bottom: 60px;
    width: 300px;
    color: #364e96;/*文字色*/
    padding: 0.1em 0;/*上下の余白*/
    border-top: solid 5px #364e96;/*上線*/
    border-bottom: solid 5px #364e96;/*下線*/
  }
  
  .contact-text p {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .contact-text p img {
    margin-top: 50px;
    padding-left: 360px;
  }
  
  .note-menu {
    display: block;
    justify-content: center;
    padding: 2rem 1rem;
  }
  
  .note-img img {
    width: 100%;
    max-width: 350px;
    min-width: 350px;
    height: auto; 
    padding-bottom: 20px;
    padding-left: 50px;
  }
    
  .note-text {
    display: block;
    margin-left: 50px;
  }
  
  .note-text h1 {
    font-size: 36px;
    margin-bottom: 60px;
    width: 300px;
    color: #364e96;/*文字色*/
    padding: 0.1em 0;/*上下の余白*/
    border-top: solid 5px #364e96;/*上線*/
    border-bottom: solid 5px #364e96;/*下線*/
  }
  
  .note-text p {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .note-text p img {
    margin-top: 50px;
    padding-left: 360px;
  }
  
  
  a.btn_23 {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 300px;
    
    padding: 1rem 4rem;
    font-weight: bold;
    border: 2px solid #364e96;
    color: #364e96;
    cursor: pointer;
    position: relative;
     overflow: hidden;
     z-index: 1;
    font-size: small;
    margin-top: 55px;
  }
  a.btn_23::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #364e96;
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
  }
  a.btn_23:hover::before {
    transform: translateX(0);
  }
  a.btn_23:hover {
    color: #fff;
  }
  
  
  footer {
   background-color: #092F54
   ;
   color: #f5f5f5;
   display: block;
   text-align: center;
   font-size: small;
   line-height: 2;
   margin-top: 200px;
  }
  
  footer img {
    max-width: 200px;
    margin-top: 30px;
    margin-bottom: 25px;
  }
  
  .footer-left {
    display: block;
    margin-right: 0px;
    margin-bottom: 20px;
    
  }
  
  footer ul {
    margin-top: 20px;
  }
  
  .footer-list {
    margin-left: 10px;
    display: block;
  }
  
  .footer-right {
    display: block;
    margin-top: 20px;
    margin-left: 0px;
  }
  
  .footer-list a:hover {
    color: #b8b8b8;
  }
  
  .footer-list2 a:hover {
    color: #b8b8b8;
  }
  
  #copyright {
    margin-top: 20px;
  }
  
  
  /* 代表挨拶 */
  
  .about-head img {
   position: relative;
   width: 100%;
  }
  
  .main-head {
    position: relative;
  }
  
  .about-inhead {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #FFF;
    width: 300px;
    height: 40px;
    font-size: 24px;
    border-radius: 15px 15px 0 0;
    padding-top: 10px;
    padding-left: 20px;
  }
  
  .about-inhead span {
   font-size: medium;
  }
  
  
  .about-article {
    display: flex;
    margin-top: 100px;
    justify-content: center;
  }
  
  .about-article h1 {
    font-size: 48px;
  }
  
  .about-article h2 {
    padding-top: 32px;
    padding-left: 20px;
  }
  
  .about-mainimg {
    position: relative;
  
  }
  
  .about-img1 {
   text-align: center;
   margin-top: 50px;
  }
  
  
  .about-maintext {
    display: table;
    margin: auto;
    line-height: 2.5;
    margin-top: 30px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 11px;
  }
  
  .profiel {
    margin-top: 200px;
  }
  
  .profiel-article {
   display: flex;
   justify-content: center;
   margin-bottom: 50px;
  }
  
  .profiel h1 {
    font-size: 48px;
  }
  
  .profiel h2 {
    padding-top: 32px;
    padding-left: 20px;
  }
  
  .profiel section  {
   display: block;
   text-align: center;
   
  }
  
  .profiel img {
    width: 300px;
  }

  .about-img1 img{
    width: 100%;
  }
  
  .profiel ul li {
    font-size: 14px;
    line-height: 1.8;
    padding-left: 40px;
    
  }
  
  .profiel {
    list-style-type: none;
    padding: 1em;
  }
  
  .profiel li {
    display: flex;
    gap: 0 5px;
    padding: .3em;
  }
  
  .profiel li::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23132762%22%20d%3D%22M8.2%2C20.6l-7.8-7.8c-0.5-0.5-0.5-1.2%2C0-1.7L2%2C9.4c0.5-0.5%2C1.2-0.5%2C1.7%2C0L9%2C14.7L20.3%2C3.4c0.5-0.5%2C1.2-0.5%2C1.7%2C0l1.7%2C1.7%20c0.5%2C0.5%2C0.5%2C1.2%2C0%2C1.7L9.8%2C20.6C9.4%2C21.1%2C8.6%2C21.1%2C8.2%2C20.6L8.2%2C20.6z%22%2F%3E%3C%2Fsvg%3E');
    content: '';
  }
  
  .profiel-box {
    display: block;
    margin-top: 120px;
  }
  
  .profiel-box1 {
      padding: 0.5em 1em;
      margin: 2em 0em;
      font-weight: bold;
      background: #FFF;
      background-color: #092e5449;
      border-radius: 25px;/*角の丸み*/
      width: 400px;
      height: 350px;
      
  }
  
  .profiel-box1 img {
    float: right;
    margin-top: 20px;
    margin-right: 20px;
  }
  
  .profiel-text {
    margin-top: 100px;
    margin-left: 50px;
  }
  
  .profiel-text1 {
    margin-bottom: 20px;
  }
  
  .profiel-text2 {
    margin-bottom: 100px;
  }
  
  .profiel-border {
    margin-right: 20px;
    margin-left: -30px;
    margin-bottom: 30px;
    border: 1.5px solid #092F54;
  }
  
  .profiel-box2 {
    padding: 0.5em 1em;
    margin: 2em 0em;
  
    font-weight: bold;
    background: #FFF;
    background-color: #092e5449;
    border-radius: 25px;/*角の丸み*/
    width: 400px;
    height: 350px;
  }
  
  .profiel-box2 img {
   float: right;
   margin-top: 20px;
   margin-right: 20px;
  }
  
  
  .profiel-text3 {
    display: flex;
    align-items: center;
    gap: 0 10px;
    padding: .3em;
  }
  
  .profiel-text3::before {
    transform: rotate(-45deg);
    width: .4em;
    height: .4em;
    border-bottom: 3px solid #0e1b63;
    border-right: 3px solid #0e1a61;
    content: '';
  }
  
  .profiel-text3 a:hover {
    color: #575757;
  }
  
  /*会社概要*/
  
  .outline {
    margin-top: 80px;
  }
  
  .outline-text {
    display: table;
    margin: auto;
    font-size: 16px;
    line-height: 2.5;
    border-bottom: 1px solid #0e1a61;
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  
  .outline-text2 {
    margin-left: 95px;
    line-height: 1.8;
    margin-top: -35px
  }
  
  /*会社理念*/
  
  .philosophy1 {
    display: table;
    margin: 0 auto;
    margin-top: 80px;
    
  }
  
  .philosophy1-text {
    margin-bottom: 30px; 
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .philosophy1-text h1 {
    font-size: 48px;
    color: #0e1a61;
    margin-bottom: 30px;
   
  }
  
  .philosophy1-text h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .philosophy1-text p {
    margin-bottom: 60px;
  }
  
  .philosophy2 {
    display: table;
    margin: 0 auto;
  }
  
  .philosophy2-text {
    margin-bottom: 30px;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .philosophy2-text h1 {
    font-size: 48px;
    color: #0e1a61;
    margin-bottom: 30px;
  }
  
  .philosophy2-text h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .philosophy2-text p {
    border-bottom: 2px solid #0e1a61;
    padding-bottom: 20px;
    line-height: 1.5;
  }
  
  .ciecle {
    position: relative;
  }
  
  .circle1 {
    display: inline-block;
    width: 50px;
    height: 100px;
    border-radius: 0 100% 100% 0% / 50%;
    background: #0e1a61;
    position: absolute;
    margin-top: -20px;
  }
  
  .circle2 {
    display: inline-block;
    width: 50px;
    height: 100px;
    border-radius: 100% 0 0 100% / 50%;
    background: #0e1a61;
    position: absolute;
    right: 0;
    margin-top: 300px;
    
  }
  
  .circle3 {
    display: inline-block;
    width: 25px;
    height: 50px;
    border-radius: 0 100% 100% 0% / 50%;
    background: #0e1a61;
    position: absolute;
    margin-top: -50px;
  }
  
  .circle4 {
    display: inline-block;
    width: 25px;
    height: 50px;
    border-radius: 100% 0 0 100% / 50%;
    background: #0e1a61;
    position: absolute;
    right: 0;
    margin-top: 400px;
  }
  
  .circle5 {
    display: inline-block;
    width: 25px;
    height: 50px;
    border-radius: 0 100% 100% 0% / 50%;
    background: #0e1a61;
    position: absolute;
    margin-top: 850px;
  }
  
  /*サービス*/
  
  .servicetext {
    margin-top: 100px;
    margin-left: 10px;
  }
  
  
  .service-article {
    display: flex;
    
  }
  
  .servicetext h1 {
    font-size: 54px;
    color: #0e1a61;
    padding-left: 20px;
  }
  
  .servicetext h1:before {
    position: absolute;
    content: '';
    margin-left: -30px;
    margin-top: 5px;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 20px rgb(138, 137, 137);
    border-bottom: solid 80px rgb(146, 146, 146);
  }
  
  .servicetext h1:after {
    position: absolute;
    content: '';
    margin-top: 80px;
    margin-left: -90px;
    width: 98%;
    border-bottom: solid 5px rgb(146, 146, 146);
  }
  
  .servicetext h2 {
    font-size: 28px;
    margin-top: 10px;
    margin-left: 20px;
  }
  
  .service-main {
    display: block;
    margin: 70px 40px 70px 40px;

  
  .service-main ul li {
    list-style: decimal;
    line-height: 1.5;
    margin-bottom: 10px;
    margin-left: 10px;
  }
  
  .service-main ul {
    margin-bottom: 10px;
  }
  
  
  
  a.btn1 {
    display: block;
    position: relative;
    margin: auto;
    width: 380px;
    padding: 1rem 4rem;
    font-weight: bold;
    border-radius: 10px;
    color: #0e1b63;
    border: 3px solid #0e1b63;
    box-shadow: 5px 5px #0e1b63;
    transition: 0.3s ease-in-out;
    font-size: 24px;
  }
  
  a.btn1:hover {
    box-shadow: none;
    transform: translate(5px, 5px);
    color: #0e1b63;
  }
  
  .service-contact p {
    text-align: center;
    font-size: 20px;
    margin-top: 150px;
    margin-bottom: 30px;
  }
  }
  @media (max-width: 450px){
  /*問い合わせ*/
  
  .contact-article {
    margin-top: 150px;
    text-align: center;
    margin-bottom: 100px;
  }
  
  .contact-main {
    display: table;
    margin: auto;
    line-height: 2.5;
    margin-bottom: 30px;
    
  }
  
  input[type="text"],input[type="email"] {
    width: 400px;
    background-color: rgb(247, 239, 230);
    outline: #3a3a3a;
    
  }
  
  textarea {
    width: 400px;
    outline: #3a3a3a;
    background: rgb(247, 239, 230)!important;
    resize: none;
    
  }
  
  .contact-main2 {
    font-size: small;
    line-height: 1.5;
    display: table;
    margin: auto;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  /* .btn-area {
    text-align: center;
    margin-top: 20px;
  } */
  
  input[type="submit"] {
    background: #5283bb;
    border: none;
    color: white;
    font-size:17px;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 0 5px;
  }
  
  input[type="reset"] {
    background: #aaa;
    border: none;
    color: white;
    font-size:17px;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 0 5px;
  }

  /* 送信ボタン */
.submit-btn {
  /* buttonタグのリセットCSS */
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;

  color: #fff;
  padding: 8px 24px;
  background-color: #3abec1;
  cursor: pointer; /* ポインターカーソルを表示 */
}

.submit-btn[disabled] {
  background-color: #ccc;
  cursor: not-allowed; /* クリック不可のカーソルを表示 */
}

.form-mail {
  display: table;
  margin: auto;
  padding-top: 150px;
}

a.form-btn {
  display: block;
  position: relative;
  margin: auto;
  width: 600px;
  padding: 1rem 4rem;
  font-weight: bold;
  border-radius: 10px;
  color: #0e1b63;
  border: 3px solid #0e1b63;
  box-shadow: 5px 5px #0e1b63;
  transition: 0.3s ease-in-out;
  font-size: 24px;
}

a.form-btn:hover {
  box-shadow: none;
  transform: translate(5px, 5px);
  color: #0e1b63;
}
  
  #policy-main {
    line-height: 1.5;
    display: table;
    margin: auto;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  #policy-main h1 {
    font-size: 24px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  #policy-main h2 {
    font-size: 18px;
    margin-top: 10px;
  }
  }
}
