@charset "utf-8";
/*
Theme Name: SNchan Theme
Author: SNchan
Description: original theme
Version： 3.0.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;
}
 
body {
  line-height: 1;
}
 
article,aside,details,figcaption,figure,
footer,header,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;
}
 
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を記述*/



	
body {
  font-family: "Noto Sans JP", sans-serif;/*フォントの指定*/
  line-height: 1.4;/*行間の指定*/
  margin: 0;
  padding: 0;
  color: #333;/*サイトのデフォルトとなる文字の色を指定*/
  width:100%;
  background:#FFFFFF;
		
  margin-top: 74px;/*ヘッダーと同じ高さのマージンを追加*/
}
 
/*見出しを全て太字で表示 + 文字色を黒に*/
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  color: #000;
}
 
img {
  max-width: 100%;
  height: auto;
}



/* デフォルト（PC用） */
body {
  font-size: 16px;
}


/* 画面幅が961px以下の場合（タブレット、スマートフォン用） */
@media screen and (max-width: 960px) {
  body {
    font-size: 14px;
  }
}

.header {
  border-bottom: 1px solid #ddd;
}
 
.header-inner {
  position: relative;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
 
.site-title {
  line-height: 1;
  display: inline-block;
}
 
.site-title a {
  display: block;
  text-decoration: none;
}
 

.site-title a img {
  display: block;
  width: auto;
  height: 1.75rem;
}
 
.header-nav li a {
  display: block;
  text-decoration: none;
}
 
@media(min-width: 821px) {
  .navbutton {
    display: none;
  }
 
  .header-nav-wrap {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    margin-left: 15rem;/*タイトル分の余白をあけておく*/
    transform: translateY(-50%);
  }
 
  .header-nav {
    font-size: 0;
  }
 
  .header-nav li {
    font-size: 1rem;
    display: inline-block;
    margin-left: 1.5rem;
    padding: .25rem 0;
  }
 
  .header-nav li a {
    font-weight: 500;
    color: #1291E8;
  }
 
  .header-nav li a:hover {
    opacity: .6;
  }	
}

@media(max-width: 820px) {
  .navbutton {
    position: absolute;
    z-index: 10;
    top: 50%;
    right: 1.5rem;
    display: block;
    cursor: pointer;
    transform: translateY(-50%);
    border: 0;
    background-color: transparent;
  }
 
  .navbutton:focus {
    outline: 0;
  }
 
  .navbutton::after {
    font-family: "Material Symbols Outlined";
    font-size: 2.5rem;
    content: "\e5d2";
    color: #1291E8;
  }
 
  .menu-active .navbutton::after {
    content: "\e5cd";
    color: #fff;
  }
 
  .header-nav-wrap {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    width: 100%;
    height: 100vh;
    background-color: rgb(18 145 232 / 80%);
  }
 
  .header-nav {
    padding: 6rem 0;
  }
 
  .header-nav li a {
    font-weight: 400;
    padding: 1.5rem;
    text-align: center;
    color: #fff;
  }
	
}
	
 /* サブメニューここから */
 
@media(min-width: 821px) {
  .header-nav li {
    position: relative;
  }
 
  .header-nav .sub-menu {
    position: absolute;
    top: 30px;
    left: 0;
    overflow: hidden;
    width: 250px;
    height: 0;
    transition: .8s;
    transform: translateY(-8%);
    opacity: 0;
  }
 
  .header-nav li:hover .sub-menu {
    height: auto;
    transform: translateY(0);
    opacity: 1;
  }
 
  .header-nav .sub-menu li {
    display: block;
    margin-left: 0;
    padding: 0;
    border-bottom: 1px solid #ddd;
    background-color: rgb(255 255 255 / 90%);
  }
 
  .header-nav .menu-item-has-children:nth-last-child(1) .sub-menu,
  .header-nav .menu-item-has-children:nth-last-child(2) .sub-menu {
    right: 0;
    left: auto;
  }
 
  .header-nav .sub-menu li a {
    padding: 1em;
  }
}


/*スマホ用レイアウト*/


@media(max-width: 820px) {
  .header-nav li a {
    text-align: left;
  }
 
  .header-nav .menu-item-has-children > a {
    padding-bottom: 1em;
  }
 
  .header-nav .sub-menu li a {
    position: relative;
    padding: 1rem 1rem 1rem 2.75em;
  }
 
  .header-nav .sub-menu li a::before {
    position: absolute;
    top: 1.25em;
    left: 1.75em;
    display: block;
    width: .5em;
    height: .5em;
    content: "";
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
  }
}


 /* サブメニューここまで */
		
	

	
header {
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  background-color: #fff;
}
 
.header-content {
  position: relative; 
}

footer {
position: fixed;
bottom: 0;
width: 100%;
z-index: 9999;
}

.footer {
  background-color: #f5f5f5;
}
 
.footer-nav-wrap {
  padding: .75rem 1rem;
  background-color: #f5f5f5;
}
 
.footer-nav ul {
  font-size: 0;
  text-align: center;
}
 
.footer-nav ul li {
  font-size: .875rem;
  display: inline-block;
  margin-right: 1rem;
  padding: .25rem 0;
}
 
.footer-nav ul li:last-child {
  margin-right: 0;
}
 
.footer-nav ul li a {
  text-decoration: none;
  color: #333;
}
 
.copyright {
  padding: 1rem;
  text-align: center;
}
 
.copyright p {
  font-size: .875rem;
  color: #1291E8;
}








.article-head .article-info {
  margin-bottom: .5rem;
}
 
.article-head .article-info .article-cat {
  display: inline-block;
  vertical-align: middle;
}
 
.article-head .article-info .article-cat a {
  font-size: .875rem;
  line-height: 1;
  display: inline-block;
  margin-right: .5rem;
  padding: .375rem .5rem;
  text-decoration: none;
  color: #fff;
  background-color: #03162f;
}
 
.article-head .article-info .article-date {
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
  color: #888;
}
 
.article-head .article-info .article-date i {
  font-size: 1.25rem;
  position: relative;
  top: .25rem;
}
 
.article-head h1 {
  font-size: 2.125rem;
  margin: 0 0 2rem;
  letter-spacing: 1px;
}
 
.article-head .article-img {
  margin-bottom: 2rem;
}
 
.article-head .article-img img {
  display: block;
}
 
.article-foot .article-tag {
  margin-bottom: 1rem;
  text-align: right;
}
 
.article-foot .article-tag ul {
  list-style: none;
}
 
.article-foot .article-tag ul li {
  font-size: .9rem;
  display: inline-block;
  margin-right: .5rem;
  vertical-align: middle;
}
 
.article-foot .article-tag ul li:last-child {
  margin-right: 0;
}
 
.article-foot .article-tag ul li a {
  line-height: 1;
  display: block;
  padding: .25rem .5rem;
  text-decoration: none;
  color: #000;
  border: 1px solid #000;
}
 
.article-foot .article-tag ul li a:hover {
  opacity: .6;
}
 
.article-foot .article-author {
  font-weight: 500;
  line-height: 1;
  text-align: right;
  vertical-align: middle;
}
 
.article-foot .article-author i {
  font-size: 1.25rem;
  position: relative;
  top: .25rem;
}
 
@media(max-width: 480px) {
  .article-head h1 {
    font-size: 1.75rem;
  }
}






.editor-content p code,
.editor-content p img,
.editor-content p iframe,
.editor-content p object,
.editor-content figure img,
.editor-content figure iframe,
.editor-content figure video,
.editor-content figure audio,
.editor-content pre code {
  margin-bottom: 0;
}
 
.editor-content th,
.editor-content td {
  border-color: #ddd;
}
 
.editor-content p,
.editor-content ul,
.editor-content ol,
.editor-content table,
.editor-content dl,
.editor-content blockquote,
.editor-content pre,
.editor-content code,
.editor-content img,
.editor-content picture img,
.editor-content figure,
.editor-content iframe,
.editor-content object,
.editor-content hr,
.editor-content video,
.editor-content audio {
  margin-bottom: 2.5em;
  letter-spacing: 1px;
}
 
.editor-content b,
.editor-content strong {
  font-weight: bold;
}
 
.editor-content a {
  text-decoration: underline;
}
 
.editor-content ul:not([class]) {
  padding-left: 1.25em;
  list-style: disc;
}
 
.editor-content ol:not([class]) {
  padding-left: 1.875em;
  list-style: decimal;
}
 
.editor-content table {
  width: 100%;
}
.editor-content table thead {
  border: none;
}
.editor-content table th,
.editor-content table td {
  box-sizing: border-box;
  padding: .625em;
  text-align: left;
  vertical-align: middle;
  border: 1px solid #ddd;
}
.editor-content img,
.editor-content iframe,
.editor-content object,
.editor-content video,
.editor-content audio {
  line-height: 1;
}
.editor-content figure {
  max-width: 100%;
}
 
.editor-content iframe,
.editor-content object {
  width: 100%;
}
 
.editor-content blockquote {
  line-height: 1.5;
  position: relative;
  padding: 3.125em 1.875em .625em;
  color: #555;
  background-color: #f1f4f4;
}
 
.editor-content blockquote::before {
  font-family: "Material Symbols Outlined";
  font-size: 1.875em;
  font-weight: 900;
  position: absolute;
  top: .3125em;
  left: .9375em;
  content: "\e244";
  color: #ccc;
}
 
.editor-content blockquote p,
.editor-content blockquote cite {
  margin-bottom: 1em;
}
 
.editor-content blockquote p cite {
  margin-bottom: 0;
}
.editor-content blockquote cite {
  font-size: .6125em;
  display: block;
  text-align: right;
}
 
.editor-content h2,
.editor-content h3,
.editor-content h4,
.editor-content h5 {
  margin: 3rem 0 2rem;
  letter-spacing: 1px;
}
 
.editor-content h2 {
  font-size: 1.875rem;
  padding: .75rem 0;
  border-bottom: solid 5px #03162f;
}
 
.editor-content h3 {
  font-size: 1.5rem;
  padding: 0 1rem;
  border-left: solid .375rem #415671;
  background: transparent;
}
 
.editor-content h4 {
  font-size: 1.25rem;
}
 
.editor-content h5 {
  font-size: 1.125rem;
}
 
@media (max-width: 480px) {
  .editor-content p,
  .editor-content ul,
  .editor-content ol,
  .editor-content table,
  .editor-content dl,
  .editor-content blockquote,
  .editor-content pre,
  .editor-content code,
  .editor-content img,
  .editor-content picture img,
  .editor-content figure,
  .editor-content iframe,
  .editor-content object,
  .editor-content hr,
  .editor-content video,
  .editor-content audio {
    margin-bottom: 1.5em;
  }
 
  .editor-content th,
  .editor-content td {
    padding: .625em;
  }
 
  .editor-content blockquote {
    padding: 2.5em 1.875em 1.875em;
  }
 
  .editor-content blockquote::before
  .editor-content blockquote::after {
    font-size: 1.25em;
  }
 
  .editor-content blockquote p,
  .editor-content blockquote cite {
    margin-bottom: .625em;
  }
 
  .editor-content h2,
  .editor-content h3,
  .editor-content h4,
  .editor-content h5 {
    margin: 2rem 0;
  }
 
  .editor-content h2 {
    font-size: 1.5rem;
  }
  .editor-content h3 {
    font-size: 1.375rem;
  }
  .editor-content h4 {
    font-size: 1.25rem;
  }
  .editor-content h5 {
    font-size: 1rem;
  }
  .editor-content h6 {
    font-size: .9375rem;
  }
}
 
 
@media (max-width: 332px) {
  .editor-content h2 {
    font-size: 1.25rem;
  }
  .editor-content h3 {
    font-size: 1.125rem;
  }
  .editor-content h4 {
    font-size: 1rem;
  }
  .editor-content h5 {
    font-size: .9375rem;
  }
  .editor-content h6 {
    font-size: .875rem;
  }
}






.header-inner,
.footer-inner,
.container {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
 
.container {
  padding-top: 2rem;
  padding-bottom: 4rem;
}



@media (min-width: 821px) {
  .two-columns {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
  }
 
  .two-columns .contents {
    flex: 1 1 auto;
  }
 
  .two-columns .sidebar {
    flex: 0 0 15.625rem;
  }
}



@media (min-width: 821px) {
  /*適応させたいcssを記述*/
}



/*タブレットレイアウト*/
@media (max-width: 820px) {
  .two-columns .contents {
    margin-bottom: 4rem;
  }
}
 
/*スマホレイアウト*/
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
 
  .container {
    padding-top: 1.4rem;
  }
}



.sidebar-wrapper {
  margin-bottom: 2rem;
}
 
.sidebar .sidebar-title,
.sidebar .wp-block-heading {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 1rem;
  padding: .375rem;
  letter-spacing: 1px;
  border: 0;
  border-bottom: .1875rem solid #1d2d43;
}
 
.sidebar a {
  text-decoration: none;
  color: #333;
}
 
.sidebar ul {
  list-style: none;
}
 
.sidebar li {
  border-bottom: 1px solid #ddd;
}
 
.sidebar li a {
  display: block;
  padding: .5rem;
}
 
.sidebar select {
  display: block;
  width: 100%;
  padding: .5rem;
  border: 1px solid #ddd;
}



.page-title-wrap {
  background-color: #f5f5f5;
}
 
.page-title-wrap .page-title {
  position: relative;
  max-width: 1080px;
  height: 18rem;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
}
 
.page-title-wrap .page-title .text-warp {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  width: calc(100% - 3rem);
  transform: translateY(-50%);
  text-align: center;
}
 
.page-title-wrap .page-title .text-warp h1 {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: #000;
}
 
@media(max-width: 820px) {
  .page-title-wrap .page-title {
    height: 16rem;
    margin-bottom: 1rem;
  }
 
  .page-title-wrap .page-title .text-warp h1 {
    font-size: 2.75rem;
  }
}
 
@media(max-width: 480px) {
  .page-title-wrap .page-title {
    height: 12rem;
    margin-bottom: 0;
  }
 
  .page-title-wrap .page-title .text-warp h1 {
    font-size: 2rem;
  }
}

.article-list {
  display: grid;
 
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
 
.article-list .article-item {
  position: relative;
  z-index: 1;
  border: 1px solid #ddd;
}
 
.article-list .article-item a {
  display: block;
  text-decoration: none;
  color: #333;
}
 
.article-list .article-item img {
  display: block;
  width: 100%;
 
  aspect-ratio: 3/2;
  object-fit: cover;
}
 
.article-list .article-item .text-wrap {
  padding: 1rem;
}
 
.article-list .article-item .article-cat {
  font-size: .875rem;
  line-height: 1;
  display: inline-block;
  margin-right: .5rem;
  padding: .25rem .5rem;
  vertical-align: middle;
  text-decoration: none;
  color: #fff;
  background-color: #03162f;
}
 
.article-list .article-item .article-date {
  font-size: .875rem;
  display: inline-block;
  vertical-align: middle;
  color: #888;
}
 
.article-list .article-item .article-date i {
  font-size: 1rem;
  position: relative;
  top: .1875rem;
  margin-right: .125rem;
}
 
.article-list .article-item .text-wrap h2 {
  font-size: 1rem;
  font-weight: 500;
  margin-top: .5rem;
}
 
@media(max-width: 480px) {
  .article-list {
    display: block;
 
    gap: none;
    grid-template-columns: none;
  }
 
  .article-list .article-item {
    margin-bottom: 2rem;
  }
}





.pagination {
  margin: 4rem 0;
  text-align: center;
}
 
.pagination ul {
  font-size: 0;
}
 
.pagination ul li {
  font-size: 1rem;
  display: inline-block;
  margin-right: .75rem;
}
 
.pagination ul li:last-child {
  margin-right: 0;
  border: 0;
}
 
.pagination ul li a,
.pagination ul li .current {
  font-weight: 600;
  line-height: 1;
  display: block;
  padding: .75rem .875rem;
  border: 1px solid #ddd;
}
 
.pagination ul li a {
  text-decoration: none;
  color: #555;
}
 
.pagination ul li .current {
  color: #fff;
  background-color: #1d2d43;
}
 
.pagination ul li .prev,
.pagination ul li .next {
  padding: .75rem .5rem;
  border: 0;
}
 
.pagination ul li i {
  font-size: 1rem;
  color: #1d2d43;
}
 
@media (max-width: 480px) {
  .pagination {
    margin: 3rem 0;
  }
 
  .pagination ul li a {
    padding: .5rem;
  }
}
 



.home-fv-wrap {
  margin-bottom: 2rem; 
  width: 100%;
  /* 必要に応じて高さを設定 */
  height: auto; 
  overflow: hidden; /* はみ出した部分を隠す */
  position: relative;
	
}


.home-fv-wrap img {
  display: block;
  height: min(31.25rem, 46.5vw);
  object-fit: cover;
  width: auto; /* 親要素の幅に合わせる */
  height: auto; /* 親要素の高さに合わせる */
}
 
@media(min-width: 1921px) {
  .home-fv-wrap img {
    height: auto;
  }
}
 
@media(min-width: 821px) {
  .home-article-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 480px) {
	.home-fv-wrap {
		width:100%;
		height:auto;
	    overflow: hidden; /* はみ出した部分を隠す */
	    position: relative;
		display: block;
	}
	.home-sp {
		width:200%;
		
	}
	.home-fv-wrap img {
	    width: 100%; /* 画像の幅を親要素の幅に合わせる */
        height: auto; /* 画像の高さを親要素の高さに合わせる */
		object-fit: cover; /* 画像をコンテナに合わせてトリミング */]
		object-position: left; /* 左端を基準に表示 */]
	    display:block;
		max-width: 100%;
	}
}
@media(max-width: 820px) {
}



