@charset "utf-8";
/*
theme Name: ZET-Theme
Author: dotworks
Description: original theme
version: 1.0
*/
 
/*cssのリセット*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,
blockquote,pre,abbr,address,cite,code,del,dfn,em,img,
ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,
ol,ul,li,fieldset,form,label,legend,table,caption,
tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
figcaption,figure,footer,header,hgroup,menu,nav,section,
summary,time,mark,audio,video {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}


html,body{font-size:16px;}

html{
  font-size: 62.5%;
}

body{
  font-size: 62.5%;
}


body {
  line-height: 1;
}
 
article,aside,details,figcaption,figure,
footer,hgroup,menu,nav,section {
  display: block;
}
 
nav ul {
  list-style: none;
}
 
blockquote,
q {
  quotes: none;
}
 
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
 
a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  text-decoration:none;
}
 
ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}
 
mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}
 
del {
  text-decoration: line-through;
}
 
abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}
 
table {
  border-spacing: 0;
  border-collapse: collapse;
}
 
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}


/*サイト全体の基準となるCSSを記述*/
html {
  font-size: 15px;
}
 
body {
  /*フォントの指定*/
  font-family:"Inter", 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  margin: 0;
  padding: 0;
  /*サイトのデフォルトとなる文字の色を指定*/
  color: #333;
  font-weight:500;
}
 
/*見出しを表示 + 文字色を黒に*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  color: #000;
}

/*コンテンツのサイズ指定*/


.header-inner {
  box-sizing: border-box;
  max-width: auto;
  margin-right: auto;
  margin-left: auto;
  padding: 0rem;
}

.footer-inner {
  box-sizing: border-box;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  padding: 0rem;
}

@media(max-width: 800px) {
  .contents {
    margin-bottom: 20rem;
  }
}
 
@media(max-width: 600px) {

.site-title-wrap {
  text-align: left;
  padding: 1rem 1rem 1rem 2rem;
}
 
/*ヘッダーロゴ*/
/*タイトルを画像にする場合*/
.site-title a {
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
}
 
.site-title a img {
  display: inline-block;
  width: auto;
  height: 44px;
}
 

/*ヘッダーメニュー*/
.header-inner {
  position: relative;
}
 
.navbutton {
  display: none;
}
 
.header-nav-wrap {
  position: absolute;
  top: 50%;
  right: 0;
  margin-left: 50px;
  /*タイトル分の余白をあけておく*/
  transform: translateY(-50%);
}
 
.header-nav {
  font-size: 0;
}
 
.header-nav li {
  font-size: 1.6rem;
  display: inline-block;
  margin-right: 30px;
}
 
.header-nav li a {
  font-weight: 600;
  display: block;
  text-decoration: none;
  color: #000;
}
 
.header-nav li a:hover {
  opacity: 1;
}

/*スマホ・タブレット用メニュー*/
@media(max-width: 800px) {
  .contents,
  .sidebar {
    float: none;
    width: 100%;
    margin-right: 0;
  }

  .contents {
    margin-bottom: 20px;
  }

  /*---------------------------------------------------------
  ヘッダー
  ---------------------------------------------------------*/
  .site-title a img {
    height: 40px;
  }

  .navbutton {
    font-size: 2rem;
    position: absolute;
    z-index: 999;
    top: 50%;
    right: 20px;
    display: block;
    cursor: pointer;
    transform: translateY(-50%);
    border: 0;
    background-color: transparent;
  }

  .navbutton:focus {
    outline: 0;
  }

  .header-nav-wrap {
    z-index: 999;
    top: 86px;
    /*ヘッダーの高さと合わせる*/
    right: auto;
    left: 0;
    display: none;
    width: 100%;
    margin-left: 0;
    transform: none;
    background-color: #03162f;
  }

  .header-nav li {
    display: block;
    margin-right: 0;
  }

  .header-nav li a {
    position: relative;
    padding: 10px 20px;
    color: #fff;
    border-bottom: 1px solid #888;
  }

  .header-nav li a:after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    content: '\f105';
    transform: translateY(-50%);
  }
}




  /*---------------------------------------------------------
  ヘッダー
  ---------------------------------------------------------*/
  .site-title a {
    font-size: 3.2rem;
  }

  .site-title a img {
    height: 32px;
  }

  .navbutton {
    right: 10px;
  }

  .header-nav-wrap {
    top: 62px;
  }

  .header-nav li a {
    padding: 10px;
  }

  .header-nav li a:after {
    right: 10px;
  }
}

/*フッターのデザイン*/
.footer {
  background-color: #23282d;
}
 
.footer-nav,
.copyright {
  text-align: center;
}
 
.footer-nav {
  font-size: 0;
  margin-bottom: 50px;
}
 
.footer-nav li {
  font-size: 1.6rem;
  display: inline-block;
  margin-right: 1.5rem;
}
 
.footer-nav li a {
  text-decoration: none;
  color: #fff;
}
 
.footer-nav li a:hover {
  opacity: .6;
}
 
.copyright p {
  font-size: 1.6rem;
  color: #fff;
}

@media(max-width: 800px) {
  .footer-nav {
     display: none;
  }
}

