@charset "UTF-8";

/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type="button"] {
  -webkit-appearance: none;
}

html {
  height: 100%;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  height: 100%;
  background-image:url(../img/bg_01.jpg);
  background-repeat: repeat;
}

img,
video {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

img a,
video a {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 1s;
  transition: 1s;
}

a:hover {
  opacity: 0.6;
  -webkit-transition: 1s;
  transition: 1s;
}
.c-top{
  margin-top: 150px;
  height: 700px;
}
@media screen and (max-width: 768px) {
  .c-top{
    margin-top: 85px;
    height: 100%;
  }
}
.u-Btm-XXXL {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .u-Btm-XXXL {
    margin-bottom: 60px;
  }
}

.u-Btm-XXL {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .u-Btm-XXL {
    margin-bottom: 50px;
  }
}

.u-Btm-XL {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .u-Btm-XL {
    margin-bottom: 24px;
  }
}

.u-Btm-L {
  margin-bottom: 18px;
}

@media screen and (max-width: 768px) {
  .u-Btm-L {
    margin-bottom: 14px;
  }
}

.u-Btm-M {
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .u-Btm-M {
    margin-bottom: 6px;
  }
}

.u-Btm-S {
  margin-bottom: 6px;
}

@media screen and (max-width: 768px) {
  .u-Btm-S {
    margin-bottom: 3px;
  }
}

.u-Btm-XS {
  margin-bottom: 2px;
}
.u-List_dl{
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.u-List_dl img{
  margin: 10px 0;
  width: 220px;
  display: block;
}
.scroll-fade {
  opacity: 0;
  -webkit-transition: all 2s;
  transition: all 2s;
  /*処理にかかる時間*/
}

.scroll-up {
  opacity: 0;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
  -webkit-transition: all 2s;
  transition: all 2s;
}

.scroll-up.done,
.scroll-fade.done {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.load-fade {
  opacity: 0;
  -webkit-transition: all 2s;
  transition: all 2s;
}

.load-up {
  opacity: 0;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
  -webkit-transition: all 2s;
  transition: all 2s;
}

.load-up.done,
.load-fade.done {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.blur{
  animation-name:blurAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
  filter: blur(10px);
  transform: scale(1.05);
  }

  to {
  filter: blur(0);
  transform: scale(1);
  }
}

.l-Wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}
.l-Wrap{
  margin: auto;
  position: relative;
}

.l-Container {
  height: 100vh;
}


.l-Contents {
  width: 100%;
}

.l-Contents-L {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .l-Contents-L {
    width: 92%;
  }
}
@media screen and (max-width: 768px) {
  .l-Contents-L {
    width: 92%;
  }
}

.l-Contents-M {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .l-Contents-M {
    width: 92%;
  }
}

.l-Contents-S {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .l-Contents-S {
    width: 92%;
  }
}
.l-Contents_List{
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-direction: column;
}
.l-Contents_List__item{
  margin-bottom: 40px;
  padding: 20px;
  /* width: calc(100% / 2); */
  border-radius: 20px;
  display: flex;
  gap: 50px;
}
.l-Contents_List__item:nth-child(2){
  flex-direction: row-reverse;
}
.l-Contents_List__item img{
  width: 320px;
}
@media screen and (max-width: 768px) {
  .l-Contents_List__item img{
    width: 100%;
  }
}
.l-Contents_List.row{
  flex-direction:row;
}
.row .l-Contents_List__item{
  display: block;
}
.row .l-Contents_List__item:nth-child(2){
  flex-direction: row;
}
.row .l-Contents_List__item p{
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  .l-Contents_List{
    flex-direction: column;
    gap: 50px;
  }
  .l-Contents_List__item{
    padding: 0;
    width: 100%;
    margin-bottom: 0;
    flex-direction: column;
  }
  .l-Contents_List__item:last-child{
    margin-bottom: 40px;
  }
  .l-Contents_List__item:nth-child(2){
    flex-direction: column;
  }
  .l-Contents_List.row{
    flex-direction: column;
  }
}

.l-Button_row{
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .l-Button_row{
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
.u-Button {
  color: white;
  background-color: #0043DF;
  display: inline-block;
  padding: 0.6em 0;
  border-radius: 1.6em;
  cursor: pointer;
}
.u-Button a,
.u-Button._Dark {
  color: #fff;
}

.u-Button._Dark {
  background-color: #333333;
}

@media screen and (max-width: 960px) {
  .u-Button {
    padding: 0.4em 1.8em;
    border-radius: 1.8em;
  }
}

.u-Button_Animation {
  width: 120px;
  text-align: center;
  color: #333333;
  border: solid 1px #333333;
  background: #daab00;
  -webkit-transition: 0.3s cubic-bezier(0.37, 0, 0.63, 1);
  transition: 0.3s cubic-bezier(0.37, 0, 0.63, 1);
}

.u-Button_Animation:hover {
  border: solid 1px #daab00;
  background: white;
  color: #daab00;
  letter-spacing: 0.12em;
}

@media screen and (max-width: 768px) {
  .u-Button_Animation:hover {
    background: #daab00;
    color: white;
    letter-spacing: 0.05em;
  }
}

.u-Button_Animation._Dark {
  border: solid 1px #0f2532;
}

.u-Button_Animation._Dark:hover {
  color: #0f2532;
}

@media screen and (max-width: 768px) {
  .u-Button_Animation._Dark:hover {
    background: #0f2532;
    color: white;
  }
}

.u-Icon {
  border: solid 1px #daab00;
  color: #daab00;
  padding: 0.5em 1.0em;
  border-radius: 1.5em;
  background-color: white;
}

.u-Ttl{

}

.u-Txt{
  font-size: 1.4rem;
}

.u-Txt_Animation {
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

.u-Txt_Animation::after {
  position: absolute;
  bottom: .3em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: '';
  width: 60%;
  height: 2px;
  background-color: #0f2532;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.u-Txt_Animation:hover::after {
  bottom: -4px;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .u-Txt_Animation:hover::after {
    bottom: .3em;
    opacity: 0;
  }
}

.u-Txt_Animation2 {
  padding-bottom: 3px;
  position: relative;
}

.u-Txt_Animation2::before {
  background-color: #0f2532;
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.u-Txt_Animation2:hover::before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

html {
  font-family: "Roboto", "M PLUS 1p", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo UI, "メイリオ", Meiryo, sans-serif;
  font-size: 62.5%;
  color: #333333;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  line-height: 2.4rem;
  word-break: normal;
  letter-spacing: 0.1rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.c-Title1 {
  color: #333;
  font-size: 30px;
  line-height: 5rem;
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}
.c-Title1 p{
  font-weight: 500;
}
.c-Title1 span{
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 1;
  display: block;
  letter-spacing: 0.2rem;
  position: relative;
  color: #0043df;
}
.c-Title1 span::after{
  margin-left: 5px;
}
.c-Title1 span::before{
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .c-Title1 {
    text-align: left;
    margin-left: 0;
    margin-bottom: 40px;
  }
  .c-Title1 span{
    text-align: left;
    margin-left: 5px;
    margin-bottom: 10px;
    line-height: 1rem;
  }
}


.c-Title2 {
  font-size: 30px;
  font-size: 3rem;
  line-height: 40px;
  line-height: 4rem;
}

@media screen and (max-width: 768px) {
  .c-Title2 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 36px;
    line-height: 3.6rem;
  }
}
.c-Title_top{
  padding-top: 30px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: flex-start;
  max-width: 1200px;
}
.c-Title_top_Text{
  margin: 0 -20px 50px 0;
  font-size: 5rem;
  line-height: 7rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  justify-content: flex-end;
  letter-spacing: 5px;
  text-align: left;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: flex-start;
}
.c-Title_top_Text p{
  display: block;
}
.c-Title_top_Text span{
  color: #0043DF;
}
.c-Title_top_Text_Sub{
  top: 350px;
  left: 20vw;
  width: 600px;
  line-height: 3rem;
}
.c-Title_top_Text_Sub p{
  line-height: 3.4rem;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  
  .c-Title_top{
    font-size: 3.6rem;
    line-height: 5rem;
  }
  .c-Title_top_Text{
    margin: 0 -0 50px 0;
    font-size: min(10vw,4.2rem);
    line-height: 5rem;
    letter-spacing: 3px;
    
  }
  .c-Title_top_Text_Sub{
    margin-top: 0;
    width: 100%;
  }
}

.u-Text-XXL {
  font-size: 48px;
  font-size: 4.8rem;
}
.u-Text-XXL p{
  line-height: 1.2;
}

@media screen and (max-width: 960px) {
  .u-Text-XXL {
    font-size: 38px;
    font-size: 3.8rem;
    line-height: 48px;
    line-height: 4.8rem;
  }
}

.u-Text-XL {
  font-size: 30px;
  font-size: 3rem;
  line-height: 40px;
  line-height: 4rem;
}

@media screen and (max-width: 960px) {
  .u-Text-XL {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 34px;
    line-height: 3.4rem;
  }
}

.u-Text-L {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 34px;
  line-height: 3.4rem;
}

@media screen and (max-width: 960px) {
  .u-Text-L {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 28px;
    line-height: 2.8rem;
  }
}

.u-Text-M {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 28px;
  line-height: 2.8rem;
}

@media screen and (max-width: 960px) {
  .u-Text-M {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 26px;
    line-height: 2.6rem;
  }
}

.u-Text-N {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  line-height: 3rem;
}

@media screen and (max-width: 960px) {
  .u-Text-N {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 30px;
    line-height: 3rem;
  }
}

.u-Text-S {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 22px;
  line-height: 2.2rem;
}

@media screen and (max-width: 960px) {
  .u-Text-S {
    font-size: 10px;
    font-size: 1rem;
    line-height: 20px;
    line-height: 2rem;
  }
}

.u-Text-XS {
  font-size: 10px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 2rem;
}

.u-Text-Bold {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .u-noBr_pc {
    display: none;
  }
}

.u-noBr_mb {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-noBr_mb {
    display: block;
  }
}
.c-btn{
  text-align: center;
}
.c-btn a{
  width: 300px;
  text-align: center;
}
.c-btn__more{
  margin: auto;
  text-align: center;
}
.c-btn__more a::after{
  content: "→";
}
@media screen and (max-width: 768px) {
  .c-btn__more{
    text-align: center;
  }
}
.c-bg{
  z-index: 0;
  position: relative;
  
}

.c-bg:nth-child(even){
  background-color: #ffffff78; 
}
.c-bg__inner{
  padding-top: 60px;
  padding-bottom: 60px;
}
/* .c-Page .c-bg__inner{
  padding-top: 50px;
  padding-bottom: 50px;
} */
section:nth-of-type(even) .c-bg{
  background-color: #ffffff78;;
}
.c-bg:nth-child(even){
  background-color: #ffffff78; 
}
@media screen and (max-width: 768px) {
  .c-bg--right,
.c-bg--left{
    width: 100%;
    max-width: 100%;
}
.c-bg--left +.c-bg__inner{
  padding-left: 0;
  padding-right: 0;
}
.c-bg--right +.c-bg__inner{
  padding-left: 0;
  padding-right: 0;
}
}
.c-Header_Branding {
  padding-left: 2%;
}

.c-Header_Logo-Img {
  max-width: 200px;
}

@media screen and (max-width: 768px) {
  .c-Header_Logo-Img {
    max-width: 120px;
  }
}
.c-TopPage{
  margin-bottom: 100px;
}
.c-Page{
  /* margin-bottom: 100px; */
}

.c-Concept{
  margin-top: 160px;
}
.c-Concept.c-TopPage{
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .c-Concept{
    margin-top: 120px;
  }
}
.c-Footer {
  background-color: #0043DF;
  color: white;
  padding: 20px 2% 12px 2%;
  text-align: center;
  position: -webkit-sticky;
  position: sticky;
  top: 100vh;
  width: 100%;
}

.c-Footer_Menu_Link {
  color: white;
}
.l-Footer_list{
  margin: auto;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: min(1.2rem,1.4rem);
  /* max-width: 500px; */
}

.l-footer__copyright{
  font-size: 1.1rem;
}

.l-Header {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
}

.l-hader__inner {
  padding: 10px;
  height: 80px;
  width: 100%;
  background-color: #ffffff83;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-header__logo {
  position: fixed;
  width: 170px;
  z-index: 1;
  left: 20px;
}
@media screen and (max-width: 768px) {
  .l-header__logo{
    width: 130px;
    left: 10px;
  }
}
.l-header__nav__menu{
  margin-right: 20px;
}
.l-header__nav__list{
  display: flex;
  gap: 40px;
}
.l-header__nav__list__item.sub a.l-header__link {
  font-size: 1.3rem;
}

.l-header__nav__list li a.l-header__link {
  color: #333;
  text-decoration: none;
  display: block;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
}
.l-header__nav__list li a.l-header__link span{
  padding-left: 10px;
}
.l-header__nav__list li a.l-header__link:hover {
  color: #0043DF;
  position: relative;
  opacity: 0.6;
  -webkit-transition: .5s;
  transition: .5s;
}

/* SPメニュー */
@media screen and (max-width: 768px) {
  .l-hader__inner {
    height: 70px;
    display: block;
  }
  .l-header__nav {
    width: 40px;
    transition: all .5s;
    
  }
  .l-header__nav__menubg{
    position: fixed;
    top: 8px;
    right: 20px;
    width: 37px;
    height: 50px;
    background-color: #0043DF;
    border-radius: 68% 32% 68% 32% / 57% 30% 70% 43%;
    transition: all .1s;
    opacity: 1;
    transform: rotate(285deg);
    animation: fluidrotate 30s ease 0s infinite;
  }
  .l-header__nav__menubg:has(+.menu_btn.active){
    opacity: 0;
    transition: all .6s;
  }
  .l-header__nav__menu__wrapper:has(.menu_btn.active){
    background-color: #fff;
    transition: all .1s;
  }
  .menu_btn {
    position: fixed;
    top: 21px;
    right: 28px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
    height: 20px;
    width: 20px;
    transition: all 1s;
    z-index: 2;
    
  }
  
  .menu_btn span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all .4s;
    -webkit-font-smoothing: antialiased
  }
  
  .menu_btn span:nth-of-type(1) {
    top: 0;
  }
  
  .menu_btn span:nth-of-type(2) {
    top: 9px;
  }
  
  .menu_btn span:nth-of-type(3) {
    bottom: 0;
  }
  .menu_btn.active span {
    background-color: #0043DF;
  }
  .menu_btn.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(45deg);
  }
  
  .menu_btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  
  .menu_btn.active span:nth-of-type(3) {
    transform: translateY(-9px) rotate(-45deg);
  
  }
  
  
  .l-header__nav.panelactive {
    position: fixed;
    
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 1;
  }
  .l-header__nav.panelactive.l-header__nav__menu{
    display: block;
  }
  
  .circle-bg {
    position: fixed;
    transform: scale(0);
    right: -50px;
    top: -50px;
    transition: all .6s;
    width: 35px;
    height: 32px;
    border-radius: 50%;
    background: #0043dfda;
  }
  
  .circle-bg.circle_active {
    transform: scale(50);
  }
  .l-header__nav .circle-bg__white {
    display: none;
  }
  .l-header__nav.panelactive .circle-bg__white {
    display: block;
    position: fixed;
    width: 200vw;
    height: 110vh;
    border-radius: 50%;
    left: -30vw;
    top: -40vh;
    transition: all .6s;
    background: #fff;
    animation: fluidrotate 30s ease 0s infinite;
    z-index: -1;
  }
  .l-header__nav {
    opacity: 0;
  }
  
  .header__nav__menu.panelactive .l-header__nav__list {
    display: block;
  }
  
/*ナビゲーション*/
.l-header__nav__menu{
  position: fixed;
  top: 105px;
  margin: auto;
  width: 90vw;
  display: none;
}

.l-header__nav__list ul {
  opacity: 0;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
}

.l-header__nav.panelactive ul {
  opacity: 1;
  gap: 20px;
  flex-direction: column;
}
.l-header__nav.panelactive .l-header__nav__menu{
  z-index: 1;
  display: block;
  opacity: 1;
}
.l-header__nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: .1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.l-header__nav__list li {
  margin-left: 25px;
  text-align: left;
  list-style: none;
}

.l-header__nav__list li a.l-header__link {
  color: #0043DF;
  text-decoration: none;
  margin: 5px auto 20px 20px;
  display: block;
  letter-spacing: 0.1em;
  font-size: 2.8rem;
}
.l-header__nav__list li a.l-header__link:hover::before,
.l-header__nav__list li a.l-header__link:hover::after{
  display: none;
}
.l-header__nav__list li a.l-header__link span{
  margin-top: 5px;
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
}

.menu_btn.active+.l-header__nav__menu {
  opacity: 1;
  display: block;
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0;
  height: 70vh;
  background: #fff;
  -webkit-transition: 1s;
  transition: 1s;
}
}
@media screen and (min-width:468px) and ( max-width:768px) {
  .l-header__nav.panelactive ul li{
    text-align: center;
    
  }
  .circle-bg.circle_active {
    transform: scale(52);
  }
}
@keyframes fluidrotate {  
    
  0%, 100% {
      border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
      border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
      border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
      border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
      border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
      border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
      border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
      
  }
  @keyframes puyopuyo{  
    0%{
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }
    14%{
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }
    28%{
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }
    42%{
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }
    56%{
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }
    70%{
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }
    84%{
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
    100%{
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.l-Top{
  height: 100%;
}
@media screen and (max-width: 768px) {
  .l-Top{
    height: 100%;
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
}
.c-MainImage {
  margin-bottom: 40px;
  position: absolute;
  top: 0;
  right: 10%;
  z-index: -1;
  width: 700px;
}
.c-MainImage__pict {
  border-radius: 0 60px 60px 0;
    overflow: hidden;
    position: relative;
    max-width: 800px;
    min-height: 700px;
    z-index: 0;
    animation: puyopuyo 30s ease 0s infinite;
    opacity: .6;
}
.c-MainImage__pict li {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-size: cover;
  background-position: center center;
  animation: image-switch-animation 25s infinite;
}

@media screen and (min-width: 1200px) {
  .c-MainImage__pict {
      max-width: 800px;
      min-height: 700px;
      opacity: .6;
  }
}
@media screen and (max-width: 768px) {
  .c-MainImage{
    display: block;
    position: static;
    max-width: 800px;
    min-height: 100%;
    width: 100%;
    top: 50px;
    left: 0;
    margin-bottom: 0px;
  }
  .c-MainImage__pict {
      max-width: 100%;
      min-height:40vh;
  }
}
.src1 {
  background-image: url(../img/pict_home01.jpg);
}
.src2 {
  background-image: url(../img/pict_home02.jpg);
}
.src3 {
  background-image: url(../img/pict_home03.jpg);
}
.src4 {
  background-image: url(../img/pict_home04.jpg);
}
.src5 {
  background-image: url(../img/pict_home05.jpg);
}
.c-MainImage__pict li:nth-of-type(1) {
  animation-delay: 0s;
}
.c-MainImage__pict li:nth-of-type(2) {
  animation-delay: 5s;
}
.c-MainImage__pict li:nth-of-type(3) {
  animation-delay: 10s;
}
.c-MainImage__pict li:nth-of-type(4) {
  animation-delay: 15s;
}
.c-MainImage__pict li:nth-of-type(5) {
  animation-delay: 20s;
}

@keyframes image-switch-animation {
  0%{ opacity: 0;}
  5%{ opacity: 1;}
  25%{ opacity: 1;}
  30%{ opacity: 0;}
  100%{ opacity: 0;}
}

@keyframes fluidrotate {

  0%,
  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }

  28% {
    border-radius: 14% 86% 23% 77%/45% 58% 42% 55%;
  }

  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }

  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }

  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }

  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }

}

@media screen and (max-width: 768px) {
  .c-MainImage__pict {
    /* background-image: url("../img/pict_home01-sp.jpg"); */
  }
}



@media screen and (max-width: 768px) {
  .c-MainImage_Text_Top {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 40px;
    line-height: 4rem;
  }
}

.c-MainImage_Text_Sub {
  margin-bottom: 40px;
}

.c-Concept_Contents_List_Dt{
  margin-bottom: 10px;
  padding: 5px;
  background-color: #333;
  color: #fff;
  text-align: left;
  font-size: 2.0rem;
  display: inline-block;
}
.c-Concept_Contents_List dd{
  margin-top: 20px;
}
.c-Concept_Contents_List dd p{
  line-height: 2.5;
}
.c-About_us{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.c-About_us_List{
  margin: 10px;
  font-size: 16px;
  display: flex;
  width: 100%;
}

.c-About_us_List dt {
  font-weight: bold;
  margin-bottom: 5px;
  width: 20%;
}

.c-About_us_List dd {
  margin-bottom: 15px;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .c-About_us{
    flex-direction: column;
  }
  .c-About_us_List{
    flex-direction: column;
  }
  .c-About_us_List dt {
    width: 100%;
  }
  
  .c-About_us_List dd {
    width: 100%;
  }
}
.c-About_job{
  display: flex;
  gap: 20px;
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .c-About_job{
    gap: 50px;
    flex-direction: column;
  }
}
.c-About_job dl{
  display: flex;
  gap: 20px;
  flex-direction: column;
    width: calc(100% / 3);
}
@media screen and (max-width: 768px) {
  .c-About_job dl{
    flex-direction: column;
    width: calc(100% / 1);
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
.c-About_job dl dt{
  text-align: center;
  font-size: 2.0rem;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;

}
.c-About_job dl:nth-of-type(1) dt{
  background-image: url(../img/pict_about01.png);

}
.c-About_job dl:nth-of-type(2) dt{
  background-image: url(../img/pict_about02.png);

}
.c-About_job dl:nth-of-type(3) dt{
  background-image: url(../img/pict_about03.png);
}
.c-About_job dl dd{
  padding: 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  align-items: stretch;
  min-height: 300px;
}
.c-About_job dl dd p{
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .c-About_job dl dt{
    width: 100%;
  }
  .c-About_job dl dd{
    min-height: 100%;
    height: 100%;
    width: 100%;
  }
}
.c-About_job dl dd+.c-About_job dl dt{
  margin: 20px;
}
.c-About_office_image{
  margin: auto;
  width: auto;
  max-width: 550px;
  display: block;
}
@media screen and (max-width: 768px) {
  .c-About_office_image{
    width: auto;
    max-width: 300px;
  }
}

.c-Service_job{
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  flex-direction: row;
}
.c-Service_job_list{
  background-color: #ffffff78;
  width: calc(100% / 2 - 25px);
  border-radius: 20px;
  min-height: 200px;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  .c-Service_job{
    width: 100%;
  }
  .c-Service_job_list{
    width: 100%;
  }
}

.c-Service_job_list dt{
  padding: 40px 20px 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px 20px 0 0;
  height: 50px;
  background-repeat: no-repeat;
  background-size: 80px;
  background-position: center 70px;
}
.c-Service_job_list dt p{
  padding: 0 10px;
  line-height: 1.5;
  color: #fff;
  background-color: #333;
  text-align: left;
  font-size: 2.0rem;
}
@media screen and (max-width: 768px) {
  .c-Service_job_list dt{
    padding: 40px 15px 110px;
  }
  .c-Service_job_list dt p{
    padding: 2px 10px;
    line-height: 1.1;
    font-size: 1.8rem;
  }
}
.c-Service_job_list:nth-of-type(1) dt{
  background-image: url(../img/pict_service01.svg);
}
.c-Service_job_list:nth-of-type(2) dt{
  background-image: url(../img/pict_service02.svg);
}
.c-Service_job_list:nth-of-type(3) dt{
  background-image: url(../img/pict_service03.svg);
}
.c-Service_job_list:nth-of-type(4) dt{
  background-image: url(../img/pict_service04.svg);
}
.c-Service_job_list:nth-of-type(5) dt{
  background-image: url(../img/pict_service05.svg);
}
.c-Service_job_list:nth-of-type(6) dt{
  background-image: url(../img/pict_service06.svg);
}
.c-Service_job_list dd{
  padding: 10px 20px 20px;
}
.c-Recruit_Recruitment{
  position: relative;
}
.c-Recruit_Recruitment::before{
  content: "";
  background-color: #3333334f;
  position: absolute;
  color: #fff;
  width: 103%;
  height: 105%;
  top: -10px;
  left: -10px;
}
.c-Recruit_Recruitment::after{
  content: "※現在は募集しておりません";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 3.0rem;
  font-weight: bold;
  width: 100%;
}
@media screen and (max-width: 768px) {
.c-Recruit_Recruitment::after{
  font-size: 2.0rem;
}
}
.c-Recruit_List-item{
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.c-Recruit_List-item:last-of-type{
  margin-bottom: 0;
}
.c-Recruit_List--term {
  flex: 0 0 30%;
  padding: 10px;
  background-color: #0043DF;
  color: #fff;
}
.c-Recruit_List--description {
  flex: 1; 
  padding: 10px;
  background-color: #fff;
  border-radius: 5px; 
}
@media screen and (max-width: 768px) {
  .c-Recruit_Recruitment::before{
    width: 105%;
  }
  .c-Recruit_List-item{
    flex-direction: column;
    gap: 5px;
  }
}

.l-Inquiry form {
  margin: 0 auto;
  display: block;
  width: 720px;
}
.required {
  padding: 2px 3px ;
  content: "";
  background-color: #0043DF;
  color: #fff;
  margin-left: 5px;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {

  .l-Inquiry form {
    width: 100%;
  }
}
.l-Inquiry__post {
  margin-bottom: 20px;
}
.l-Inquiry__post label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.l-Inquiry__post-input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.l-Inquiry__post-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0043DF;
  color: #fff;
  border: none;
  border-radius: 1.6em;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 300px;
    text-align: center;
}
@media screen and (max-width: 768px) {
.c-btn__inquiry{
  text-align: center;
}
}
.form-button:hover {
  background-color: #0043DF;
}