.button-blue {
  display: inline-block;
  width: auto;
  text-align: center;
  line-height: 60px;
  outline: none;
  color: #1291e8;
  background-color: #fff;
  position: relative;
  border: 1px solid #1291e8;
  transition: color 0.5s ease;
  text-decoration: none;
}
.button-blue:hover {
  color: #fff;
}
.button-blue:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.button-blue::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #1291e8;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
.button-blue-text {
  position: relative;
}

.button-blue-div a {
  text-decoration: none;
}



.privacy ul, .privacy ol {
  background: #fcfcfc;/*背景色*/
  padding: 0.5em 0.5em 0.5em 2em;/*ボックス内の余白*/

}

.privacy ul li, .privacy ol li {
  line-height: 1.5; /*文の行高*/
  padding: 0.5em 0; /*前後の文との余白*/
}





/*プライバシーポリシーに適応させたいcssを記述*/



/*プライバシーポリシーここまで*/



.list-3 {
    list-style-type: none;
    padding: 1em;
    border: 2px solid #1291e8;
}

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

.list-3 li::before {
    display: inline-block;
    width: 10px;
    height: 5px;
    border-bottom: 2px solid #1291e8;
    border-left: 2px solid #1291e8;
    transform: rotate(-45deg) translateY(-1.5px);
    content: '';
}


.list-8 {
    position: relative;
    padding: 1.5em 1em 1em 2.5em;
    border: 2px solid #1291e8;
}

.list-8 > div {
    position: absolute;
    top: -.75em;
    left: 1em;
    padding: 0 .5em;
    background-color: #fff;
    color: #1291e8;
    font-weight: 600;
}

.list-8 ul {
    list-style-type: disc;
    margin: 0;
    padding: 0;
}

.list-8 li {
    padding: .3em .3em .3em 0;
}

.list-8 li::marker {
    color: #1291e8;
    font-size: 1.1em;
}



.list-4 {
    border: 2px solid #1291e8;
}

.list-4 div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 10px 0;
    background-color: #1291e8;
    color: #fff;
    font-weight: 600;
}

.list-4 ul {
    list-style-type: disc;
    margin: 0;
    padding: 1em 1em 1em 2.5em;
}

.list-4 li {
    padding: .3em .3em .3em 0;
}

.list-4 li::marker {
    color: #1291e8;
    font-size: 1.1em;
}