/*トップページ投稿のデザイン*/
.article-list {
  margin-bottom: 1.6rem;
  padding: 1.6rem;
  border: 1px solid #ddd;
}
 
.article-list:hover {
  background-color: #eee;
}
 
.article-list a {
  display: block;
  text-decoration: none;
  color: #333;
}
 
.article-list a:after {
  display: block;
  clear: both;
  content: '';
}
 
.article-list .img-wrap {
  position: relative;
  float: left;
  line-height: 1;
}
 
.article-list .img-wrap img {
  width: 240px;
  height: 160px;
  object-fit: cover;
}
 
.article-list .img-wrap .cat-data {
  font-size: 1.2rem;
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 8px;
  color: #fff;
  background-color: #03162f;
}
 
.article-list .text {
  margin-left: 260px;
}
 
.article-list .text h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
 
.article-list .text .article-date,
.article-list .text .article-author {
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 8px;
  color: #888;
}
 
.article-list .text .article-date {
  margin-right: .5rem;
}
 
.article-list .text .article-author i {
  margin-right: 5px;
}
 
.article-list .text p {
  font-size: 1.3rem;
  line-height: 2.6rem;
}

@media(max-width: 600px) {
  .article-list {
    padding: 10px;
  }
 
  .article-list .img-wrap img {
    width: 132px;
    height: 88px;
  }
 
  .article-list .img-wrap .cat-data {
    font-size: 1rem;
  }
 
  .article-list .text {
    margin-left: 140px;
    padding: 0;
  }
 
  .article-list .text h2 {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
 
  .article-list .text p {
    display: none;
  }
 
  .article-list .text .article-date,
  .article-list .text .article-author {
    font-size: 1rem;
    margin-bottom: 0;
  }
 
  .article-list .text .article-date {
    margin-right: 3px;
  }
}

/*ページネーション*/
.pagination {
  margin: 3px 0 ;
    margin-bottom: 20px;
  text-align: center;
}
 
.pagination ul {
  font-size: 0;
}
 
.pagination ul li {
  font-size: 1.6rem;
  display: inline-block;
  margin-right: 10px;
}
 
.pagination ul li:last-child {
  border: 0;
}
 
.pagination ul li a,
.pagination .current {
  display: block;
  padding: 10px 14px;
  border: 1px solid #66B4D5;
  border-radius: 20px;
}
 
.pagination ul li .prev,
.pagination ul li .next {
  border: 0;
}
 
.pagination ul li a {
  text-decoration: none;
  color: #66B4D5;
}
 
.pagination ul li a:hover {
  opacity: .6;
}
 
.pagination .current {
  color: #fff;
  background-color: #66B4D5;
  border-radius: 20px;
}

/*投稿のパソコン表示用のデザイン*/
.article-content {
  margin-bottom: 0px;
}
 
.article-content .article-info {
  margin-bottom: 10px;
}
 

 
.article-content .article-info .article-date,
.article-content .article-info .article-author {
  font-size: 1.6rem;
  display: inline-block;
  margin-right: 10px;
  color: #333;
}
 
.article-content .article-info .article-author i {
  margin-right: 5px;
}
 
.article-content p,
.article-content b,
.article-content ul,
.article-content ol {
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.05rem;
  text-align: justify;
  font-weight:400;
  font-family:"Inter", 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
 
.white{
    color:#fff;
}

.article-content p,
.article-content img,
.article-content ul,
.article-content ol {
  margin-bottom: 0rem;
}
 

 
.article-content .article-img {
  margin-bottom: 30px;
}
 
.article-content .article-img img {
  display: block;
  margin: 0 auto;
}
 
.article-content ul {
  margin-left: 0px;
  list-style: disc;
}
 
.article-content ol {
  margin-left: 30px;
  list-style: decimal;
}
 
.article-content figure {
  max-width: 100%;
}
 
.article-tag {
  text-align: right;
}
 
.article-tag ul {
  font-size: 0;
  margin-bottom: 0;
}
 
.article-tag ul li {
  font-size: 1.4rem;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
 
.article-tag ul li:last-child {
  margin-right: 0;
}
 
.article-tag ul li a {
  padding: 5px 10px;
  text-decoration: none;
  color: #000;
  border: 1px solid #000;
}
 
.article-tag ul li a:hover {
  opacity: .6;
}


@media(max-width: 600px) {
  .article-content h1 {
    font-size: 2.6rem;
  }
 
  .article-content h2 {
    font-size: 2.2rem;
  }
 
  .article-content h3 {
    font-size: 2rem;
  }
 
  .article-content h4 {
    font-size: 1.8rem;
  }
}

/*デフォルトウィジェット*/
.widget_recent_entries ul,
.widget_meta ul,
.widget_recent_comments ul,
.widget_pages ul,
.widget_meta ul,
.widget_categories ul,
.widget_archive ul,
.widget_nav_menu ul,
.calendar_wrap,
.tagcloud {
  list-style: none;
    margin-top: 20px;
}
 
.widget_recent_entries li,
.widget_meta li,
.widget_recent_comments li,
.widget_pages li,
.widget_meta li,
.widget_archive li,
.widget_nav_menu li {
  position: relative;
  margin-bottom: 10px;
}
 
.widget_recent_entries a,
.widget_meta a,
.widget_recent_comments a,
.widget_pages a,
.widget_meta a,
.widget_categories a,
.widget_archive a,
.widget_nav_menu a {
  text-decoration: none;
  color: #333;
}
 
.sidebar-wrapper a:hover {
  opacity: .6;
}
 
/*カテゴリウィジェット*/
.widget_categories li {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
 
.widget_categories li a {
  font-size: 1.5rem;
  line-height: 2;
  position: relative;
  display: block;
  padding: 0px 10px 0px 20px;
  color: #333;
  text-align: left;
  font-weight:500;
  margin-top: 10px;
}
 
.widget_categories li a::before {
   content:"";
   display:inline-block;
   width:10px;
   height:28px;
   background-color:#66B4D5;
   position:absolute;
   top:0;
   left:0;

}
 
.widget_categories .children {
  margin-bottom: 10px;
  padding: 0;
  padding-left: 15px;
  background-color: #415671;
}
 
.widget_categories .children li {
  margin-bottom: 0;
}
 
.widget_categories .children li a {
  font-size: .9rem;
  background-color: transparent;
}
 
.widget_categories .children li a::before {
  position: absolute;
  top: 50%;
  left: 10px;
  content: '∟';
  transform: translateY(-50%);
  color: #fff;
}
 
/*カテゴリウィジェットとアーカイブウィジェットのドロップダウン表示*/
.widget_categories .screen-reader-text {
  display: none;
}
 
.widget_archive .screen-reader-text {
  position: relative;
  display: block;
  height: 0;
  text-indent: -9999999px;
}
 
.widget_categories form {
  position: relative;
}
 
.widget_categories form::after {
  position: absolute;
  top: 50%;
  right: 15px;
  content: '▼';
  transform: translateY(-50%);
  pointer-events: none;
}
 
.widget_categories .postform,
.widget_archive select {
  font-size: 1.5rem;
  width: 100%;
  padding: 4px 10px;
  cursor: pointer;
  border: 1px solid #e0e3ef;
  border-radius: 0;
  background-color: #f4f5f9;
  -webkit-appearance: none;
  -moz-appearance: none;
}
 
.widget_archive label::after {
  position: absolute;
  top: 10px;
  right: 15px;
  content: '▼';
  text-indent: 0;
  pointer-events: none;
}
 
/*タグウィジェット*/
.tagcloud a {
  font-size: .9rem !important;
  line-height: 1;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10pxrem;
  text-decoration: none;
  color: #03162f;
  border: 1px solid #000;
  background-color: #fff;
}
 
/*メニューウィジェット*/
.widget_nav_menu li a {
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  padding-left: 20px;
  color: #333;
}

/*サイドウィジェットの見出し*/
h4.side-heading{
  font-size: 1.8rem;
  line-height: 1;
  text-align: left;
  font-weight: 400;
  margin-top: 40px;
}


/*検索の文字を消去*/
.wp-block-search__label {
  display: none;
}

/*検索ボタンの変更*/
.wp-block-search__input{
  border-radius: 4px;
}

.wp-block-search__button{
  padding: 0 10px 0 10px;
  border-radius: 4px;
}
 
/*最近の投稿*/
.widget_recent_entries li {
  padding-bottom: 0;
}
 
.widget_recent_entries li a {
  display: block;
  margin-bottom: 5px;
  padding-left: 20px;
  font-size: 1.5rem;
  line-height: 2;
  text-align: left;
}
 
.widget_recent_entries .post-date {
  font-size: 1.2rem;
  display: block;
}
 
/*カレンダーウィジェット*/
.calendar_wrap {
  padding: 15px;
  border: 1px solid #ddd;
}
 
.calendar_wrap table {
  width: 100%;
}
 
.calendar_wrap tbody {
  text-align: center;
}
 
.calendar_wrap caption {
  font-weight: bold;
  margin-bottom: 15px;
}
 
.calendar_wrap td {
  padding: 5px 0;
}
 
.calendar_wrap tfoot td {
  padding-top: 10px;
}
 
.calendar_wrap tfoot td:last-child {
  text-align: right;
}

* {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html{
  font-size:62.5%;
}





@charset "utf-8";
.container {
    text-align: center;
    width: 100%;
}
.content {
    width: 1080px;
    display: inline-block;
}
.text {
    font-size: 1.6rem;
    line-height: 2;
    font-family: "Inter", "Noto Sans JP", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 400;
    letter-spacing: .02em;
}
li{
    list-style: none;
}
.newline {
    display: none;
}
.blank150 {
    margin-top: 150px;
}
.blank100 {
    margin-top: 100px;
}
.blank80 {
    margin-top: 80px;
}
.blank70 {
    margin-top: 70px;
}
.blank50 {
    margin-top: 50px;
}
.blank40 {
    margin-top: 40px;
}
.blank30 {
    margin-top: 30px;
}
.blank20 {
    margin-top: 20px;
}
.blank10 {
    margin-top: 10px;
}
.left {
    text-align: left;
}
.right {
    text-align: right;
}
.center {
    text-align: center;
}
.justify {
    text-align: justify;
}
.white {
    color: #fff;
}
.black {
    color: #000;
}
.border-white {
    border: 1px solid white;
}
.border-black {
    border: 1px solid black;
}
.sp{
    display: none;
}
.text02{
  font-weight:600;
}

@media screen and (max-width: 1080px) {
.text {
    font-size: 1.5rem;
}
}
@media screen and (max-width: 767px) {
.sp{
    display: inline-block;
}
.pc{
    display: none;
}
}
@media screen and (max-width: 600px) {
.text {
    line-height: 1.8;
}
.blank150 {
    margin-top: 75px;
}
.blank100 {
    margin-top: 50px;
}
.blank80 {
    margin-top: 40px;
}
.blank70 {
    margin-top: 35px;
}
.blank50 {
    margin-top: 25px;
}
.blank40 {
    margin-top: 20px;
}
.blank30 {
    margin-top: 15px;
}
.blank20 {
    margin-top: 10px;
}
.blank10 {
    margin-top: 5px;
}

}


/* ----- section-kv ----- */

.kv-wrap {
    width: calc(100% - 24vw - 50px);
    height: 780px;
    margin: 120px 50px 0 24vw;
    position: relative;
}
img.kv-ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    border-radius: 20px;
}

h1.catch-copy {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 4.2rem;
    line-height: 1;
    color: #fff;
    font-weight: 500;
    text-align: left;
    letter-spacing: 0.05em;
    white-space: nowrap;
    font-feature-settings: "palt" 1;


}
.catch-copy01, .catch-copy02{
    background-color: #000;
    display: inline-block;
    padding: 8px 10px 10px 16px;
        position: absolute;

}
.catch-copy01{
   top:260px;
}
.catch-copy02{
   top:340px;
}
img.sub-catch-copy{
    width: 650px;
}

.catch-copy-wrap{
     position: absolute;
    top: 130px;
    left: 50px;
}
.kv-lead{
    position: absolute;
    top:400px;
    text-align: left;
}
.lead{
    font-size: 1.8rem;
    line-height: 1.6;
    color: #202020;
    font-weight: 600;
    letter-spacing: 0.1em;
    white-space: nowrap;
    font-feature-settings: "palt" 1;
    margin-top: 20px;
}


@media screen and (max-width: 1080px) {
/* ----- section-kv ----- */
.content {
    width: 95%;
}
.kv-wrap {
    width: calc(100% - 24vw - 40px);
    height: 600px;
    margin: 120px 40px 0 24vw;
}
h1.catch-copy {
    font-size: 3.6rem;
}
img.kv-ph {
    height: 100%;
    border-radius: 25px;
}
img.sub-catch-copy{
    width: 500px;
}
.catch-copy01{
   top:200px;
}
.catch-copy02{
   top:270px;
}
.catch-copy-wrap{
    left: 40px;
}

.kv-lead{
    position: absolute;
    top:320px;
    text-align: left;
    font-size: 1.8rem;
    line-height: 1.6;
}
}

@media screen and (max-width: 600px) {
/* ----- section-kv ----- */
.kv-wrap {
    width: calc(100% - 20px);
    height: 500px;
    margin: 70px 10px 0 10px;
    position: relative;
}
img.kv-ph {
    border-radius: 20px;
}

h1.catch-copy {
    font-size: 5vw;

}
.catch-copy-wrap {
    position: absolute;
    top: 230px;
    left: 20px;
    text-align: left;
}
img.sub-catch-copy {
    margin-top: 100px;
    width: 130%;
}
.catch-copy01, .catch-copy02 {
    background-color: #000;
    display: inline-block;
    padding: 8px 8px 8px 10px;
    position: absolute;
}
.catch-copy01{
   top:0px;
}
.catch-copy02{
   top:50px;
}

.kv-lead{
    display: none;
}
}

@media screen and (max-width: 480px) {
/* ----- section-kv ----- */
.kv-wrap {
    height: 400px;
}
.catch-copy02{
   top:45px;
}
.catch-copy-wrap {
    position: absolute;
    top: 210px;
    left: 20px;
    text-align: left;
}
img.sub-catch-copy {
    margin-top: 80px;
    width: 100%;
}
}

/* ----- section01 ----- */
#linkpoint01{
    padding-top: 120px;
    margin-top: -120px;
}
#section01 {
    text-align: center;
    position: relative;
    height: 1000px;
    background-image:url(/wp-content/uploads/2023/03/top01a.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    padding: 100px 0 0 0;
}
.sec01-wrap{
    width: 100%;

}
.sec01-inner{
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
}

h2.heading{
     font-size: 3.6rem;
    line-height: 1.3;
    color: #202020;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.05em;
    white-space: nowrap;
    font-feature-settings: "palt" 1;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}
.sub-heading{
     font-size: 1.6rem;
    line-height: 1.4;
    color: #DC000C;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.05em;
    white-space: nowrap;
    font-feature-settings: "palt" 1;
    font-family: 'Quicksand', sans-serif;
}

.circle{
    width: 240px;
    height: 240px;
    border-radius: 120px;
    position: relative;
}
h4.heading {
    font-size: 2rem;
    line-height: 1.4;
    color: #202020;
    font-weight: 500;
    white-space: nowrap;
    font-feature-settings: "palt" 1;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}


.circle-inner{
    width: 180px;
    position: absolute;
    top: 50%;
    left: 50%;
     transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);  
}
.circle:after{
    content: " ";
    font-size: 4.2rem;
    font-weight: 500;
    line-height: 1;
    color: #DC000C;
    font-family: 'Quicksand', sans-serif;
    position: absolute;
     top: 2%;
        left: 50%;
     transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);  
}
.circle01:after{
    content: "01";
    }
.circle02:after{
    content: "02";
    }
.circle03:after{
    content: "03";
    }
.circle04:after{
    content: "04";
    }
.circle-bg{
    width: 240px;
    height: 240px;
    position: absolute;
    background-color: #fff;
    top:0;
    left: 0;
    opacity: 0.7;
    border-radius: 120px;
}
@media screen and (max-width: 1080px) {
/* ----- section01 ----- */
.sec01-inner{
    width: 520px;
    display: inline-flex;
    row-gap: 40px;
}
h4.heading{
    font-size: 1.8rem;
}
h2.heading{
     font-size: 3rem;

}
.sub-heading{
     font-size: 1.4rem;
}
}
@media screen and (max-width: 600px) {
/* ----- section01 ----- */

#section01{
    padding: 50px 0 0 0;
}
#linkpoint01{
    padding-top: 70px;
    margin-top: -70px;
}
.circle{
    width: 170px;
    height: 170px;
    border-radius: 85px;
}
.circle-bg{
    display: none;
}
.circle-inner{
    width: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
 
}
.sec01-inner{
    width: 360px;
    row-gap: 10px;
    margin-top: 50px;
}
.circle:after{
   padding-bottom: 10px;
}
h2.heading{
     font-size: 2.6rem;

}
}

