@charset "UTF-8";
/*
    Template: swell
    Theme Name: koma-theme
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

.toku p{
	font-size:clamp(.8em,1vw , 1em);
	padding:clamp(.5em, 1vw ,2em);
}

.p-mainVisual__slideTitle img{
	filter: drop-shadow(0px 0px 5px #aaa);
	width:10em;
	margin:1em;
}

/* ＝＝＝＝＝＝＝　投稿リストデザイン ＝＝＝＝＝＝＝＝*/
.p-postList.-type-simple {
    border-top: 0px solid var(--color_border)!important;
}

.l-header__gnav{
	font-weight:bold;
}
.c-gnav{
	font-weight:bold;
}

/* ＝＝＝＝＝＝＝　テキストループスライダー ＝＝＝＝＝＝＝＝*/

.bg-text{
    position:  absolute;        /* 位置指定 */
    top: 0px;                  /* 位置指定 */
    z-index: 0;               /* 重なり順指定 */
}
.bg-text2{
    position:  absolute;        /* 位置指定 */
    top: 580px;                  /* 位置指定 */
    z-index: 0;               /* 重なり順指定 */
}
.bg-relative{
	margin-top:0em!important;
    position:  relative;        /* 位置指定 */
    z-index: 10;                /* 重なり順指定 */
}

/* ulタグ */
.scroll-list {
  display: flex;
  list-style: none;
  padding-inline: 0;
  margin-inline: 0;
  gap: 0;
  overflow: hidden;
color:#FFF;
}

/* liタグ */
.scroll-list li {
  color: #DDDDDD;
  font-size: 3em;
  font-weight: bold;
  white-space: nowrap;
  padding: 0 1em 0 0;
  margin: 0;
  animation: marquee-left 16s linear infinite;
opacity:0.2;
}

/* PCの時のフォントサイズ */
@media (min-width: 600px) {
  .scroll-list li {
    font-size: 8vw;
  }
}

/* アニメーション */
@keyframes marquee-left {
	
  100% {
    transform: translateX(-100%);
  }
}

/* ulタグ */
.scroll-list2 {
  display: flex;
  list-style: none;
  padding-inline: 0;
  margin-inline: 0;
  gap: 0;
  overflow: hidden;
}

/* liタグ */
.scroll-list2 li {
  color: #DDD;
  font-size: 3em;
  font-weight: bold;
  white-space: nowrap;
  padding: 0 1em 0 0;
  margin: 0;
  animation: marquee-right 16s linear infinite;
opacity:0.2;
}

/* PCの時のフォントサイズ */
@media (min-width: 600px) {
  .scroll-list2 li {
    font-size: 8vw;
  }
}

/* アニメーション */
@keyframes marquee-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
/* ＝＝＝＝＝＝＝　テキストループスライダーここまで ＝＝＝＝＝＝＝＝*/


/* ＝＝＝＝＝＝＝　画像ループスライダー ＝＝＝＝＝＝＝＝*/
.loop-slider {
    display: flex;
    overflow: hidden;
    gap: 0rem; /* 画像間の余白を指定 */
}

.loop-slider .wp-block-group__inner-container,
.loop-slider .swell-block-columns {
    display: contents;
}

.loop-slider .swell-block-columns__inner {
    flex-wrap: nowrap;
    animation: infinity-scroll-left 70s infinite linear; /* アニメーションの時間を指定 */
}

.loop-slider .swell-block-column figure {
    width: 500px; /* 画像の横幅を指定（パソコン） */
    position: relative;
}

.loop-slider .swell-block-column figure::before {
    padding-top: 65%; /* 画像の縦横比を指定 */
    display: block;
    content: "";
}

.loop-slider .swell-block-column figure img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

@media screen and (max-width: 959px) {
    .loop-slider .swell-block-column figure {
        width: 200px; /* 画像の横幅を指定（スマホ） */
    }
}

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}
/* ＝＝＝＝＝＝＝　画像ループスライダーここまで ＝＝＝＝＝＝＝＝*/


/* ＝＝＝＝＝＝＝　フォームデザイン ＝＝＝＝＝＝＝＝*/

input[type="text"],input[type="password"],input[type="datetime"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],
input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],select,textarea {
    display: block;
    width: 100%;
    height: 45px;
    margin-bottom: 0;
    padding: 0 5px;
    border: 0;
    border-radius: 3px;
    box-shadow: none;
    background-color: #F6F8F8;
    color: #5c6b80;
    font-size: 1em;
    vertical-align: middle;
    line-height: 45px;
    transition: background-color 0.24s ease-in-out;
}
/* テキストエリアの設定 */
table.CF7_table textarea {
    resize: vertical;
    max-width: 100%;
    min-height: 300px;
    line-height: 1.5em;
    padding: 0.5em;
    overflow: auto;
}
.CF7_table input, .CF7_table select, .CF7_table textarea {
	border: 1px solid #d8d8d8;
}
table.CF7_table {
	width: 100%;
	margin: 0 auto;
	border: none !important
}
table.CF7_table tr {
	border-top: 1px solid #e5e5e5;
}
table.CF7_table th {
  width: 30%;
  background-color: #F6F8F8;
	font-size: 15px;
	vertical-align: middle;
}
table.CF7_table tr,
table.CF7_table th,
table.CF7_table td {
	padding: 0.75rem 0.75rem !important;
	background: none !important;
	border: none !important;
}
.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table {
	display: table;
}
.CF7_table ::placeholder {
	color: #797979;
}

.CF7_req{
	font-size: .9em;
	padding: 4px 7px;
	background: #4c6d70;
	color: #fff;
	border-radius: 3px;
	margin-right:1em;
}

.CF7_unreq{
	font-size: .9em;
	padding: 4px 7px;
	background: #bdbdbd;
	color: #fff;
	border-radius: 3px;
	margin-right:1em;
}

@media screen and (max-width: 768px){
	table.CF7_table{
	    width: 100%;
	}
	.CF7_table tr, .CF7_table td, .CF7_table th{
        display: block;
        width: 100% !important;
        line-height: 2.5em;
	}
	.CF7_table th{
	    background-color: #F6F8F8;
	}
}

.wpcf7 input.wpcf7-submit {
	background-color: #4c6d70;
	border: 2px solid #4c6d70;
	color:#fff;
	font-size:1.2em;
	font-weight: bold;
	margin: 0 auto;
	padding: 15px 30px;
	transition: all 0.5s 0s ease;
}
.wpcf7 input.wpcf7-submit:hover {
  background: #fff;
	color: #4c6d70;
}
.CF7_btn{
	text-align: center;
	margin: 20px;
}
.wpcf7-spinner{
	width:0;
	margin:0;
}
/*
* ContactForm7にてメール送信後にメッセージをアニメーションさせる
*/

/* 送信後、表示指定していないものは全部消す */
.wpcf7 form.sent > *:not(.tt-show){
	display:none;
}

/* 送信結果表示、最初は消す */
.wpcf7 form .wpcf7-response-output{
	transform:translateY(50px);
	opacity: 0;
	padding: 1rem;
	line-height: 1.4;
	border-radius: 5px;
	margin: 1rem auto;
}

/* 送信結果表示、送信後は出す */
.wpcf7 form .wpcf7-response-output.tt-show
, .wpcf7 form.invalid .wpcf7-response-output
{
	display: block;
	transform: translateY(0px);
	transition: all .5s ease-out;
	opacity: 1;
}

/* ＝＝＝＝＝＝＝　フォームデザインここまで ＝＝＝＝＝＝＝＝*/