/* ----- section02 ----- */


/* ----- section03 ----- */

#section03 {
    text-align: center;
    position: relative;
    background-image: url(/wp-content/uploads/2023/03/bg01.jpg);
    background-position: center;
    background-repeat: repeat;
    padding: 100px 0 100px 0;
}
#linkpoint03{
    padding-top: 120px;
    margin-top: -120px;
}
.sec03-wrap{
    width: 100%;

}

.sec03-inner{
    width: 100%;
    display: flex;
    position: relative;
    justify-content: space-between;
}

.sec03-item{
    width: 320px;
}


img.top03a{
    width: 100%;
     border-radius: 12px;
     object-fit: cover;
    object-position: center;
}

h3.heading{
     font-size: 2.8rem;
    line-height: 1.4;
    color: #1C63AA;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.05em;
    white-space: nowrap;
    font-feature-settings: "palt" 1;
    border-bottom: 3px dotted #DC000C;
    padding-bottom: 4px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    display: inline-block;
}

@media screen and (max-width: 1080px) {
/* ----- section03 ----- */
#section03 {
    padding: 70px 0 70px 0;
}
.sec03-item {
    width: 31%;
}
}

@media screen and (max-width: 600px) {
/* ----- section03 ----- */
#section03 {
    padding: 50px 0 30px 0;
    background-size: cover;
}
#linkpoint03{
    padding-top: 70px;
    margin-top: -70px;
}
.sec03-inner {
    display: block;
}
.sec03-item {
    width: 90%;
    margin: 0 5% 5% 5%;
    border-radius: 10px;
}

h3.heading{
     font-size: 2.2rem;
}
}
/* ----- section04 ----- */
#section04 {
    width: 100%;
    text-align: center;
    position: relative;

}

.explanation{
    font-size: 2rem;
    line-height: 1.4;
    color: #202020;
    font-weight: 500;
    white-space: nowrap;
    font-feature-settings: "palt" 1;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

#linkpoint04{
    padding-top: 120px;
    margin-top: -120px;
}
.sec04-wrap{
    width: 100%;
}
.sec04-inner{
    width: 100%;
    display: flex;
}
.sec04-inner-left{
    width: 638px;
    position: relative;
}
.sec04-inner-right{
    width: calc(100% - 638px);
    position: relative;
}


.sec04-textarea{

   position: absolute;
    top: 50%;
    right: 0%;
     transform: translateY(-50%);
    -webkit- transform: translateY(-50%);  
}


@media screen and (max-width: 1080px) {
.sec04-textarea {
    width: 340px;
}
.sec04-inner-left{
    width: 50%;
}
.sec04-inner-right{
    width: 50%;
}
img.top04a{
    width: 100%;
}
}
@media screen and (max-width: 600px) {
#linkpoint04{
    padding-top: 70px;
    margin-top: -70px;
}
.sec04-inner {
    flex-direction: Column-Reverse;
    height: auto;
}

.sec04-inner-left {
    width: 100%;
}
.sec04-inner-right{
    width: 100%;
    text-align: center;
    padding: 40px 0 10px 0 ;
}
.sec04-textarea{
    position: relative;
    top: 0%;
    right: 0%;
     transform: translateY(0%);
    -webkit- transform: translateY(0%);  
    display: inline-block;
}
}
/* ----- section05 ----- */
#section05 {
    width: 100%;
    text-align: center;
    position: relative;
    background-image: url(/wp-content/uploads/2023/03/bg01.jpg);
    background-repeat: repeat;
    background-position: center;
    padding: 0px 0 100px 0;
}
#linkpoint05{
    padding-top: 120px;
    margin-top: -120px;
}
.sec05-wrap{
    width: 100%;
    position: relative;
    margin-top: -2px;
}


.slider img {
    width: 100%;
    height: a;
    object-fit: cover;
}

.recruit-circle{
    width: 500px;
    height: 250px;
    border-radius:250px 250px 0 0;
    background-image: url(/wp-content/uploads/2023/03/bg01.jpg);
    background-repeat: repeat;
    background-position: center;
    margin-top: -180px;
    z-index: 99;
    padding: 50px;
    display: inline-block;
        transform: translateY(-0%) translateX(0%);
    -webkit- transform: translateY(-0%) translateX(0%);
}

.recruit-wrap{
    display: inline-flex;
    margin-top: 10px;
}
.top05i{
    margin: 10px 20px 0 0;
}

.red{
    color: #DC000C;
}
.illust-area{
    position: relative;
}
.top05f{
    margin: 160px 0 0 100px;
}

.comment{
    font-size: 2rem;
    line-height: 1.6;
    color: #202020;
    font-weight: 500;
    letter-spacing: 0.05em;
    white-space: nowrap;
    font-feature-settings: "palt" 1;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    display: inline-block;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #333;
}
.comment01{
    position: absolute;
    top:200px;
    left:0;
}

.comment02{
    position: absolute;
    top:30px;
    left:220px;
}

.comment03{
    position: absolute;
    top:30px;
    left:540px;
}

.comment04{
    position: absolute;
    top:160px;
    right:0;
}

.comment05{
    position: absolute;
    top:300px;
    right:0;
}
.occu-wrap{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.occu-item{
    width: 520px;
    height: 180px;
    display: flex;
}
.occu-item-left{
    width: 240px;
}
.occu-item-right{
    width: 280px;
    background-color: #fff;
    border-radius: 0 12px 12px 0;
    padding: 20px;
    text-align: center;
    position: relative;
}
.occu-button{
    font-size: 1.2rem;
    font-weight:600;
    line-height: 28px;
    color: #1C63AA;
    height: 30px;
    width: 160px;
    border: 1px solid #1C63AA;
    border-radius: 15px;
    text-align: center;
    display: inline-block;
}
.occu-button:hover{
    background-color:#1C63AA;
    color: #fff;
}
.top05g{
    border-radius: 12px 0 0 12px;

}
.occu-title{
    font-size: 1.8rem;
    line-height: 1.6;
    color: #202020;
    font-weight: 500;
    letter-spacing: 0.05em;
    white-space: nowrap;
    font-feature-settings: "palt" 1;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    display: inline-block;
}
.occu-right-inner{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
}
#section05 dl{
    width: 100%;
    display: inline-flex;
}
#section05 dt{
    width: 60px;
    font-size: 1.3rem;
    line-height: 1;
    display: inline-block;
    border-radius: 12px;
    padding: 5px;
    text-align: center;
    border: 1px solid #666;
    margin: 12px 0 0 0;
}
#section05 dd{
    width: calc(100% - 60px);
    font-size: 1.3rem;
    line-height: 1.4;
    padding: 15px 0 0 10px;
}
.sec05-top{
    padding: 50px 0 0 0 ;
}
img.top05g{
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 180px;
}

@media screen and (max-width: 1080px) {
 /* ----- section05 ----- */
.slider img {
    height: 200px;
}
.recruit-wrap{
    display: block;
    margin-top: 10px;
}
.recruit-right{
    width: 600px;
    display: inline-block;
}

.comment01{
    top:140px;
    left:40px;
}

.comment02{
    top:30px;
    left:40px;
}

.comment03{
    top:30px;
    left: auto;
    right:40px;
}

.comment04{
    top:140px;
    right:180px;
}

.comment05{
    position: absolute;
    top:140px;
    right:50px;
}
.illust-area{
    width: 600px;
    display: inline-block;
}
.top05f{
    margin: 280px 0 0 0px;
    max-width: 600px;
    width: 100%;
}
.comment{
    font-size: 2rem;

    padding: 16px;
}
.occu-item{
    width: 47.5%;
    height: auto;
}
.occu-item-left{
    width:45%;
}
.occu-item-right{
    width: 55%;
    padding: 20px 0 0 0;
}
img.top05g{
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
}
}

@media screen and (max-width: 767px) {
  .comment{
    border-radius: 8px;
}     
 .comment05{
    top:170px;
}
.recruit-right-inner {
    display: inline-block;
}
}
@media screen and (max-width: 600px) {
 /* ----- section05 ----- */
 #linkpoint05{
    padding-top: 70px;
    margin-top: -70px;
}
.sec05-wrap{
    width: 100%;
    position: relative;
}
.recruit-circle{
    width: 320px;
    height: 160px;
    border-radius:160px 160px 0 0;
     margin-top: -60px;
    padding: 30px;
}
.slider img {
    height: 100px;
}

.recruit-right{
    width: 100%;
}
.sec05-top{
    padding: 0 ;
}

.comment01{
    top:90px;
    left:0px;
}

.comment02{
    position: absolute;
    top:20px;
    left:0px;
}

.comment03{
    position: absolute;
    top:20px;
    left: auto;
    right:0px;
}

.comment04{
    position: absolute;
    top:110px;
    right:80px;
}

.comment05{
    position: absolute;
    top:110px;
    right:0px;
}
.illust-area{
    width: 340px;
    display: inline-block;
}
.top05f{
    margin: 190px 0 0 0px;
}
.comment{
    font-size: 1.6rem;

    padding: 7px;
}
.occu-item{
    width: 48%;
    display: block;
}
.occu-item-left{
    width: 100%;
}
.occu-item-right{
    width: 100%;
    height: 100px;
}
.occu-button{
    width: 150px;
}
.top05g {
    border-radius: 8px 8px 0 0;
}
.occu-item-right {
    border-radius: 0 0 8px 8px;
}

#section05 {
    padding: 0 0 50px 0;
}
}

/* ----- section06 ----- */
#section06 {
    width: 100%;
    text-align: center;
    position: relative;
    background-image: url(/wp-content/uploads/2023/03/bg03.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 100px 0 100px 0;
}
#linkpoint06{
    padding-top: 120px;
    margin-top: -120px;
}

#section06::after {
  content: '';
  background-color: rgba(28,99,170,.7);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.sec06-wrap{
    width: 100%;
    padding: 30px;
    background-color: #fff;
    border-radius: 20px;
    position: relative;
    z-index: 1;

}

.sec06-inner{
    width: 100%;
    display: flex;
    margin-top: 30px;
}

#section06 dl{
    width: 100%;
    display: inline-flex;
    padding:0 20px 0 0 ;

}
#section06 dt{
    width: 120px;
    font-size: 1.6rem;
    line-height: 1.4;
    display: inline-block;
    padding: 18px;
    border-bottom: 1px solid #ccc;
    background-color: #E0F0FC;
    font-weight:600;
}
#section06 dt.border-top{
    border-top: 1px solid #ccc;
}
#section06 dd.border-top{
    border-top: 1px solid #ccc;
}

#section06 dd{
    width: calc(100% - 120px);
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 400;
    text-align: left;
        padding: 18px;
            border-bottom: 1px solid #ccc;
}
img.sec06a{
    border-radius: 12px;
    width: 400px;
}


@media screen and (max-width: 900px) {
.sec06-wrap{
    width: 570px;
    display: inline-block;
}
.sec06-inner{
    display: block;
    margin-top: 30px;

}
.sec06-right{
    margin-top: 20px;
}
#section06 dl{
    padding: 0;
}
}
@media screen and (max-width: 600px) {
#section06 {

    padding: 50px 0 50px 0;
}
#linkpoint06{
    padding-top: 70px;
    margin-top: -70px;
}
.sec06-wrap{
    width: 95%;
    margin: 0 2.5% 0 2.5%;
    padding: 20px;
    border-radius: 15px;
}
}
@media screen and (max-width: 480px) {
img.sec06a{
    border-radius: 8px;
    width: 100%;
}
}
/* ----- section07 ----- */
#section07 {
    width: 100%;
    text-align: center;
    position: relative;
    background-image: url(/wp-content/uploads/2023/03/bg01.jpg);
    background-repeat: repeat;
    background-position: center;
    padding: 60px 0 0 0;

}

#linkpoint07{
    padding-top: 120px;
    margin-top: -120px;
}
.sec07-wrap{
    background-image: url(/wp-content/uploads/2023/03/bg02.jpg);
        width: calc(100% - 100px);
    padding: 100px 0 100px 0;
    margin: 0 0 0 50px;
        background-repeat: no-repeat;
            background-size: auto 100%;
    border-radius: 20px;
}
.sec07-inner{
    width: 1080px;
    background-color: #fff;
    padding: 60px 90px;
    border-radius: 20px;
   display: inline-block;
}
#section07 dl {
    display: inline-flex;
    width: 100%;
    margin-top: 30px;
}
.required {
    font-size: 1.4rem;
    line-height: 1.4rem;
    padding: 2px 6px 2px 6px;
    color: #fff;
    background-color: #DC000C;
    margin-right: 30px;
    border-radius: 2px;
    font-weight:600;
}
.any {
    font-size: 1.4rem;
    line-height: 1.4rem;
    padding: 2px 6px 2px 6px;
    color: #fff;
    background-color: #1C63AA;
    margin-right: 30px;
    border-radius: 2px;
    font-weight:600;
}

#section07 dl {
    text-align: left;
}

div.wpcf7 .wpcf7-spinner {
    display: block;
}
.text-area01{
    height: 40px;
    width: 100%;
    background-color: #EAEAEA;
    border: 0;
    border-radius: 3px;
    font-size: 1.6rem;
    line-height: 1.6;
    padding: 6px;
}
.text-area02{
    height: 200px;
    width: 100%;
    background-color: #EAEAEA;
    border: 0;
    border-radius: 3px;
    font-size: 1.6rem;
    line-height: 1.6;
    padding: 6px;
}

#section07 dt{
    font-size: 1.6rem;
    line-height: 1.4;
    width: 270px;
    height: 40px;
    padding: 10px 0 0 0;
}

#section07 dd{
    font-size: 1.6rem;
    line-height: 1.4;
    width: calc(100% - 270px);

}

.sec07-submit{
     font-size: 1.6rem;
    line-height: 1;
    color: #fff;
    width: 290px;
    height: 60px;
    background-color: #1C63AA;
    display: inline-block;
    border-radius: 30px;
    border: 0;
    text-align: center;
    margin-top: 30px;
    font-weight:600;
}
.sec07-submit:hover{
    background-color: #123C67;
}

.phone-area{
    width: 100%;
    border: 2px solid #1C63AA;
    border-radius: 12px;
    padding: 30px;
    margin-top: 80px;
    position: relative;
}
.phone-text{
    line-height: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    display: inline-block;
}

.phone-title{
    font-size: 1.8rem;
    line-height: 1;
}
.phone-hours{
    font-size: 1.6rem;
}
.phone-number{
     font-size: 6rem;
    line-height: 1.2;
    color: #1C63AA;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.05em;
    white-space: nowrap;
    font-feature-settings: "palt" 1;
    font-family: 'Quicksand', sans-serif;
}
.phone-number:before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    background-image: url(/wp-content/uploads/2023/03/phone-icon.svg);
    width: 56px;
    height: 56px;
    background-size: contain;
    }
.top07a{
    position: absolute;
    left: 30px;
    top:20px;
}
.top07b{
    position: absolute;
    right: 30px;
    top:20px;
}
@media screen and (max-width: 1200px) {
.sec07-inner {
    width: 95%;
}
}
@media screen and (max-width: 1080px) {
.sec07-inner{
    padding: 60px 30px;
    width: 90%;
}
#section07 dt{
    width: 220px;
}

#section07 dd{
    width: calc(100% - 220px);

}
.sec07-wrap{
   width: calc(100% - 60px);
   margin: 0 0 0 30px;
}
.top07a, .top07b{
  display: none;
}
.phone-area{
    padding: 20px;

}
}
@media screen and (max-width: 700px) {
.phone-number {
    font-size: 4.8rem;
}
.phone-number:before{
    width: 40px;
    height: 40px;
    }
}
@media screen and (max-width: 600px) {
    #section07 {
    padding: 30px 0 0 0;
}
#linkpoint07{
    padding-top: 70px;
    margin-top: -70px;
}
#section07 dl{
    display: inline-block;
}
#section07 dd{
    width: 100%;
}

.sec07-wrap{
   width: 95%;
   margin: 0 2.5% 0 2.5%;
   padding: 50px 0 50px 0;
   border-radius: 15px;
}
.sec07-inner{
    padding: 30px 15px;
    border-radius: 10px;
}
.required, .any {

    margin-right: 10px;
}
.phone-area {
    margin-top: 20px;
}
#section07 dl {
    margin-top: 10px;
}
}
@media screen and (max-width: 480px) {
.phone-number {
    font-size: 3.4rem;
}
.phone-number:before{
    width: 26px;
    height: 26px;
    }
}
/* ----- section banner-area ----- */
#banner-area{
    width: 100%;
    text-align: center;
    position: relative;
    background-image: url(/wp-content/uploads/2023/03/bg01.jpg);
    background-repeat: repeat;
    background-position: center;
    padding:0px 0 60px 0;
}
.banner-area-inner{
    width: 900px;
    display: inline-block;
}
#banner-area img{
    width: 100%!important;
    height:auto;
 box-shadow: 0 6px 25px 0 rgba(0, 0, 0, .3);
  aspect-ratio: 90 / 17 ;
}

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

#button-area{
    padding: 60px 0 60px 0;
}
.banner-area-inner{
    width: 95%;
    margin: 0 2.5% 0 2.5%;
}
}
@media screen and (max-width: 600px) {
#banner-area{
     padding:0px 0 30px 0;
}
}
/* ----- section fixed-button ----- */

.banner02{
        width: 240px;
    display: inline-block;
    position: fixed;
    bottom: 30px;
    right: 0;
    z-index: 90;
    height:auto;
      box-shadow: 0 6px 20px 0 rgba(0, 0, 0, .3);
}
.banner02sp{
  display:none;
}

@media screen and (max-width: 600px) {
.banner02{
  display: none;
}
.banner02sp{
  position: fixed;
  width: 70px;
  height:70px;
  right:6px;
  bottom: 30px;
  display:block;
  z-index:90;

}
}
.wpcf7 form.sent .wpcf7-response-output {/* 送信ボタン下完了時 */
    border-color: #fff!important;
    border: 0px;
    font-size: 1.6rem;
    line-height: 1.4;
    color:#1C63AA;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {/* 送信ボタン下未入力警告 */
    border-color: #fff;
     border: 0px;
        font-size: 1.6rem;
    line-height: 1.4;
    color:#DC000C;
}
.wpcf7-not-valid-tip {/* 必須未入力項目下の文章 */
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.4;
}